Forum: VB.NET Feb 16th, 2009 |
| Replies: 22 Views: 48,649 |
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 Jan 30th, 2009 |
| Replies: 3 Views: 789 Call "c:\windows\system32\dfrg.msc" with shell or system processes or wsh.run or shellexecute. |
Forum: VB.NET Jan 25th, 2009 |
| Replies: 3 Views: 973 http://msdn.microsoft.com/en-us/library/system.security.permissions.registrypermission.aspx |
Forum: VB.NET Jan 18th, 2009 |
| Replies: 5 Views: 1,155 I couldn't agree more.
To answer your question, however: AddHandler :) |
Forum: VB.NET May 3rd, 2005 |
| Replies: 3 Views: 6,550 I go idea is to use a msgbox or some other method to see the actual string. Say msgbox input, that will tell you exactly what the string is that you are trying to get the substring of. I'm guessing... |