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 TouchToneTommy 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. RichCraig

    Bitmap into Matrix

    BOb Thanks for the better google search! Found a nice bit oc code from VB-Helper.com that uses the Set/GetDIBits API function.
  2. RichCraig

    Bitmap into Matrix

    Hi I have been looking all day for a way to get a bitmap from the clipboard into a matrix or array. I have seen it done in C and .Net but I can't see anyone who's done it in VB6. I am guessing VB6 doesn't have access to MemoryStream functions like .Net? I have been writing a program in VB6 to...
  3. RichCraig

    vb6 Studio Properties ListBox

    Hi johnwm Thanks for your post, thats exactly what I need!!
  4. RichCraig

    vb6 Studio Properties ListBox

    hi BobRodes thanks for your post. Im writing a vb6 application with alot of variables that the user needs to change. I would like to create a form with a listbox just like the properties listbox found in visual studio that lists all number of settings on one side, that the user can edit on the...
  5. RichCraig

    vb6 Studio Properties ListBox

    Hi It would be very handy if I could recreate the Properties list box you find in Visual Studio, ie Clearly a listbox of sorts but you are able to enter new values, select from drop down menus, select colours etc. I've searched for examples or where to start with combining multiple types with...
  6. RichCraig

    Compiled EXE does not work

    Not connecting to a DB, but do have connections to a third party communication DLL and I am using Windows VidCap32 to capture images from a camera. The previous exe build (just before xmas) works and this was before the Camera facility was added. I'm don't have too much experience with frame...
  7. RichCraig

    Compiled EXE does not work

    I've created a large app using vb6. When I run (start full compile) the app works fine. I export to an exe, open it up to get my form, but get nothing from any my buttons or menus. Just hoping some one could give me a few quick checks to sort this problem.
  8. RichCraig

    Setting application icons dynamically

    Store your icon in an imagelist. Then something like... Form.icon = imagelist.listimages.Item(1)
  9. RichCraig

    Activating an open external program

    If found a different exe to start the app, but I'll look into the command line arguments. thanks
  10. RichCraig

    Activating an open external program

    Dan, Max Thanks for the reply. Its not my software so I don't know what to pass to it. Obviously the Shell "C:\MyPath\MyServer.EXE" opens the pop up, the focus is on a text box displaying the status. To start the prog I have to tab once to change the focus to the 'Start in Server Mode'...
  11. RichCraig

    Activating an open external program

    Hey I've opened an exe using Shell ("C:\MyPath\MyServer.EXE") The problem I have is that it has a 'Start in server mode' button. Now I think I should be able to use something like Shell ("C:\MyPath\MyServer.EXE RUN") or something similar, but I've searched the net and can't find an...
  12. RichCraig

    no understanding between my boss and his

    Can you go a level higher? Nothing put priority to one of my projects than the intrest of a director who asks my boss, who in turn supports me 100%. With out intrest 'from above' Im in more or less the same situation as you (fighting for attention and approvals).
  13. RichCraig

    Finding the common number, a DMax DCount problem?

    Thanks again dhookom, it was a friday and was seriously bugging me.
  14. RichCraig

    Finding the common number, a DMax DCount problem?

    Cheers dhookom, but Im not too hot on running SQLs yet, is there no way to use =Dlookups?
  15. RichCraig

    Finding the common number, a DMax DCount problem?

    Hi I hope someone can quickly put me out of my misery. I have a table ORDERS that records CompanyID as a number field. I would like to find out the company (CompanyID) that has placed the most orders, but Im not too sure about how to combine the DMax(DCount()) aggregates. Example CompanyID...
  16. RichCraig

    RecordID select from List Box

    Judge Hopkins, Rolliee! Thanks for all your help, but Im afraid you can't help me from being me. Fixed it after all by not using a control source and leaving the list unbound.
  17. RichCraig

    RecordID select from List Box

    Thanks again judge, but does this code just search a single column list? Im displaying 3 columns at the mo to show [area] [equipment] [Rec ID]. I keep having the problem that the first record's equipment changes to the selected equipment, does anyone have any ideas why? All this so users can...
  18. RichCraig

    RecordID select from List Box

    THanks judge, that cleared some things up. It all nearly works. At the moment I can select a record, but I don't think its going to it as it seems to select the record I choose as well as the first record in the table and changes the Equipment of the first record to match the one I've selected...
  19. RichCraig

    RecordID select from List Box

    Hi Rollie thanks for the reply. Ive got Dim rs As Object Set rs = Me.Recordset.Clone SRCHstr = "Rec_ID = ' " & Me.Rec_ID & " ' " rs.findfirst SRCHstr Me.Bookmark = rs.Bookmark but Im just getting "Update or CancelUpdate without AddNew or Edit&quot...

Part and Inventory Search

Back
Top