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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by snorkle

  1. snorkle

    Can someone help me on msmq on win2000 prof?

    sorry, i just found it. i made a dummy post. i missed it in add/remove programs.
  2. snorkle

    Can someone help me on msmq on win2000 prof?

    How do i install msmq on win2000 professional? i created an app in vb and it works great on my win98 box, but how do i get it on win2000 prof? thank you very much in advance
  3. snorkle

    How Can I Load An Image From A Byte-Array?

    how can i load an image from a byte-array, or get a byte array from a image?
  4. snorkle

    Which code is faster?

    john - thank you for your response. i never noticed they returned variants. :) what i am doing is loading a file into a byte array. then i wanted to assign different sections of that array to other arrays. i'm doing that like this: dim b1() as byte dim b2() as byte dim f as long Dim f As Long...
  5. snorkle

    Which code is faster?

    is it faster to have a byte array and use leftb$,rightb$,midb$ etc., or to have a string and use left$,right$ etc... ? why is it faster to use the $ /w those commands?
  6. snorkle

    Hi I've written a program to per

    i've used this to get command line arguments: sub main() dim c as string c = command end sub you may want to research activeX dlls. i've used these a lot in my programming.
  7. snorkle

    Problem Connecting to Internet w/VB . Code is here. Help!

    this may or may not help: Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long Public...
  8. snorkle

    taboperations

    try using tabctl32.ocx (sp5) i've used that one a lot.
  9. snorkle

    Is this same as Visual Basic? If so, Database connection question...

    i might be way off, but i've connected to db by making a reference to msado25.dll. this example uses a dsn, but could quickly be change. dim c as new adodb.connection dim r as new adodb.recordset on error goto somewhere c.open sDSN c.execute ("select * from table") let me know if...
  10. snorkle

    Streaming an mp3 to directX

    tcollins - do you know of any links to sample code that writes directly to the secondary buffer? also , do you know if it can be done in VB?
  11. snorkle

    Qbasic into a dll?

    i'm not well rehearsed in win32/16 bin code . but is it possible to create object code in qbasic and link it with vbcode into an exe or dll?? maybe i'm far off but could you make an exe combined of 32bit and 16bit code? i'm sorry i don't know all the ins and outs of object code. where are...
  12. snorkle

    Creating ODBC System DSN

    you probably found your answer, but check this one out: http://www.freevbcode.com/ShowCode.Asp?ID=502
  13. snorkle

    Help with system api call to change regional settings

    i'm a newbe to vbscripting. My problem is that a network of computers need to change some settings without going to each computer manually. here is the code to do it in vb, but how can i get this to work if the network sysop doesn't want unfamilier executables running? Can it be done in...
  14. snorkle

    I need help on Piracy Issue !

    I have a question for jmarler, or Alt255. I haven't tried any of the ideas you're bringing up. When it does work on 98, can that be viewed through filemon? or does it show up invisible to filemon. -richard
  15. snorkle

    Mouse Events mess up in my activeX control in VB

    Can anyone please explain why my ActiveX control messes up the mouse events? I'm using visual basic. Here's what I did: 1. Start new Standard EXE project 2. Add a usercontrol to the project 3. On the usercontrol, i pasted a picturebox in the upper-left hand corner. 4: Added this code to the...

Part and Inventory Search

Back
Top