Hi Question You know when you download one of those free programs, and after 30days the program is no longer active. I am woudering how to do that in my...
Hi Guys Surprise surprise I've found another bug in the App I am developing. This bug is to do with some (though not all) of the radio button groups used...
Hi When Ur program starts, get the system date and store it in the registry(Do this only once). Keep checking the value in the registry every time the program...
Hi ! Take a look at Pscode.com there should be an answer... ... From: rustbuckets4 [mailto:no_reply@yahoogroups.com] Sent: Saturday, March 01, 2003 6:34 PM To:...
Vargas, Daniel
dvargas@...
Mar 3, 2003 3:04 pm
3937
I think this is not a "secure" option.. since users can set back their system date and they will have more "trial" days... that's what users do! ... From:...
Vargas, Daniel
dvargas@...
Mar 3, 2003 3:53 pm
3938
pscode.com has a code which provides a more secure way. It keep tracks of the current date everytime the application is run and so can check for any changes in...
Hi I am trying to change the IP address of the computer without rebooting (Windows 2K professional). Since I would be doing it programmatically (using VB6), I...
One thing you may well have to allow for is the fact that the DHCP server (if used) may take its time in giving you a new IP address. Regards Ivan ... From:...
Hi: I have a VB 6.0 client/server application that uses MS Access 2000 as DBMS. I use ADO to manipulate data. For ease of use I designed the reports in the...
Hi Everybody, how can I intercept the "request a read receipt for this message" statement set to an e-mail... and cancel that request programatically...?? ...
Vargas, Daniel
dvargas@...
Mar 4, 2003 5:09 pm
3945
HI now i go to pscode.com. Now what do i look for? I mean what is the code under. Thanks ... tracks of the current date everytime the application is run and...
Hello Im trying to create a program that will use netsend to communicate over our server but I dont want it to say who the message is from... if anyone has any...
Can anybody help me to modify this program? Imports System.Windows.Forms Class CDay Inherits Object Private mMonth As Integer ' 1-12 Private mDay As Integer '...
Hi how can i do for this: My DTS service convert diferentes DBF files if they are in diferent folders? thanks!!! [Non-text portions of this message have been...
I don't quite know why you would create a class to do this... but I thought this might be helpful... I wouldn't create a class to do this... I would use the...
i didn't create that.. it's an example from my textbook and i have to modify that by adding the nextday method and then test it using loop in a new module....
I'm sending the files that I got from pscode.com. This would be simpler than searching ;-) karthick v ... From: rustbuckets4 [mailto:no_reply@yahoogroups.com] ...
Sorry about the earlier mail, the attachment was missing karthick v ... From: "Karthick V" <karthickv@...> To: <visualbasic_official@yahoogroups.com> ...
Add this sub to your class ... and try it out. Public Sub NextDay() Dim oDate As Date oDate = CDate(mMonth & "/" & mDay & "/" & mYear) oDate = oDate.AddDays(1)...
How do I check the size of a input? For example, if someone types in a zip code, how do I check to see if they interred 5 numeric characters? K. David...
Hi Dave, Suppose u want to check the total characters entered are 5, then u must set the MAXLENGTH property of textbox to 5. This will help u to store only...
First, use the Textbox's KeyPress event to prevent user from entering anything but numbers in the first place: Private Sub Textbox1_KeyPress(KeyAscii As...
TAB has the value of "09". ;-) ... From: "noodle896" <noodle896@...> To: <visualbasic_official@yahoogroups.com> Sent: Tuesday, March 04, 2003 9:29 PM ...
How can you effectively code against what was clicked in a vbOKCancel msgbox? K. David Griessmann Manager CAD Operations Hixson 659 Van Meter Street ...
You can use simple code like this: Select Case MsgBox("Click Ok or Cancel", vbOKCancel, "Test") Case vbOK: MsgBox ("You clicked Ok") Case vbCancel: MsgBox...
I'm having a problem retreiving a value from a session variable on a web page. All I want to do is include the orderID in the subject line of an email....