Search results

  1. M

    Displaying a picture on a Report

    Displaying a picture on a Report Hi ! i am facing a hurlde while displaying a picture on a report i have placed an unbound object control on the the report to show the picture. and have set the recordsource of the report through code hence the unbound object control has to display the...
  2. M

    Opening a form when selecting an item in Listbox

    Hi kmsdove! If I am getting you right , you want to open a Form after when you select an item from a list box. Is the item selected from the list box ,the name of the form to be opened? If it is ,then what you have to do is put the docmd.openform () statement in the afterupdate event of the...
  3. M

    How to control another Applications from Acces

    How to control another Applications from Acces Hi ! I want to control a scanning software through Access. i want to scan some pictures to a database through a command button on a form . i know its possible by the sending keystrokes methode of the macros but what if the application runs a...
  4. M

    making a form transparent

    hi aspenzero! you can create your own menu bars and toolbars and set the system menubar and toolbars to invisible . is that what do you need if yes then create a menubar first and then go to startup and mention the name of your menubar instead of the system menubar and mention the name of your...
  5. M

    control sources

    hi oliver ! you can do it like that u should put the "columncount" property of the combobox to the number of fields you want the combobox to show then in the "afterupdate" property of the combo box u should PUSH the values to the appropriate fields as: ME.[EquipmntNoTextBox]=...
  6. M

    Linking calculations in a form to a table

    Hi Scott! you should write the code in the OnClick event of the 'Save' button (u should create on ur form). The code should be like this: yourRecordset.Edit ME.[ExpiryDate].setfocus yourRecordset.Fields("urExpiredateSno")= Me.[ExpireDate] Me.[IssuedDate].Setfocus...
  7. M

    Maintaining a subform based on a search Query

    Thanks Kensan it did work well!
  8. M

    Repeating Report headers

    I want to repeat the report headers on each page. is it possible to do so? any help will be greatly appreaciated thanks in advance! Imran
  9. M

    Maintaining a subform based on a search Query

    i am having problem with a subform that is based on a select query , but the select query is getting the criteria from a textbox located on the main form. i want the subform to be displayed after a value is entered in the textbox control and a button is pressed.i wonder how can i do it? thanks...
  10. M

    Maintaining a subform based on a search Query

    i am having problem with a subform that is based on a select query , but the select query is getting the criteria from a textbox located on the main form. i want the subform to be displayed after a value is entered in the textbox control and a button is pressed. thanks in advance for help! with...
Back
Top Bottom