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 strongm 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. AmritPaulSingh

    Print on a form

    Sorry about that missinglinq. I'd like the line actually appear on the form and not a textbox or anything. Thanks
  2. AmritPaulSingh

    Print on a form

    Whats the command/suntax to print a line on the form? Thanks
  3. AmritPaulSingh

    Report Printing

    I have a command button that does many tasks on its on clink event. Apart from other tasks, it prints out 2 reports. The first report that it is printed comes to the defualt printer, but the second report prints to another printer and not to the default printer. Is there a report property or any...
  4. AmritPaulSingh

    List Box

    I have a multiple selection list box. How do I get the value of the selection of the list box in a text box? My lst box (lstPP) contains the following values: 1 2 3 4 5 If I select 1, the text box should get the value 1 If I select 1 and 3, the textbox should get the value 1,3 Help...
  5. AmritPaulSingh

    Default data in a combo

    sorry. What i meant was that in the properties windows of the combo box, there isa field for default value....you can enter whatever default value you want in this field. hope thats clearer enough
  6. AmritPaulSingh

    Default data in a combo

    In the properties windows of the combo box, enter ="Y"
  7. AmritPaulSingh

    2nd Line in VBA coding

    got it. thanks nicsin
  8. AmritPaulSingh

    2nd Line in VBA coding

    If the VBA code has a very long line, how do i break it in 2 or more lines. I know there is something to do with & _ but am not able to use it. Thanks
  9. AmritPaulSingh

    Update function problem

    if the function completes successfully, make it return true else false then call the function in an if statement. ex: if function() = true (continue) else exit sub end if
  10. AmritPaulSingh

    Drop-Down Selection that Alters Form

    It would depend on what your drop downs have to do. According to your state/county example, you can do the following: Create a table with states and counties. First drop down can list all the states: "Select distinct States from tblStates" Then on the "OnChange" event of...
  11. AmritPaulSingh

    How do add tables, forms and reports to a split database

    Import all the tables to the backend and the forms, queries and reports to the front end. Then link all the new tables in the front end to the backend. Hope that helps.
  12. AmritPaulSingh

    Disk Or Network Error

    I took a look at the article but really couldn't get much out of it. Thanks for trying though
  13. AmritPaulSingh

    Disk or Network Error

    Thanks for your response Philly. I had one front end initially, but created mulitple copies thinking that that might be the reason for the error.
  14. AmritPaulSingh

    Disk Or Network Error

    I have an access database that is used by mulitple users at different locations. The users use the database through citrix and they quite often get a "Disk or Network Error". There was a backend end and one front end to the database. I made multiple copies of the front end, one...
  15. AmritPaulSingh

    Disk or Network Error

    I have an access database with the backend at one location and mulitple copies for the front end for all users at different locations. The users use the database through citrix. They at times get a "Disk or Network Error". Earlier I had the forms bounded to the tables and so though...
  16. AmritPaulSingh

    Deleting Parents with no Children

    The syntax for a delete sql statement is Delete from table_name where delete_crtieria If there are no child records for the record youi are trying to delete, you do not need to enter the child table in the sql. It will work fine just like that. Let me know if it doesn't work. Amrit
  17. AmritPaulSingh

    Force a new line in a message using SendObject

    Use vbCr for a new line and vbTab for a tab. Hope this is what you were looking for.
  18. AmritPaulSingh

    Text shifting when exporting form

    Like redwoodly said, forms and reports are 2 diff. scenario and that snapshot viewer is best fo viewing access reports. You can download snapshot for free at the following link: http://support.microsoft.com/support/kb/articles/q175/2/74.asp
  19. AmritPaulSingh

    Combo Box sort

    If you have a sql as the record source for the combo, then just add &quot;Order By <field>;&quot; at the end of the sql where field is the name of the field that you want the combo to be sorted by.

Part and Inventory Search

Back
Top