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 Wanet Telecoms Ltd 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: cP6uH
  • Content: Threads
  • Order by date
  1. cP6uH

    Caption of Command Buttons in Option Group

    Hi, Is there a way to get a caption of pressed command button in an option group. So what I have is Option Group with let's say 4 options, and they're all command buttons. So, when user selects one, and clicks some other button to run some code, I'd like to get the caption of the option...
  2. cP6uH

    Prompt all users logged in the DB with a message

    Is there a way in Access XP database that is on the network, to prompt all the users that are logged in with the message by clicking on the button on a form ? Thanks, Dragan
  3. cP6uH

    Is there an onAllDone Event ?

    I have a form and 2 subforms in that form in access. Subforms are connected to the parent form, so their data changes when data in the parent form goes to the next record. Is there a way to run some code to check the numbers in those 2 subforms after they're done updating ? Data in the parent...
  4. cP6uH

    Date filter problem in Access 2002

    I have a report, and when I click a button for report preview, follwing code is executed: sCriteria = ([Date of First Issue] <= #&quot; & [Forms]![DirectivesForm].[cboLastDate] & &quot;#&quot; stDocName = &quot;Report&quot; DoCmd.OpenReport stDocName, acViewPreview, , sCriteria...
  5. cP6uH

    Move texbox or label in Access report

    Is there a way to move any object, like texbox, label, checkbox through code when you run a report ? I tried .top property and .move, and they both didn't work. Is there some other way of doing it ?? Thanks. Dragan
  6. cP6uH

    Select not empty fields to show in report on Report open

    I have a report that has a query with around 30 fileds. I need to check 15 of those 30 fields to see if they're empty, and if they're not I want to put them in the string, and print them on the report. I know I can do it if i go field by field, and check if it's empty, and if it's not, add it...
  7. cP6uH

    SQL Criteria from VBA

    Hi, I have a little problem. If I do following code in VBA, and try to run a report, it works fine, and it filters all the records for the name Jason. sCriteria = &quot;[Name]= 'Jason'&quot; stDocName = &quot;Query&quot; DoCmd.OpenReport stDocName, acViewPreview, , sCriteria, acWindowNormal...

Part and Inventory Search

Back
Top