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 Chriss Miller 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: *

  • Users: thornmastr
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. thornmastr

    A touch of Class.

    I have defined as part of a personnel system a class called staff which is very straight forward and works well. However, two elements of the class are unfortunately not cut and dried. These are the Notes and the SchedulePreference elements of the class. Notes are for the Personnel Director. It...
  10. thornmastr

    Stay on the row.

    I have a data grid on a form. The grid is used to display rows of a certain condition and every column in the row is available for update. Of course, rows can be deleted and new rows added. When adding a row, how can I force the tab key to move the cursor to the next column in the row of the...
  11. thornmastr

    To register or not to register

    Yesterday I sent a client an updated version of a program. I use the INNO installer. The client did the installation with no problem, however, as he expressed it…..nothing works. Constant display of runtime error 7 out of memory. He runs XP PRO and I run XP PRO. I have always found that using...
  12. thornmastr

    Default references and components.

    I have recently completed a project and have realized that the references and components I have used in that project should be my default references and components. There is no mention of default components/references in the VB 6 options. Is there a quick easy method to set default...
  13. thornmastr

    Looking for VB ansers

    The following web page is a very good beginners guide for available reference points pertinent to Visual Basic. http://archive.devx.com/free/newsletters/vb/ednote0113.asp Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  14. thornmastr

    Using Addnew with a disconnectd recordset.

    i am using the recordset.addnew method to add a new record to a disconnected recordset and all works well. However, once the update batch completes, I need to get the autonumber value assigned to the record. The code which both updates the record and gets the identity is below. The value...
  15. thornmastr

    Jet service pack

    For those of you using Jet 4. M$ has released Q282010: Recommended Update for Microsoft Jet 4.0 Service Pack 7 (SP7). You migh want to take a look. Robert Berman Data Base consultant Vulcan Software Services thornmastr@earthlink.net
  16. thornmastr

    Excel Quandry....Some information please!!!!!!!!

    I apologize for cross posting this question. Excel is not my area of expertise. I am much more comfortable using Visual Basic and Access, but I have a question which does involve Excel and I need an explanation as to whether this can or cannot be done. This is the background information. I...
  17. thornmastr

    Urgent: Is this doable using Excel

    Excel is not my area of expertise. I am much more comfortable using Visual Basic and Access, but I have a question which does involve Excel and I need an explanation as to whether this can or cannot be done. This is the background information. I have a client in the products promotion...
  18. thornmastr

    Emergency. VB6 Crash and burn

    i have an emergency situation and could use a bit of assistance and or some clarifying suggestions. This is the problem. Create a new form with a number of text fields, labels, and command buttons. Nothing out of the ordinary. Save the form. VB 6 gives you the nasty message “Visual Basic has...
  19. thornmastr

    MSHFLEXGRID! Did the user really pick something?

    I am almost certain this question has been answered and I am simply misquoting my search string. I have a MSHFlexgrid on a form. The user can select a row to delete from the underlying table which works just fine provided that the user has actually selected a row. However, if the user selects...
  20. thornmastr

    Cell size of MSHFlexgrid

    I have a table of relationships viewed within an MSHFlexgrid. The maximum size of a record in this table is 75 characters. I notice that most of these values fit quite nicely into the cell size allocated by the flex grid. Of course, there are a few which look slightly truncated and which do...

Part and Inventory Search

Back
Top