Forum: VB.NET Feb 28th, 2009 |
| Replies: 4 Views: 626 Sounds to me like you have either a dead-lock. |
Forum: VB.NET Feb 22nd, 2009 |
| Replies: 4 Views: 2,598 Ah.... You are posting VB.NET code in the VB 4/5/6 Forum. |
Forum: VB.NET Feb 22nd, 2009 |
| Replies: 2 Views: 822 First, start easy. Think about what you need, and go from there. Ok, it needs to display stuff on the form... so what do you need? You need a label or a textbox (I'd go with a label). So, put it... |
Forum: VB.NET Feb 18th, 2009 |
| Replies: 2 Views: 347 First of all, you need to use code tags. You can do this by typing:
'your code goes here
.
This will make your code more clear and easier to read and debug. Please repost using code tags. |
Forum: VB.NET Feb 16th, 2009 |
| Replies: 8 Views: 501 Really? Negative Rep For A Rick Roll? ;) |
Forum: VB.NET Feb 16th, 2009 |
| Replies: 22 Views: 48,997 |
Forum: VB.NET Feb 16th, 2009 |
| Replies: 2 Views: 340 I'm not sure how using session to store the invalid attempt count works, but it's sounding like a DoS waiting to happen. What if I (not legit user) want to stop you (legit user) from accessing your... |
Forum: VB.NET Feb 15th, 2009 |
| Replies: 8 Views: 501 Sorry about that. I've taken the source code of the link you posted, and tried it with that... made some modifications. Now it should work fine. |
Forum: VB.NET Feb 15th, 2009 |
| Replies: 8 Views: 501 hmmm... works great in vb 2008 express.... which version are you using (and what error does the IDE give you?) |
Forum: VB.NET Feb 15th, 2009 |
| Replies: 8 Views: 501 |
Forum: VB.NET Feb 13th, 2009 |
| Replies: 5 Views: 402 that code isn't VB6 at all. It's vb.net. If you want to port it to vb6, you should simply re-write it. The languages/code are that different. If you need help on a re-write, we can help you. |
Forum: VB.NET Feb 12th, 2009 |
| Replies: 1 Views: 291 usually you don't. Unless you can download the appropriate cab-files from a *beeeeeeeep* site or a *beeeeeeeeep* that has it on his or her computer. |
Forum: VB.NET Feb 10th, 2009 |
| Replies: 2 Views: 785 How 'Bout you post this in VB.NET, instead of VB 4/5/6? |
Forum: VB.NET Feb 10th, 2009 |
| Replies: 2 Views: 314 What code do you have so far? |
Forum: VB.NET Feb 9th, 2009 |
| Replies: 3 Views: 2,239 How about you not post to 4 year old threads... dolt. |
Forum: VB.NET Feb 6th, 2009 |
| Replies: 3 Views: 586 By the beard of Zeus, I'm guessing it doesn't know what kind of database your .xsd is..... how was it made? |
Forum: VB.NET Feb 6th, 2009 |
| Replies: 7 Views: 1,330 Very good, you can mark this thread as solved. |
Forum: VB.NET Feb 6th, 2009 |
| Replies: 4 Views: 2,087 When dealing with servers (which are usually important to the company) the safest way to move the database, is to duplicate it first.... then later remove it from the source. So while you are right,... |
Forum: VB.NET Feb 5th, 2009 |
| Replies: 3 Views: 7,493 Yeah, let's not post to threads that are nearing a year old..... |
Forum: VB.NET Feb 5th, 2009 |
| Replies: 7 Views: 1,330 Alright, attach your project and database into a zip file, so I can get a first hand look at this thing. |
Forum: VB.NET Feb 5th, 2009 |
| Replies: 7 Views: 1,330 I don't know enough about the entities in your database to help you here. Your SQL query string, has a "WHERE" clause, with no condition! You need to put someting like:
cmd = New... |
Forum: VB.NET Feb 4th, 2009 |
| Replies: 2 Views: 357 dim mydate as string
dim a, b, c
mydate = "3/02/09"
dim myParts as string() = mydate.split("/")
a = myParts(0)
b = myParts(1)
c = myParts(2) |
Forum: VB.NET Feb 4th, 2009 |
| Replies: 1 Views: 366 dim somedate as string
somedate = "2/3/2009"
parts = split(somedate, "/")
if ubound(parts()) < 2 then
msgbox "Error Parsing Date String"
exit sub
else
mymonth = somedate(0)
... |
Forum: VB.NET Feb 3rd, 2009 |
| Replies: 2 Views: 271 Here is help (http://www.letmegooglethatforyou.com/?q=installing+vb.net) |
Forum: VB.NET Feb 2nd, 2009 |
| Replies: 5 Views: 9,265 Let's try not to post to threads that are almost a year old....mkay? |
Forum: VB.NET Jan 31st, 2009 |
| Replies: 6 Views: 308 Even though it's solved, another solution to this would have been to set the value of the textbox to 0 by default (such as in form load) |
Forum: VB.NET Jan 31st, 2009 |
| Replies: 3 Views: 830 here's a pretty good link (http://www.startvbdotnet.com/controls/treeview.aspx) |
Forum: VB.NET Jan 30th, 2009 |
| Replies: 3 Views: 801 Call "c:\windows\system32\dfrg.msc" with shell or system processes or wsh.run or shellexecute. |
Forum: VB.NET Jan 30th, 2009 |
| Replies: 4 Views: 408 It should send you to the ASP.NET forum page... which is where your question belongs.
EDIT: :p Talk about timing. |
Forum: VB.NET Jan 27th, 2009 |
| Replies: 2 Views: 630 That was a fun assignment. |
Forum: VB.NET Jan 25th, 2009 |
| Replies: 3 Views: 977 http://msdn.microsoft.com/en-us/library/system.security.permissions.registrypermission.aspx |
Forum: VB.NET Jan 25th, 2009 |
| Replies: 3 Views: 371 This line ab = RichTextBox1.Text doesn't actually write anything to the file. You might want to replace that line with something that accesses myStream. |
Forum: VB.NET Jan 25th, 2009 |
| Replies: 6 Views: 1,008 No No, you asked if it was vista, and they posted code....what is that about? |
Forum: VB.NET Jan 24th, 2009 |
| Replies: 1 Views: 360 You give me code first.
All you have to do is total the votes, and use a simple if statement. |
Forum: VB.NET Jan 23rd, 2009 |
| Replies: 6 Views: 1,008 wtf is that? That doesn't answer his question..... |
Forum: VB.NET Jan 22nd, 2009 |
| Replies: 3 Views: 609 Yup. If you recompile it on a 64-bit vista platform, it should work.... other than that, good luck. |
Forum: VB.NET Jan 22nd, 2009 |
| Replies: 13 Views: 3,779 And... Let's not post to threads that are years old. |
Forum: VB.NET Jan 22nd, 2009 |
| Replies: 14 Views: 3,092 |
Forum: VB.NET Jan 21st, 2009 |
| Replies: 7 Views: 2,690 Are File1 File2 and File3 supposed to be variables in your program, or are they hard-coded in names? |
Forum: VB.NET Jan 20th, 2009 |
| Replies: 7 Views: 2,690 Dunno why you don't just do the copy from within VB.NET (without a system call) |