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

    VB6 activex control?

    yes.
  2. cucuzz0

    flexgrid no lines in grid

    i have tried to duplicate a grid such as you describe, but cannot. perhaps you may post an example.
  3. cucuzz0

    DBGrid1 does not clear old rows after populate new rows

    before you re-populate. try using the .clear function.
  4. cucuzz0

    Datagrid dblClick Problem

    When I use a grid, I add a textbox for editing. Set the textbox to invisible. When the grid is clicked, or double clicked, I move the textbox to the cell location setting the size of the textbox to the size of the cell and then making it visible. You can then save the contents of the textbox to...
  5. cucuzz0

    HELP!! Problems running my exe on other computers

    I usually run the package & deployment wizard just to see what it tells me, however if you have a compiled exe you simply want to move to another machine, you'll need all of the ocx's (or controls) that your program uses on the target machine. For example, if your using a flexgrid, find the...
  6. cucuzz0

    Help VB Deployment..urgent please...

    Try to find the activeX controls, such as msflxgrd.ocx, used in the project. (you can find this out by using the package and deployment wizard and view the dependencies found) copy them from wherever they are on your machine to the users machine (i develop on win2k and usualy put them in the...
  7. cucuzz0

    Dynamically add objects i.e.: textboxes, to a frame?

    you're right. thank you.
  8. cucuzz0

    Dynamically add objects i.e.: textboxes, to a frame?

    duh ... ya. perhaps you didn't read the question, dear.
  9. cucuzz0

    Please help - How do I import data from Excel into VB....

    Try this: Option Explicit Dim objExcel As Excel.Application Dim objWorkbook As Excel.Workbook Private Declare Function ShellExecute Lib "shell32.dll" Alias _ "ShellExecuteA" (ByVal HWnd As Long, ByVal lpOperation _ As String, ByVal lpFile As String, ByVal...
  10. cucuzz0

    Dynamically add objects i.e.: textboxes, to a frame?

    Would like to give the user the capability to dynamically add a control, a textbox, on a Frame (so i can scroll the frame) So far I can add controls to a form and scroll the form, but the controls soon move off the form, forcing the user to scroll down. If I could add them to a control, such...

Part and Inventory Search

Back
Top