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 SkipVought 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. getdani

    finding an item in a datacombo box and selecting it

    hi u just need to move the recordset that u assigned to the rowsource to the record u wnat use rs.filter or rs!move() ex dim rs as recordset rs.open(select * from order") set cmborder.rowsource=rs cmborder.listfield="OrderNo" ' to do what u want u can do this rs.move(0,20) this will...
  2. getdani

    Listbox Setting max items not working

    hi may be u only got 45 logs or get the logs from the targetpc and try it on urs or may be i did not get ur Q? must be one of the three
  3. getdani

    How to add 2 array together

    if u want the L value aray to have the size of sum of the two args ex ar1=(2,2,1) ar2=(1,4) 'expected otput ar3(2,2,1,1,4) if so do this dim ar3() as integer ' dynamic array dim lar1 dim lar2 .... lar1=ubound(ar1) lar2=ubound(ar2) redim ra3(lar1+lar2) as integer 'use a loop to copy the value
  4. getdani

    await the secondary form close.

    hi do this lets say the forms are frmOrder and FrmFind and the that callls the frmFind be FindOrder() if u r expecting a return from the FrmFind u should Declare a public variable in frmOrder say Public FindParam as string now for the FindOrder() , use modal form sub FindOrder() ...
  5. getdani

    Updating a CSV file based on data read from another

    you might not need to go as far as SQL server u can just use access, containing two tables related by the tag, whenever the csv is requierd u can export it using the adodb recordset object save(filename,scv) to scv format. it is faster consistant and reliable than a text file
  6. getdani

    Program performed illegal operation while renaming .new to .exe

    hi, can u be specific about @ which step the error occurs, may be then, i can sugest somthing
  7. getdani

    help with informix connectivity using ODBC

    me again , IBM site is some kinda maize i can't find anything there , could any one please give me the url
  8. getdani

    help with informix connectivity using ODBC

    heloo all , is it possible to connect to an informix database using odbc , if possible where do i get the odbc client and service for windows

Part and Inventory Search

Back
Top