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

Search:

Type: Posts; User: typecast

Search: Search took 0.04 seconds.

  1. Replies
    4
    Views
    1,007

    Re: FTp File Access

    hi there,
    take a look at the "Using the Internet Transfer Control" in MSDN.
    It supports HTTP/FTP protocols and you can easily use also a proxy
    server.
    Another possibility is to use the...
  2. Replies
    3
    Views
    81,515

    Re: Passing in Command Line Arguments [VB6]

    Hi there,
    you can use the Command function.
    Command returns the command line arguments to your
    programm if any! For example in your case:


    dim strArgs as String
    strArgs = Command
    ...
  3. Replies
    3
    Views
    1,231

    Re: rundll32 implementation

    ok, i got it :-)

    you just need to give the whole path .. stupid me :-))

    thank you!! :)

    typecast
  4. Replies
    3
    Views
    1,231

    Re: rundll32 implementation

    hi there :-)
    thank you for your reply.
    the program still doesn't start the "clock properties window" but at least
    doesn't crash anymore :-)

    i'll keep trying and when i get it (if i get it), i...
  5. Replies
    3
    Views
    1,231

    rundll32 implementation

    hello there,
    i have the following problem:
    i want to implement my own function just like rundll32, so
    i could open from my funtion for example the "System Clock Properties Window" (double click...
  6. Re: Difference of time in MilliSeconds - pls help urgent !!

    hi,
    try the GetTickCount function.
    The difference between start of some code part and end would be the execution time in milliseconds.

    regards,
    typecast
  7. Replies
    4
    Views
    770

    hi you could try this two things (they worked...

    hi
    you could try this two things (they worked for me in different situations).the first is:
    m_tnid.hIcon = AfxGetApp()->LoadIcon(IDI_ICON1); // user defined

    or instead try the LoadImage...
  8. Replies
    3
    Views
    684

    one think i've figured even ... :-) ready forms...

    one think i've figured even ... :-)
    ready forms in vb don't have actually 4x2 coordinates, they have left, top, height and width. maybe you should draw the form yourself ...
    when you must rotate...
  9. Replies
    3
    Views
    684

    yes, it is possible. rotate every point from the...

    yes, it is possible. rotate every point from the shape over one centre (the centre could be e.g. the first point from your shape and you can rotate the other 3 points). use normal rotation matrix....
  10. hi, i don't see a difference between ...

    hi,

    i don't see a difference between
    Me.Name and object.sFunctionName
    also there is a difference with your hardcoded string (e.g. "MyFunc"), since you don't need to remember the name of your...
  11. hi, yes, you can display a context menu by right...

    hi,
    yes, you can display a context menu by right click over the tree
    control and then you can interate trough all the menu items and see which one is enabled or vice versa
    in MFC you only need an...
  12. hi, you could also see in MSDN (i think it is...

    hi,
    you could also see in MSDN (i think it is simplier than Profiling)
    GetProcessTimes and see the calculation formula on this site:
    http://www.alexfedotov.com/samples/wmitop.asp

    hmm ... i've...
  13. hi, if i understand your code correct, you...

    hi,

    if i understand your code correct, you only need the function
    name in itself, so you can maybe try this: create one class module
    (i've called mine FunctionFactory) and within you'll have...
  14. Replies
    3
    Views
    956

    hi, look in MSDN for Get/SetScrollInfo or if you...

    hi,
    look in MSDN for Get/SetScrollInfo or if you don't want to send messages you can have your local position counter and by button click increase/decrease it and select the item in the listbox and...
  15. Replies
    3
    Views
    3,210

    hi, you have formated the output wrong or your...

    hi,

    you have formated the output wrong or your variable is wrong ...
    i didn't look at my settings, but:

    function call output...
  16. hi, are you using CreateProcess to start your...

    hi,
    are you using CreateProcess to start your console program?
    if so, then to be able to catch the console (resp. your program's) output you must make the following (unfortunately i've made it only...
  17. Replies
    2
    Views
    10,617

    Process CPU / Mem usage

    Hi,
    I found this article once
    (
    http://www.alexfedotov.com/samples/wmitop.asp )
    I think it will help you, to understand how to calculate the CPU
    usage. I also wrote a small (it's a laity...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured