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: *

  • Users: ICET
  • Order by date
  1. ICET

    sorting data in a datagrid

    Hi Deepblerg I do it like this. Adodc1 is a adodc datacontrol connected to a database. The datagrid is set like this: Set Datagrid1.DataSource = Adodc1 Than you can sort every column in a wanted direction up or down like this: With Adodc1.Recordset .Sort = .Fields(ColChosen).Name & &quot...
  2. ICET

    Writing Excel files from VB

    Consider this piece of code(vb6) Dim bWasntRunning As Boolean 'Excel already running Dim Excel As Object 'Excel-object Private Sub Yourbutton_Click() Dim ExcelSheet As Object ' --------------------------------------------------- 'Start Excel if not running. '...
  3. ICET

    Numbers...

    You have to work around that. f.e. make a string of the double with str(x) with x as double. Then find the string behind the decimal point. Test that number and do whatever you like, f.e. if number<5 (when using 1 decimal) then x=x+1 and use round(x). 8.3 will become 9. To my knowledge there is...
  4. ICET

    Drag-and-drop within MSFlexGrid

    You can simulate Drag&Drop by using a label. When you mouse_down a cell you copy the content of the cell to the label. Then you drag the label around(label.drag 1). The problem is that when you let go(on the grid) the dragdrop event occurs and you have only the source(label) and the position...
  5. ICET

    Progress Bar Colors?

    I mail you a smooth progressbar i found a week ago ICET
  6. ICET

    Threed32.ocx for vb6 - problem

    Please check the VB6 CD. In the directory \common\Tools\vb\Controls is a readme.txt who will explain everything. I did the same, because I also removed the old VB-version. Good Lucky, ICET

Part and Inventory Search

Back
Top