Fred, DO NOT Convert, take a look at ADO.Net, it is very well formatted and not that difficult to implement. Start you Database access code from scratch. You...
... Hi Steve, Actually, de-normalization is often done for efficiency. For example, we might store TotalNumberOfGames and TotalScore in the LeagueMember table....
<Adelle Hartley scrawled that> Actually, de-normalization is often done for efficiency. Ran into this very early in my programming career. Had an app that...
Hi. can any one help and take a look at http://www.blindgeeks.org, and go to the ftp downloads section and look for marvin-vb.zip, i think it is called. got 4...
hi. doing a database application project with a login screen. getting these errors. looked up help about constants and certificates. can any one help. treid...
I'm trying to make a feature in my program to let the user measure lines on a pdf. Say there is a line 4 feet long on a pdf file which would of course be...
Hi, I have worked VB6 Professional with MS Access to develop the database application. Can I still use VB6 Professional to develop the database application...
Dear Help with VB Group and Prof. Smiley, Can I still use VB6 Professional to develop the database application software based on SQL Server 2005?  Thank you...
http://msdn.microsoft.com/en-us/library/bb264566.aspx Dear Help with VB Group and Prof. Smiley, Can I still use VB6 Professional to develop the database...
Hello everyone. I have always built my applications by including custom DLL's and OCX's in my project and then locally: Dim objX as new sampledll Set objX =...
Fix in Air-Code Dim objX as sampledll Set objX = new sampledll objx.procedurename -Joe _____ From: Joe Wasko [mailto:jpw@...] Sent: Monday, June 15,...
... For those not in the know, the first line of Dim objX as new sampledll Set objX = new sampledll objX.procedure has a different meaning between vb6 and...
Adelle, This was very informative and now I know. Excel was the first time I actually used "CreateObject" However, the first time I saw "CreateObject" was in...
... It took a while but I finally found enough resources to figure it out. This must not be a popular subject, since I couldn't find much at all, along with...
Hello I am a novice programmer who is doing an Open University [UK] degree level unit [for fun] on object oriented programming with VB Express Edition 2008. I...
Hi Bob: MY FIRST PROBLEM What I want to do is to use the class Lists_AddNumber to contain the code [that currently operates in the form's code] which sets up a...
Hello again. I continue to struggle with VB and OOP, but [insanely?] I enjoy every moment of the process. If anyone out there has a moment to spare to answer...
System.Windows.Forms.Application.DoEvents() With threading you can accomplish the same thing by putting the thread to sleep for a few processor slices and...
This seems like it should be really easy to handle, but I am having problems. In VB5, I want to set up an exit routine where an event takes place for a ...
Bob, Here is a pause routine that waits, handles midnight clock transactions and has a way to interrupts in the middle. Requires a module or global Boolean...
VB5? Whew, I think I was still living in Seattle the last time I saw VB5 and seems like a lifetime ago. I do recall that in VB6 (and I think that it was the...
How do you turn a user-designed Control into a Component in VB.NET 2008? According to this manual I'm reading, a Component is a Control without a visible...
It's not often I step in here but I'm probably the only one on the Forum still on VB5 Tim is correct in saying the timer interval is set in milliseconds. ...
Thank you, Tim. I believe milliseconds are set via: tmrMyTimer.interval=500 Would this go in the same place with the tmrMyTimer.enabled = true ? And then...