| Thread | Last Post | Replies |
|
| VB Parameters for DLL | 22 Jun 2006 12:55 GMT | 8 |
Hello, All: I have a DLL that I created in C++, and I can make calls to it from other C++ programs that I've created. However, I'm having problems calling some functions in VB -- more specifically, VBA.
|
| Keyboard events | 21 Jun 2006 22:05 GMT | 6 |
I am trying to develop a keyboard log so that I will be able to log all the keys that pressed in my computer. I have used the GetAsyncKeyState API function but I have a problem with the language. For example, I can not understund if the key pressed is the english leter a or the ...
|
| Image\Mouse Status | 21 Jun 2006 17:11 GMT | 3 |
Is it possible to determine if the image under a mouse changes in VB.net code using API? For example if I position the mouse using the command; Windows.Forms.Cursor.Position = New System.Drawing.Point(680, 595) Is there a procedure that would let me know when the image under the ...
|
| WIN32_FIND_DATA and WIN32_FIND_DATAW | 21 Jun 2006 12:23 GMT | 11 |
Looking at winbase.h, does MAX_PATH have to be 260 in CHAR cFileName[MAX_PATH] for WIN32_FIND_DATA , where VB would use String data type. WCHAR cFileName[MAX_PATH] for WIN32_FIND_DATA , where VB would use Byte data
|
| Setting the BackColor of a Static Window !! | 20 Jun 2006 23:51 GMT | 6 |
I am creating a "Static" Window via the "CreatewindowEX" API and placing it floating over an Excel Worksheet. I am changing some of its Window Styles and it works just fine. Problem : I want to set the Color of its background to Red but I am finding
|
| Beta Testers Needed | 20 Jun 2006 11:13 GMT | 79 |
I am still trying to find additional beta testers for a new version of my hex editor. Testers will receive a free registration in return for providing feedback. More information available at http://www.softcircuits.com/beta/.
|
| Question about CopyMemory | 20 Jun 2006 01:00 GMT | 11 |
I seem to understand that when using CopyMemory with a Long holding a pointer, the pointer has to be passed ByVal: Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal Length As Long)
|
| NetShareSetInfo() + SHARE_INFO_1004 + c# | 16 Jun 2006 19:16 GMT | 7 |
This is a duplicate post (more appropriate place I am thinking) of a post over at gotdotnet that is not illiciting any responses. ------------- Does anyone know if the NetShareSetInfo() API has any known oddities when
|
| Weird DrawTextA!! | 16 Jun 2006 16:07 GMT | 2 |
I've got a lengthy string and I'm drawing it using DrawTextA with the following format options: DT_LEFT + DT_WORDBREAK + DT_WORD_ELLIPSIS + DT_NOCLIP The rect is big enough to display more than 2 lines of text, but the
|
| Get a listview item on another application | 15 Jun 2006 17:08 GMT | 2 |
Hi all.. I need to read texts of a listview on another application (not my exe). Also I need to set/clear checkboxes on that listview. Assume I have the handle.
|
| Registered application | 15 Jun 2006 13:28 GMT | 2 |
Does anyone know how to create an application and register it to windows system? And also, this application process won't show in Task Manager. Does it doable? Of cause, using VB6 to create the application. Thanks in advance.
|
| To Alexander Mueller: RE: Capture non-foreground form [GDI-basics] | 13 Jun 2006 23:34 GMT | 2 |
I don't know why but none of my three replies to your posting on the subject Capture non-foreground form [GDI-basics] does show up in this newsgroup. So I decided to post the reply this way.
|
| Run an existing process | 13 Jun 2006 17:49 GMT | 1 |
I have an application that can create a new specific process(eg. cmd.exe), using shell function, once user press the button. However, can anyone tell me how can I bring out the existing cmd.exe(this application is minimized to taskbar) again when user press the button again?
|
| Get the button caption | 13 Jun 2006 13:07 GMT | 1 |
Hi all.. I would like to get a caption of a command button by providing its hwnd. Please advise TIA
|
| TAB control messages | 13 Jun 2006 12:50 GMT | 1 |
How do I click on a certain tab on a tab control using VB6+API? Assume I have the handle of the tab control :) TIA Guy
|