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 Mike Lewis 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. snalwala

    Package & deployment

    are you using any ActiveX or 3rd party controls and added those into your package ?
  2. snalwala

    PABX Integration

    Hi all, Can somebody tell me how to interface PABX system with the VB Code. thats whenever a call is made thru a PABX system, it should be captured and stored in the database. (Database can be either SQL Server or Oracle or even Access)... like it is there in a hotel system...Please help...
  3. snalwala

    Two Server with same client

    thanks chiph , I have installed Oracle 9i with cluster. But this time I want it without cluster since in cluster both the Server has same IP. While in my case I have different IP for Both the servers. Since the clients are TCP/IP connectivity to Server, it becomes very difficult if both the...
  4. snalwala

    Two Server with same client

    I want my SQL server to be set up like this. Two separate NT Server onwhose SQL server is installed. Now the clients (on which VB Application is running connected to SQL Server) are making transactions to this server. I want to have a separate server so that if the first server gets down...
  5. snalwala

    Calling a dll that is not a windows dll

    thru references you add the dll. and then declare the function..may be this should work out
  6. snalwala

    Is there an easy way to change fonts for the menu bar...

    u can change font of menu items only by changing the conrol panel and display settings. Thru VB infact there is no other way ...not even at run time u can change...
  7. snalwala

    Double click an application.

    have u ever heard about in process and out of process ???? exe's are all out of process applications. That means every time you excess it it opens a new instance of it. it doesnt get locked any time. Just you can make it read only thru' windows....
  8. snalwala

    How do I find the number of rows in my access database?

    or else you can try this running into loop..although it will take more time to run the code then the conventional code. dim Cnt as long set rstCurrent = db.openrecordset("select * from EMP") cnt = 0 do while not rstCurrent.eof cnt = cnt+1 rstCurrent.movenext loop rstcurrent.close
  9. snalwala

    Check box beside files

    JustinEzequiel, the style property is not 2 it should be 1 there are only 2 property of style...1 and 2 which is standard and checkbox respectively. Also if not list box then you can use list view with checkboxes property as true. Thanks
  10. snalwala

    Importing values to another form.

    no it wont make any difference...
  11. snalwala

    Importing values to another form.

    suppose 1st form is form1 and the 2nd one is form2 you have txtfrm1name for name in form1 and txtfrm2name for name in form2 before you write form2.show write this line txtfrm2name.text = txtfrm1name and then write form2.show
  12. snalwala

    VB package deployment

    Check out while making a setup file have you added the crystal report ocx.
  13. snalwala

    Can you change the cursor for a message box (VB 6)?

    You can use the same for even msgbox... like.. screen.MousePointer = vbIbeam msgbox "Here goes the message box" screen.mousepointer = vbdefault
  14. snalwala

    Command Button/Image at runtime

    I want to have no. of command buttons or images Placed on the form depending on the actions performed by the user. I dont want to have list of them and play with the visible property of them. I want them to appear at runtime. Pls Help, will be appreciated
  15. snalwala

    SSTab still giving me trouble

    Dammit, it works fine here too.
  16. snalwala

    How to Search in a DataGrid

    I have tried in MsFlexGrid. May be the same procedure you can use it for DataGrid. Try This out. 1. Place a MsFlexGrid on the form and name it as Grd 2. Place a text box for the text you want to have search. Name it as txtSearch 3. On txtSearch_Change event write the following code Private...

Part and Inventory Search

Back
Top