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