Search Results

Showing results 1 to 40 of 184
Search took 0.03 seconds.
Search: Posts Made By: Comatose ; Forum: VB.NET and child forums
Forum: VB.NET Feb 28th, 2009
Replies: 4
Views: 626
Posted By Comatose
Sounds to me like you have either a dead-lock.
Forum: VB.NET Feb 22nd, 2009
Replies: 4
Views: 2,598
Posted By Comatose
Ah.... You are posting VB.NET code in the VB 4/5/6 Forum.
Forum: VB.NET Feb 22nd, 2009
Replies: 2
Views: 822
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
Really? Negative Rep For A Rick Roll? ;)
Forum: VB.NET Feb 16th, 2009
Replies: 22
Views: 48,997
Posted By Comatose
Start a new thread.
Forum: VB.NET Feb 16th, 2009
Replies: 2
Solved: Login Page
Views: 340
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
Forum: VB.NET Feb 13th, 2009
Replies: 5
Views: 402
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
How 'Bout you post this in VB.NET, instead of VB 4/5/6?
Forum: VB.NET Feb 10th, 2009
Replies: 2
Views: 314
Posted By Comatose
What code do you have so far?
Forum: VB.NET Feb 9th, 2009
Replies: 3
Views: 2,239
Posted By Comatose
How about you not post to 4 year old threads... dolt.
Forum: VB.NET Feb 6th, 2009
Replies: 3
Solved: login form
Views: 586
Posted By Comatose
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
Posted By Comatose
Very good, you can mark this thread as solved.
Forum: VB.NET Feb 6th, 2009
Replies: 4
Views: 2,087
Posted By Comatose
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
Posted By Comatose
Yeah, let's not post to threads that are nearing a year old.....
Forum: VB.NET Feb 5th, 2009
Replies: 7
Views: 1,330
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
Here is help (http://www.letmegooglethatforyou.com/?q=installing+vb.net)
Forum: VB.NET Feb 2nd, 2009
Replies: 5
Views: 9,265
Posted By Comatose
Let's try not to post to threads that are almost a year old....mkay?
Forum: VB.NET Jan 31st, 2009
Replies: 6
Solved: small issues...
Views: 308
Posted By Comatose
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
Posted By Comatose
here's a pretty good link (http://www.startvbdotnet.com/controls/treeview.aspx)
Forum: VB.NET Jan 30th, 2009
Replies: 3
Views: 801
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
That was a fun assignment.
Forum: VB.NET Jan 25th, 2009
Replies: 3
Views: 977
Posted By Comatose
http://msdn.microsoft.com/en-us/library/system.security.permissions.registrypermission.aspx
Forum: VB.NET Jan 25th, 2009
Replies: 3
Views: 371
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
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
Posted By Comatose
wtf is that? That doesn't answer his question.....
Forum: VB.NET Jan 22nd, 2009
Replies: 3
Views: 609
Posted By Comatose
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
Posted By Comatose
And... Let's not post to threads that are years old.
Forum: VB.NET Jan 22nd, 2009
Replies: 14
Views: 3,092
Posted By Comatose
*Just Shakes His Head*
Forum: VB.NET Jan 21st, 2009
Replies: 7
Views: 2,690
Posted By Comatose
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
Posted By Comatose
Dunno why you don't just do the copy from within VB.NET (without a system call)
Showing results 1 to 40 of 184

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC