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 Mike Lewis 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. hazlehurstga

    How do you CREATE a TABLE with a COMBO BOX field?

    I need to create a new table using Visual Basic, and the new table must have a field with LookUp type of Combo Box. How does one use the CREATE TABLE command to create a table with a Field with the Combo Box Lookup type? Thanks, hazlehurstga
  2. hazlehurstga

    CopyFromRecordset Worked Fine In Access2000 But Not in Access2003

    Thanks PHV! The problem was resolved when I created a workbook object and referred to that object vice using the implicit reference. Apparently Access2003 requires that I declare workbooks as objects vice using implicit statements. Thanks again
  3. hazlehurstga

    CopyFromRecordset Worked Fine In Access2000 But Not in Access2003

    When I execute this statement ".[a1].Offset(1).CopyFromRecordset NAVICPGListTable" from code below I receive the following error: "Run-time error '430': Class does not support Automation or does not support expected interface" Does anyone know why this statement does not work in MSAcess 2003...
  4. hazlehurstga

    How do I refresh a form while a recordset is being opened?

    I need to open/retrieve a recordset with an SQL statement that usually takes quite a bit of time to complete. While the data is being retrieved, I would like to display a message via a form that basically tells the user to be patient, the action will complete in so many minutes. I am able to...
  5. hazlehurstga

    Is there an automated way to load references using VBA?

    cmmrfrds, Thanks alot! I greatly appreciate you help.
  6. hazlehurstga

    Is there an automated way to load references using VBA?

    Does anyone know of an automated way to verify and load references using VBA coding? Thanks
  7. hazlehurstga

    How do you let user select from list of options without using a form?

    Hi, I need to get input from a user by providing him with a list of options to choose from, and in the same fashion as the comboxbox feature provides. Is it possible to do this without using a form? Will the InputBox function allow work? Thanks.
  8. hazlehurstga

    How can I use a Form to input data vice the InputBox function?

    Thanks for your recommendations! I'll give it a try and let you know how it turns out. hga
  9. hazlehurstga

    How can I use a Form to input data vice the InputBox function?

    Understand. I apologize for not being very clear as to the problem I'm expericing but in a nut shell here's my problem: my program gathers data from existing tables using VBA coding automatically untils it reaches a point where it needs data directly from the user. At this point, I could use...
  10. hazlehurstga

    How can I use a Form to input data vice the InputBox function?

    vbajock, Even without the loop, the coding described above does not let the user make a selection using the form. It simply opens the form then immediately executes the next line of coding. I need the program to wait or pause until the user has made his selection using the open form, then...
  11. hazlehurstga

    How can I use a Form to input data vice the InputBox function?

    vbajock, Thanks for your reply. The loop does nothing. Its purpose is to continually loop until the user makes his selection from the form LoadCTPOC. However, as I stated, the coding as described above does not allow the user to make a selection using the form. I need to present the user...
  12. hazlehurstga

    How can I use a Form to input data vice the InputBox function?

    The following MSAccess 2000 VBA coding atempts to get input from the user by opening a form so the user can select from a combo list: ProcessingForm = True DoCmd.OpenForm "ASSIGN CTPOC", , , , , acDialog Set LoadCTPOC = Forms("ASSIGN CTPOC") LoadCTPOC.Visible = True...
  13. hazlehurstga

    Getting error msg "Can't enter break mode . . ."

    Actually I opened the form in design view using the following statements: DoCmd.OpenForm NewFname, acDesign Set CurForm = Forms(NewFname) CurForm.Visible = True Should the form be invisible when I add the procedure statement?
  14. hazlehurstga

    Getting error msg "Can't enter break mode . . ."

    I'm receiving the following error the first time I attempt to add a line to a procedure control module : "Can't enter break mode at this time." The error dialog box asks if I want to continue or end the program. When I choose to continue, the program runs until completion but the...
  15. hazlehurstga

    WON'T LET ME ADD MORE THAN ONE LABEL TO AN OPTION GROUP CONTROL

    VBSlammer, You are wonderful and a life saver. Thanks so much!! I hope you find employment soon if you haven't already. If you lived in or near Richmond, VA I might be able to help you find a programming job. Thanks again hazlehurstga
  16. hazlehurstga

    WON'T LET ME ADD MORE THAN ONE LABEL TO AN OPTION GROUP CONTROL

    I'm running into problems when I try to create an OptionGroup with more than one label. The general text of my code is as follows: 'First I create a new OptionGroup control: Set ctlText = CreateControl(CurForm.Name, acOptionGroup, acDetail, "", "", 1440, 1440) 'Then I add...
  17. hazlehurstga

    How do you determine LogonID for WIN2000/NT User?

    Hi, Is there a built-in function available in MS VBA that will provide the LogonID of a user connected to a WIN 2000/NT network? Thank you.

Part and Inventory Search

Back
Top