1
vote
4answers
66 views
C# Win32 - Missing something for big
Hi all! it's a very newbie question but after 3 hours of looking after it i'm done with google-ing for today....i'm using a code i've found and it uses Win32, it's says "The Name ' …
1
vote
3answers
51 views
How do I make Perl scripts recognize parameters in the Win32 cmd console?
When I invoke my Perl scripts in the Windows environment without invoking perl first, the parameters are not passed to my script.
For example,
C:\> C:\my-perl-scripts\foo.pl b …
0
votes
3answers
40 views
Redirect stdout to an edit control (Win32)
Hello,
I have a simple Win32 GUI app which has an edit control in the main window. If I write:
printf("Hello world!\n");
I would like the text to appear in that control instead …
1
vote
2answers
29 views
Win32 newbie: Firefox-like find bar
Firefox has this nice find-a-text-on-the-page dialog, which is non-modal and shows up at the bottom of the window. How to do something similar using just Win32? I guess there has t …
0
votes
1answer
47 views
How Google desktop search is opening files in foreground?
Hi,
I want to build similar experience as google desktop search is giving while opening the file. Suppose the user is searching for a particular file and he clicks on it in the bro …
1
vote
2answers
38 views
F# syntax for P/Invoke signature using MarshalAs
I'm unsure of the syntax for this. I'm trying to translate this C# code into F#.
struct LASTINPUTINFO
{
public uint cbSize;
public uint dwTime;
}
public class IdleTimer
…
2
votes
4answers
58 views
Waiting for grandchild processes in windows
Is it possible to wait for all processes launched by a child process in Windows? I can't modify the child or grandchild processes.
Specifically, here's what I want to do. My pro …
0
votes
3answers
52 views
Loading an assembly from a win32 application without having .NET framework installed
I know it's possible to run a .NET application using a portable Mono executable without having .NET framework installed but is it possible to load and use an assembly is this situa …
0
votes
2answers
41 views
Question about file seeking position..
My previous Question is about raw data reading and writing, but a new problem arised, it seems there is no ending....
The question is: the parameters of the functions like lseek() …
0
votes
1answer
31 views
Is it possible to set the DPI of an application programatically?
Is it possible to set the DPI of an application programmatically or the DPI only possible to set through the system preference?
Note: My application's GUI is coded in MFC and .NE …
2
votes
2answers
43 views
How to know the internet connection details using Visual C++ Win32 API
I have to create a log file for all internet connection made by PC. It should have details of the username, time of connection, etc. I do know about the InternetGetConnectedState() …
0
votes
2answers
54 views
+250
Visual Studio switches from disassembler to source each time I step
On one of my two computers I see following behaviour:
Each time I press F10 (Step over) or F11 (Step Into) in the disassembler window, the focus is switched to the source view, re …
0
votes
2answers
65 views
Getting a file path relative to a particular directory
Is there a nice way in the WinAPI to get a path relative to another path? For example:
Have a list of paths relative to:
a\b\c\d
And I'd like to change them all to paths relati …
0
votes
1answer
46 views
How to capture a part of a screen using Ruby on Windows?
Instead of using some third party app, I'd like to write an app in Ruby that when invoked, will capture the full screen and save it in c:\screenshot\snap000001.png
The graphic p …
1
vote
6answers
55 views
Does a Win32 control’s control ID change with each run?
In other words, can I count on a control ID as a reliable identifier?
From some reading I've done, it sounds like .NET controls can have control IDs that change with every run, is …
