CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: jayderk

Page 1 of 4 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    1
    Views
    794

    [VB] sending secure http POST

    Hello all,

    I am researchering how to send a secure(SSL) transaction(http POST) to one of our web services. I am having little luck in doing this.

    I would have thought there is a library to...
  2. Replies
    2
    Views
    697

    [VB] Force IE to open

    Hello all,

    I am trying to force a url to open in Microsoft internet explorer, the problem I am having is that it always opens it up using the default browser(Netscape..etc)

    this is my call.

    ...
  3. Replies
    1
    Views
    7,152

    [VB] Way to change a form title

    Hello,

    I was wondering if there was a way to change the color of the titlebar at the top of a form dynamically?

    The text is an easy call to me.Caption = "BLAH" but the color is a different...
  4. Replies
    1
    Views
    647

    [VB] Message strings easy to change

    Hello All,

    I am looking for a way to be able to change my strings in label boxes and message boxes with one quick change right before compile..

    example of this would be something like this.
    ...
  5. Replies
    1
    Views
    7,222

    [VB] Click event on WebBrowser control

    Hello all I am using the webBrowser control on an vb 6 form and want to have a click event... basically if they click on the WebBrowser1 control it will bring the same page up in a real web browser....
  6. [VB] what I am looking for

    shellExecute() opens internet explorer on Win98/Win2K/WinXP with this call
    rc = ShellExecute(App.hInstance, "open", url, vbNullString, "C:\", _
    SW_SHOWNORMAL)

    it does...
  7. [VB] Start a application from another application on NT

    Hello All,

    I am trying to find call other then ShellExecute() that opens and runs applications on an NT box. Any suggestions.


    regards,
    Jay
  8. [VB] Can not open internet explorer 6 from a Windows NT box system call

    Hello all,

    I am trying to open internet explorer 6 on a windows NT box and it does not seem to work....

    both of these shell calls work on win98/2000/XP. is there another call for windows NT?
    ...
  9. [VB] Checking if ICON is in the System Tray

    I have noticed that sometimes when I leave a windows 98/ 2000 box running my application for a number of days my Icon in the system tray disappears while the task manager says the application is...
  10. Replies
    0
    Views
    1,048

    [VB] Automation error

    Hello All,

    I am getting an automation error (# 440) bringing up a dialog box. It is one of my simplest dialog boxes, it basically has an OK and Cancel button with a combobox for selecting a...
  11. Replies
    3
    Views
    744

    [VB] temp file directory

    Thank you for the quick response.

    I was out looking around some more after I posted this and saw a function called Envron() that does about the same thing. Is there a stability reason why I...
  12. Replies
    3
    Views
    744

    [VB] Temporary files on Windows 98

    Hello all,

    I am looking for where a users temp file is located on Windows 98, I have found the registry key on the windows 2000 PC's that says the user temp file is in...
  13. Replies
    3
    Views
    899

    [VB] Local machine question

    Hello and thank you for the quick response.
    sorry about the subject.

    they are not getting an error message, it simply does not come up.

    How would I be able to find out about the ability to...
  14. Replies
    3
    Views
    899

    [VB] Form.Show vbModal problem

    Hello all,

    I really need some help on this one, any suggestions will help out alot.

    we are beta testing an application out in the field that is going to be released pretty soon and I am seeing...
  15. Replies
    0
    Views
    1,091

    [VB] sending an HTTP request with proxy

    hello all,

    I am sending an http request with MSXML2.XMLHTTP40

    the problem is I do not see anywhere to enter proxy server information?

    Does Windows/internet explorer handle all of these...
  16. Replies
    3
    Views
    6,758

    [VB] Open the Device Manager

    Hello All,

    I am looking for a shell call or something that will open my device manager..


    thanks in advanced
  17. Replies
    2
    Views
    2,595

    [VB] Continue statement on FOR loop

    I can not find anywhere the definition of a continue for a VB FOR loop


    for i = 0 to 10
    if i = 2
    continue

    else
    'do some other stuff
    end if
  18. Replies
    0
    Views
    511

    [VB]Creating PDF files

    I just want to know if you fellas know of any 'OUTSTANDING quality' PDF sdk's or PDF creators?
  19. Fixed the problem.

    one good point is
    Shell_NotifyIcon NIM_MODIFY, nid

    returns a boolean.. this is good to know.... and it returned false...

    the problem was LoadPicture(App.Path & "\TaskBar.ico")
    was not loading...
  20. [VB] Problem with system notification icon

    Hello Fellas,

    I was wondering if you could help me with a little problem I am having.

    I can not get this code to work. basically I am using the much used system notification TYPE called nid to...
  21. [VB] is it possible to hide an app in the Task manager

    I have an application that starts another application as one of it 'child threads' the reason I do this is because multithreading in vb is very unstable for my taste. I want be able to hide the child...
  22. [VB] System notification icon that flashes

    Hello all,

    I was wondering if there is a recommended way/class/module that allows me to have a system notification icon that flashes/changes? for example the active sync manager... it looks grayed...
  23. Replies
    1
    Views
    679

    [VB] Automatic updating of an application

    Hello All,
    I am writing a VB 6 application from scratch and was trying to figure out a way for the application to possibly include automatic updating. does VB 6 include such libraries/class? what is...
  24. [VB] array of byte data I want to send with XML

    I have an array of byte data that I convert to a string to send in an XML. the problem is if I have a string that looks like so
    ...
  25. Replies
    2
    Views
    923

    small addition to sysop code

    Shell("explorer.exe " & Chr$(34) _
    & urllist.Item(ii).Text & Chr$(34), vbNormalFocus)

    this works better cause it contains all of the data.
    otherwise you may have some trouble with SOME urls
Results 1 to 25 of 98
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured