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 wOOdy-Soft 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: gazolba
  • Content: Threads
  • Order by date
  1. gazolba

    How fit subform inside another form ?

    I have a form containing a tab control. Inside one tab is a subform. I'm having a devil of a time getting the subform to fit nicely without scroll bars appearing. One further catch - my subform has a header, detail and footer and I need all to be fully visible with no gaps between them. I...
  2. gazolba

    How get just date part of datetime column in SQL

    How get just date part of datetime column in SQL?
  3. gazolba

    How get column headings in a listbox ???

    MS Access help (what a pathetic thing!) talks about field names and captions but there is no caption property ??? I need the column heads to position automatically based on the column widths.
  4. gazolba

    Trying to load a listbox from a different form ?

    I have a form with a list box and a FIND button. When this button is pressed it leads the user thru a series of other forms to select records. I build an SQL and want to load it into the rowsource of the original form. I'm using this code but it is not finding the form...
  5. gazolba

    How get to table reference data quickly ??

    I'm developing what is turning out to be a huge system. My main tables are full of id's which refer to other tables. In my processing I have a constant need to convert these id's to full descriptions. Some of the less voluminous data I keep in global collections. But I have some bigger tables...
  6. gazolba

    What determines height of continuous form window ?

    I have some continuous forms for editing tables. They always open with only one record showing and I have to drag the bottom border down. How can I get them to open with a greater height so they show more records?
  7. gazolba

    How reset to DEFAULT VALUE (combo box)

    I have set a Default Value for a combo box. The user has made some other selection. Now I need to reset to the default value without specifying it again. How? As usual MS Access help is useless.
  8. gazolba

    Need to send Outlook emails from Access

    Where can I find the code to send Outlook emails from Access. I need to be able to set the 'importance flag' and need to be able to control the 'from' and 'to' emails. I need an example that emails to multiple addresses. Have not been able to find this anywhere. Hope someone can help. MS Access...
  9. gazolba

    SQL Insert syntax error but works in Query

    INSERT INTO tblTicketPriorityHist (TicketID, Priority, When, User) VALUES( 2, '2', #4/22/2004 8:30:15 AM#, 'dcmcspar') The above statement causes a syntax error when executing VBA but when I paste into a query it runs. I'm using ADO cn.execute statement to run the SQL. Anyone got a clue?
  10. gazolba

    One to Many, how handle in report ???

    I have to print a report on a record. This record may be pointed to by multiple other records in a different table. I need to list all these other records that point to it, in the report. e.g. Main table: ID = 999 Reference Table: ID = 1 ref = 999 ID = 2 ref = 888 ID = 3 ref = 999 My report...
  11. gazolba

    How do multiple LEFT JOINS in one query

    First can I, and if so how? I have a table full of ID's which are defined in multiple other tables. I need to resolve everything in one query for a report. Any of the ID's may be Null. e.g. Main Table: Client ID - defined in Client table User ID - defined in User table Hardware ID - defined in...
  12. gazolba

    How get value in control (not as simple as it sounds)?

    I'm in a tab of a tabbed control in a subform. There is a command button that opens a new form (with docmd.openform)and certain logic builds a string and populates a global variable. I need to get this global variable in a textbox (locked) in the tab above the command button. I do not want to...
  13. gazolba

    Bogus 'Method or Data Member not found' message

    I just changed some code and went to compile my database. I'm getting an error 'Method or Data Member not found' on a reference to Me.txtJobStep. The value does exist, its even listed in the prompts when you enter Me. How can I get rid of this bogus error? If I remove that line, the error occurs...
  14. gazolba

    Listbox must be protected but allow scrolling, how ?

    I have a listbox that is for display only. But I need it to allow scrolling. I currently have 'enabled = false' and 'locked = true' and it does not allow scrolling.
  15. gazolba

    Confused about loading unbound combo box.

    All my combo boxes are on a tabbed form in a subform in another tabbed form. Because the subform (and all the combo boxes) are loaded when the main form is opened I left the 'rowsource' blank and dont load my combo boxes until they get the focus. I hope you are with me........ In the onfocus, I...
  16. gazolba

    'on change' I need the value BEFORE it changed

    In the 'on change' event, I need the value BEFORE it changed. How to get it?
  17. gazolba

    Same subform in multiple tabs of tabbed control ???

    I have a tabbed control, within 3 of the tabs I have a subform containing a nested tabbed control (the only reason I use a subform - it is not linked to the main form in any way). The same subform is in each tab and it is formatted depending on which main tab is clicked. But Access insists on me...
  18. gazolba

    How add subform to tab of tabbed control ?

    How do I add a subform to a tab of a tabbed control ? I've tried this before and it added it to every tab, I only want to add it to one tab
  19. gazolba

    Tab control, how set active tab when form opened ?

    I have a tabbed control, when I open the form that it is in, how do I control which tab is the active tab? Different tabs need to be active under different circumstances.
  20. gazolba

    Global variables being reset somehow !?!

    Im declaring some global variables in a module that is executed at initialization. These variables are not always present and I have no idea why. For instance I set one of them in a form and then when I return to the previous form, the contents have gone. Any ideas? I'm using Access 2000 with...

Part and Inventory Search

Back
Top