Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by thornmastr

  1. thornmastr

    Too many frmA's

    StrongM, Someone on a newsgroup finally saw the real problem. I was not using the real name for frmA. Instead I was using an Object variable name. I then referred to the form by its real name rther than the object reference in frmB which created another frmA referenced by the correct name...
  2. thornmastr

    Too many frmA's

    Yes, I noticed that. However, it is global to frmA and only while frmB is active. It is a very small class activated immediately before frm b is opened and destroyed when frmB closes so, at least, it is not global across the application. <sigh>. I've asked this question in a number of...
  3. thornmastr

    Too many frmA's

    Bob, Thank you. It worked perfectly. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  4. thornmastr

    Too many frmA's

    Hello, I am using Visual Basic 6.0 SP6 with Windows XP SP2. I have two MDI child forms; call them frmA and frmB. FrmA calls frmB. On frmA is an an MSHflexgrid which has information needed on frmB. Of course, referencing information on frmA from frmB immediately creates a brand new frmA so...
  5. thornmastr

    C++; Visual Basic......NET

    Thank you both for the information. It is appreciated. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  6. thornmastr

    C++; Visual Basic......NET

    Hello, I am a Visual Basic 6 Developer with a reasonable background in C. Unfortunately, it is not C++. And, after developing in VB 6 almost exclusively for the past ten years, I am reasonably certain my understanding of C is now more theoretical than pragmatic. But, what is very pragmatic is...
  7. thornmastr

    C++; Visual Basic......NET

    Hello, I am a Visual Basic 6 Developer with a reasonable background in C. Unfortunately, it is not C++. And, after developing in VB 6 almost exclusively for the past ten years, I am reasonably certain my understanding of C is now more theoretical than pragmatic. But, what is very pragmatic is...
  8. thornmastr

    MSOUTL32.OCX

    Thank you very much. Worked very nicely. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  9. thornmastr

    MSOUTL32.OCX

    I have been asked to modify an Access 97 program. There is a background process which takes a number of *.dat files and updates a number of tables on the Access database. Supposedly, this process, called invctrl.exe is done in Visual Basic. I was provided a copy of the database, a copy of about...
  10. thornmastr

    Opening MS Access Reports with Visual Basic 6

    CreateObject("Access.Application") is only supported when the retail version of Access is installed. When only the runtime Access is installed, you cannot use CreateObject (or New Access.Application) or Getobject to launch an instance of Access for automation. This behavior is by design and...
  11. thornmastr

    Array within a class?

    Michael, Do you mean UDT or UDF? If you mean function, please explan a tad further if possible. Thanks. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  12. thornmastr

    Array within a class?

    I have a form used to accept search parameters for an automobile parts inventory program. The form has three combo boxes and one list box. One combo box list auto year from 1953 to the current year. The second combo is the automobile Make, i.e.,, Ford, Dodge, etc. This has 37 items. The third...
  13. thornmastr

    Defining fields in Disconnected RecordSet

    Thank you very much. Problem resolved. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  14. thornmastr

    Defining fields in Disconnected RecordSet

    I have created a disconnected recordset as follows: 310 Set rsInventory = New ADODB.Recordset 320 With rsInventory 330 .Fields.Append "ProductID", adChar, 20 340 .Fields.Append "Descript", adChar, 80 350 .Fields.Append "Price", adChar, 10 360...
  15. thornmastr

    Access Package and Deployment Wizard question.

    Thank you for the quick reply. What it is really telling me it is time to reinstall both XP Developer and Office 2002 because, under the “all programs/” category I have Microsoft Office 97 (which I still use for a number of clients), Microsoft Office XP Developer, and Microsoft Office Tools...

Part and Inventory Search

Back
Top