| Thread | Last Post | Replies |
|
| Read text from AfxFrameOrView class | 25 Mar 2005 05:00 GMT | 1 |
I'm trying to capture text from another application that is using a AfxFrameOrView. It seems like I've tried everything (sending a WM_GETTEXT message, GetWindowText), but it appears the API functions only work on windows with a class of 'Edit'. Is it possible to do?
|
| newbie ques re: byval param | 24 Mar 2005 22:04 GMT | 59 |
according to apiviewer Declaration: Declare Function SearchTreeForFile Lib "imagehlp" (ByVal RootPath As String, ByVal InputPathName As String, ByVal OutputPathBuffer As String) As Long
|
| DDB vs. DIB | 24 Mar 2005 21:28 GMT | 2 |
I'm not sure what I'm doing here. If someone gets bored, can you please look at the following code and tell me if I'm suing DDBs or DIBs? A lot of this code comes from Mike Sutton (such as CopyBitmap) m_lBitMapPANSRCDC = CreateCompatibleDC(0&)
|
| CommandButton Borders | 24 Mar 2005 19:10 GMT | 6 |
Hi, is there a way to change the appearance of the borders around command buttons?, I want to make the button have flat border and a different color than default. And also if possible, that the button changes color when the mouse
|
| getting screen coordinates from nested controls | 24 Mar 2005 16:23 GMT | 2 |
I need a way to find out the absolute screen coordinates of a control, f.e. a picture box which is placed in user control and this itself may also placed in another user control and so on. Getting the screen coordinates of a form's control only is not the issue. The problem is ...
|
| How to add/remove local users on a remote machine | 24 Mar 2005 10:38 GMT | 3 |
I have a class with a couple of functions, one for adding a local user on a remote machine, and one for removing a local user on a remote machine. I need to be able to do this. Each takes the name of the remote machine, a username (remote machine administrator), a matching password, ...
|
| Any way to get the command line info for another process ? Help! | 24 Mar 2005 10:31 GMT | 2 |
Hi, I need to know the command line (startup info) for the other processes (not the current process). I've tried the Tool Help functions (API), Process & Thread functions, WMI (the W32_process.CommandLine property only works under WinXP/Windows 2003),
|
| Share string between applications | 23 Mar 2005 21:58 GMT | 16 |
I'm using VBA and have to create some string from one VBA program, and find that string from another VBA program. Vba program can be Access, Excel or Word. I need a simle decision. I hope that exists easy way to create in winAPI some shareble area from one appliacation and ...
|
| Navigate Internet Explorer usnig API | 23 Mar 2005 21:52 GMT | 2 |
I used the sendMessage function to change the url of internet Explorer to www.yahoo.com and here what I did : 'SendMessage(hWnd, WM_SETTEXT, 0, "http://www.yahoo.com/") but I face this problem that the internet explorer did not start navigate to
|
| how2show different fonts in a listbox? | 23 Mar 2005 21:46 GMT | 3 |
I want to fill a list box showing the fontnames written in their specific font but I can't find an example for this. Does anyone know one?
|
| GetFreeResources | 23 Mar 2005 20:55 GMT | 5 |
I need to measure the free memory, so I tried Declare Function GetFreeResources Lib "RSRC32" _ Alias "_MyGetFreeSystemResources32@4" _ (ByVal lWhat As Long) As Long
|
| Splash screen decay effect | 23 Mar 2005 17:51 GMT | 8 |
Instead of having my full-screen splash screen simply be instantly replaced by the app's first working form when User clicks a Begin button, I would like to have the splash screen decay over the course of a second or so to gradually reveal the application's working form beneath ...
|
| Get/WritePrivateProfileString on another computer? | 23 Mar 2005 17:19 GMT | 5 |
I use WritePrivateProfileString and GetPrivateProfileString to maintain .INI files from my VB6 program. No problems. I would like to do this and have the .INI file physically located on another computer on the LAN. For example:
|
| Writing to the Event log question... | 23 Mar 2005 16:42 GMT | 1 |
I am writing an application where I want to write events to the Event Log based on certain event. All that is working great. Here's what's not. I am using the ReportEvent from the "advapi32.dll". In this
|
| FTP in Visual Basic | 23 Mar 2005 16:24 GMT | 2 |
Every Week I run a program that creates a text file. Then I use CuteFTP to send this file to a clients FTP site. I would like to automate this. Can someone direct me? Is there something in the WINAPI that I can call like: FTPSend (InputFile, OutputSite)
|