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. bnath001

    Referencing a table in other database

    Pls help. I am trying to refer to a table which is in another sql server database (on the same machine) . What is the syntax ? thanks
  2. bnath001

    Exclusive Access rights to Access97 database..

    I have an MS Access database (Access 97). It is on a Network drive and the idea is multiple users (atleast 10) will be using it parallelly. I mean to input data/edit data. When I am a user and other users in my department use, there is no error. But downstream department users use the...
  3. bnath001

    change the "Row source" of a combo box

    Lightning, I appreciate for taking time in responding my question. But it still says "There is an invalid method in an expression" when it runs Forms![frmTabCustomers]![subItems].Form.SetFocus statement. May be I should let you know exactly what I am trying to do. 1. I have a Main...
  4. bnath001

    change the "Row source" of a combo box

    thanks. But it doesn't work. frmTabCustomers is the Main form. subItems is the name of the sub form. cboNames is the combo box which is on the sub form (subItems) Forms![frmTabCustomers]![subItems!Form].SetFocus Forms![frmTabCustomers]![subItems!Form].[cboNames].RowSource =...
  5. bnath001

    change the "Row source" of a combo box

    HI, In the detail section of my form, and I have a subform in that detail section. I have a combo box in the subform and I would like to change the control source/row source properties dynamically. How can I access those properties of the combo box which is in the subform. could someone give...
  6. bnath001

    changing "control source" or "row source" in subform

    HI, In the detail section of my form, and I have a subform in that detail section. I have a combo box in the subform and I would like to change the control source/row source properties dynamically. How can I access those properties of the combo box which is in the subform. could someone give...
  7. bnath001

    Need to FTP using VB5.0

    Hi, I need to FTP using VB5.0. can someone give me some directions on this please. thank ou nath
  8. bnath001

    Connection to Oracle from Access97..

    How to use Pass thru query ? (connecting to oracle from Access97). currently I have linked Oracle tables into my access97 application using LInked table manager. thank you nath
  9. bnath001

    Connection to Oracle from Access97..

    Hi, I have been using Access97 tables and I used to use set dbtemp = currentdb() set rst_table = dbtemp.openrecordset("tbl_test") to connect to the tables. But now I have moved the table to oracle. I have created a DSN using ODBC administrator. How to connect to oracle using the...
  10. bnath001

    Setting the Globla Array variables to nothing??

    Thank you I will do that. But I am using an access form and with local access tables and few Oracle tables (connected thru a ODBC DSN). I have linked the oracle tables into my access database using linked table manager. When User clicks on the Generate button, it does bunch of calcuations in...
  11. bnath001

    Setting the Globla Array variables to nothing??

    I have declard some global Array variables in the Module files and after finishing the processing how can I intialize the global array variables to nothing? Public gltest(1 To 4, 1 To 10) If I don't initialize the global array variable to nothing does it hog the memory? thank you nath
  12. bnath001

    Memory Error..(MSAccess.exe) - Application error

    Hi, This is an MS Access 97 question. I have developed an Access application with Oracle tables as back-end. I have linked Oracle tables using a DSN. (created DSN using ODBC administrator) There is only 1 form in this application. When I run the form it runs fine and does updates, inserts...
  13. bnath001

    MSAccess.exe (memory ) error...

    Hi, This is an MS Access 97 question. I have developed an Access application with Oracle tables as back-end. I have linked Oracle tables using a DSN. (created DSN using ODBC administrator) There is only 1 form in this application. When I run the form it runs fine and does updates, inserts...
  14. bnath001

    Color change for a row in DBGrid control

    Hi, I am using DBGrid (data bound grid control) on a VB5.0 form. When the user double clicks on a row, I am populating the data into text boxes and the user can modify the data and hit save button. But as soon as the data is saved into the database, I would like to change the color of the row...
  15. bnath001

    Disable menu items (of MDI) in VB5

    Hi, I have an MDI form. When the user logs into my application by typing UID and PWD (which is a small popup form), depending on the access rights to the user I need to disable some menu items of my MDI form . I have created some menu items on MDI form. How can I disable/enable the menu...
  16. bnath001

    Is "DDEInitiate" possible in VB5?

    cdukes, I am using VB5 and what library should I include in my project file inorder to make use of DDEInitiate call.. thank u nath
  17. bnath001

    Knowing which Forms are LOADED

    I tried using your code For i = 0 To Forms.Count - 1 'do something with Forms(I).<property> MsgBox &quot;hello this is &quot; & Forms(i) Next i I would like to know the name of the form which is opened. when the control reaches the Msgbox statement, there is no property...
  18. bnath001

    Knowing which Forms are LOADED

    HI, I have a VB project and it has an MDI form. How do I know what are the forms that are loaded currently. could some one give me some suggestions please. thanks nath

Part and Inventory Search

Back
Top