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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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...
  16. thornmastr

    Access Package and Deployment Wizard question.

    Good Afternoon, I need to distribute an application which includes the run time files for Access 2002. I do have the Office XP Developer CD’s. The application itself is written in VB 6 with an Access back-end. I have created a number of reports in Access and I am starting them from the Basic...
  17. thornmastr

    date format in vb and access

    If I remember correctly you must use the standard American date mask of #mm/dd/yyyy##. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  18. thornmastr

    Drowning in an ocean of tables.

    Thanks to both ArtieChoke and LostInCode. Both methods work very nicely. My preference, simply because of the way I code, is to go with the ADOX methodology. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  19. thornmastr

    Drowning in an ocean of tables.

    I am looking at a database with a large but unknown number of tables. I need to capture the names of all the tables on the database. Doing a search of google, the consensus of opinion is I cannot build such a list using any ADO constructs but DAO will work quite nicely and it does. Below is the...
  20. thornmastr

    valuing null hexidecimal value to a variable

    The only variable that can hold a NULL value is a variant. Since a variant is 8 bytes, what you want to do is rather expensive. Perhaps if you could explain why you want to do this, someone could offer a better alternative solution. Robert Berman Data Base consultant Vulcan Software Services...

Part and Inventory Search

Back
Top