Search:

Type: Posts; User: amitabh

Page 1 of 13 1 2 3 4

Search: Search took 0.51 seconds.

  1. Replies
    11
    Views
    1,076

    Re: Browse for file button

    Long time since I have worked in VB, but I suppose ShowOpen() function defined in my class can be used for showing open file dialog box.
  2. try uninstalling and installing IIS.

    try uninstalling and installing IIS.
  3. Replies
    10
    Views
    1,093

    wossname you can restrict drives using...

    wossname

    you can restrict drives using registry, although it's not fool proof.
  4. Replies
    6
    Views
    767

    see this link:...

    see this link:
    http://www.freevbcode.com/ShowCode.Asp?ID=3380
  5. Replies
    6
    Views
    767

    jim, the code you have provided gives the volume...

    jim, the code you have provided gives the volume serial number, not the H/D serial number.
    If I remember correctly, it is possible thru WMI.
  6. Replies
    2
    Views
    485

    Try searching at www.pscode.com

    Try searching at www.pscode.com
  7. Thread: CRC for a file

    by amitabh
    Replies
    7
    Views
    618

    You can also use MD5 Hash for checking the...

    You can also use MD5 Hash for checking the authenticity of the file.
  8. It's a registry setting. Search...

    It's a registry setting. Search www.winguides.com/registry for the specific registry key.
  9. Replies
    7
    Views
    683

    I have tried that already, but then, you might...

    I have tried that already, but then, you might get a better result.
  10. Replies
    7
    Views
    683

    I haven't been able to do it till now. I am not...

    I haven't been able to do it till now. I am not even sure if the Message arrives on port 37,38,39(normal NetBios communication Ports) or 17 which I got through Newsgroups. I tried on both of them,...
  11. Thread: Sockets

    by amitabh
    Replies
    2
    Views
    357

    Take a look at www.vbip.com for a more detailed...

    Take a look at www.vbip.com for a more detailed look on using sockets through api calls.
  12. Replies
    7
    Views
    683

    You need to use the NetMessageBufferSend api...

    You need to use the NetMessageBufferSend api call. This would work only on Win NT/2000/XP.
    See this link:
    http://www.mvps.org/vbnet/code/network/netmessagebuffersend.htm
  13. Replies
    6
    Views
    578

    I hope you know how to manipulate registry...

    I hope you know how to manipulate registry through code. IF yes, then look at this link on how to set the orientation of wallpapers....
  14. crpietschmann I have sent you a PM and a email in...

    crpietschmann I have sent you a PM and a email in this regard.
  15. Thread: Register OCX

    by amitabh
    Replies
    3
    Views
    510

    AFAIK, Regsvr32 also uses the same API calls.

    AFAIK, Regsvr32 also uses the same API calls.
  16. Thread: Register OCX

    by amitabh
    Replies
    3
    Views
    510

    If the OCx's are not going to be used by another...

    If the OCx's are not going to be used by another program, it would be prudent if you ket thme in your own directory. If they are shared with your own apps, try keping them in your own shared...
  17. Replies
    10
    Views
    813

    Assuming that you know how to add/searching...

    Assuming that you know how to add/searching records to a Access database through ADO, the process for searching through a DBF file should be same for you. Especially if you have the same database...
  18. Okay, in that case, I will simply put up a link...

    Okay, in that case, I will simply put up a link to your site. I will give you my link once my site gets ready.
  19. I too have a copy of the original zip file...

    I too have a copy of the original zip file containing all the web pages. Would it be of any help if I uploaded the same to my web space.
  20. Replies
    6
    Views
    575

    Look at www.vbaccelerator.com

    Look at www.vbaccelerator.com
  21. Thread: SendMessage

    by amitabh
    Replies
    16
    Views
    2,065

    Jim, PostMessage doesn't seem to work when used...

    Jim, PostMessage doesn't seem to work when used for sending cross application messages.
  22. Thread: SendMessage

    by amitabh
    Replies
    16
    Views
    2,065

    I am sorry, but I can't help you out wiht .Net...

    I am sorry, but I can't help you out wiht .Net code, but in VB6 this is approximately how I would have done it:

    Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd...
  23. Thread: SendMessage

    by amitabh
    Replies
    16
    Views
    2,065

    I think it wold be more helpfuls if you could...

    I think it wold be more helpfuls if you could specify the exact message that you need to send:
    his is an example anyhow. If you need to send it to another application, you will have to get the...
  24. Replies
    4
    Views
    391

    I suppose it is because ParamArray intNums() is...

    I suppose it is because ParamArray intNums() is being taken as a variant and you have declared x as integer.
  25. Replies
    2
    Views
    549

    I suppose you would have already tried...

    I suppose you would have already tried www.mysql.com .
    It's not a much, but you can see www.able-consulting.com for the conection strings for MySQL.
  26. http://www.vbip.com/protocols/ftp/vb-ftp-client-li...

    http://www.vbip.com/protocols/ftp/vb-ftp-client-library/tutorials/tutorial-05.asp
  27. Replies
    7
    Views
    676

    Sadly the code needed for creating a JPG file is...

    Sadly the code needed for creating a JPG file is not suitable for VB. So an external Dll is needed.
    You can take a loook at this link:
    http://www.vbaccelerator.com/codelib/gfx/vbjpeg.htm
  28. If you need the feature of resuming for your...

    If you need the feature of resuming for your downloads, look at www.vbip.com . One of their examples does have a resume feature. And as far as I remember you will need to use Winsock rather than Inet...
  29. Replies
    1
    Views
    424

    http://www.vbforums.com/showthread.php?s=&threadid...

    http://www.vbforums.com/showthread.php?s=&threadid=223989
  30. Replies
    1
    Views
    676

    There is no way to disable it in VB. Even in C++,...

    There is no way to disable it in VB. Even in C++, it is quite a task.
    You can disbale the various option present in the dialog box though through the use of registry.
    See this:...
  31. Replies
    3
    Views
    463

    Look at AlphaBlend api call....

    Look at AlphaBlend api call.
    http://www.allapi.net/apilist/AlphaBlend.shtml
  32. Replies
    1
    Views
    530

    See this...

    See this http://www.vbforums.com/showthread.php?s=&threadid=222639
  33. Replies
    1
    Views
    413

    I am not understanding your question correctly,...

    I am not understanding your question correctly, but does this code helps you:

    Option Explicit
    'set you picturebox name to Picture1
    Private Sub Dir1_Change()
    File1.Path = Dir1.Path
    End Sub...
  34. Replies
    9
    Views
    1,036

    It is definitely possible to trap Ctrl-Alt-Del in...

    It is definitely possible to trap Ctrl-Alt-Del in W2K/XP, but you will have to work in C/C++ for that. Microsoft has exposed a whole interface for this purpose. Search ofr "GINA" on MSDN.
    BTW, you a...
  35. Thread: VB Webserver?

    by amitabh
    Replies
    7
    Views
    531

    I made a webserver to let my users remotely...

    I made a webserver to let my users remotely control my software, without the requirement of some heavy stuff.
  36. Replies
    9
    Views
    539

    No problems:D ;)

    No problems:D ;)
  37. Replies
    9
    Views
    539

    Yes, both should have different IP address. ...

    Yes, both should have different IP address.
    Your domain name will be having a single IP address, unless and until it is a haevy traffic site. There are many free DNS servers around whose services...
  38. Try using Set Picture1.Image =...

    Try using

    Set Picture1.Image = ImageList1.ListImages(i)
  39. Replies
    9
    Views
    539

    Okay this is what I know: Your Nameserver must...

    Okay this is what I know:
    Your Nameserver must be registered with the root registrar, for .com and .net Verisign, to work properly , and to resolve domains names. This is important becuase you...
  40. Replies
    13
    Views
    647

    And I just checked the netsol site with a domain...

    And I just checked the netsol site with a domain name that I booked through one of its resellers. It still asks me for a login, so that effectively rules out changing DNS setting through NetSol,...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width