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

    Is Directory Folder Empty?

    Jerry, File1.List(File1.ListIndex) returns List property of currently selected item in list box. If none is selected ListIndex is still -1. zoran
  2. zorancep

    trouble writing to random access file

    Try using carriage return and line feed (vbCrLf) not only line feed. bye
  3. zorancep

    File

    In odbc administrator->tracing try clicking "Stop Tracing Now". I think you should restart windows before deleting sql.log. bye
  4. zorancep

    Integrating Crystal Reports and VB

    There are two ways. You can use Crystal Report Control(ocx) or crystal report designer. If you use ocx then you have to distribute rpt file along with your application. If you work with designer the report is compiled into your application. For more help or source code contact me personaly. bye
  5. zorancep

    Countdown Code between two combo boxes and a label or text box.

    I think the best way to do so is to include timer on the form. When you press the button you should set the time into variable and start timer. In Timer1.Timer event you should check if your selected time has elapsed and update label or text box. If you want sample code, mail me. bye
  6. zorancep

    Disable MsgBox when closing workbooks

    before ActiveWindow.SelectedSheets.Delete use Application.DisplayAlerts = False I hope it will do bye
  7. zorancep

    SQL database for small network

    Why don't you try Microsoft MSDE. bye
  8. zorancep

    combo box

    Try this: SendMessage(ComboBox1.Handle,CB_SETDROPPEDWIDTH, NewWidth,0) note that the function SendMessage is declared in module Windows so you have to include it in uses section of your module. NewWidth is type of integer. bye

Part and Inventory Search

Back
Top