| Thread | Last Post | Replies |
|
| AlphaBlend | 13 Sep 2007 16:18 GMT | 1 |
AlphaBlend function working well in ATI graphics card system,i am using premultiplied alpha value. but in nVidia card giving ouput same as source apha = 0. any hind?
|
| Writing Api hook | 09 Sep 2007 23:41 GMT | 2 |
may i have some information about hooking the createprocess() function for an executable program.
|
| Close a MdiChild window in Excel | 09 Sep 2007 16:37 GMT | 5 |
With a VB6 application, I would like to close a MdiChild window in Excel without dialog box ("Do you want to save ..."). When the excel application has several MdiChild window, the process will be survive with the other MdiChild window
|
| Enable/disable automatic configuration script ( from registry ? ) | 09 Sep 2007 16:27 GMT | 1 |
In Internet Explorer (I use 6.0 ), there is a check box to enable/ disable automatic configuration script. Is there any way to check / uncheck this option using Win API ( that can be implemented in VB 6.0 ) ?
|
| Help with VB and Windows API | 06 Sep 2007 21:41 GMT | 2 |
Good afternoon. I need some basic help with VB. I haven't really used VB since v6 and now I am using VS 2005 and I see a few things have changed (so please excuse me if I am rusty). I need to call a Windows API (RemoveControlByName - OCCACHE.DLL). So far, I
|
| ram disk | 06 Sep 2007 18:44 GMT | 1 |
Hello,is possible create a ram disk without restart the pc ??? Exists an api for this taks ??? Thanks in advance.
|
| Path specification in VB | 05 Sep 2007 06:20 GMT | 1 |
In VB i want to load a DLL the DLL is present in the current folder Private Declare Function Output Lib "current path" () As Boolean Wat do i use to specify the current path , can anyone help me on this.
|
| Sleep function prevents label visibility | 05 Sep 2007 02:00 GMT | 4 |
I declare a Sleep function as follows Private Declare Sub Sleep Lib "kernel32" (ByVal dwmilliseconds As Long) Sleep (5000) successfully pauses execution for 5 seconds
|
| File CRC | 04 Sep 2007 19:57 GMT | 2 |
When I copy file from corrupted CD I get CRC error, so it means there is somewhere on this CD a CRC of the given file. Where is it? How to read it? Regards,
|
| Determine if titlebar window is flashing | 04 Sep 2007 19:01 GMT | 4 |
anyone know of a way to determine if a window's title bar is flashing? I can get a list of window handles with EnumWindows, get the caption with GetWindowText, but I want to know if a window is flashing like if set with FlashWindow.
|
| Any idea how to get this API to work? | 04 Sep 2007 18:30 GMT | 2 |
Private Declare Function AccessibleChildren Lib "oleacc" (ByVal paccContainer As IAccessible, _ ByVal iChildStart As Integer, _ ByVal cChildren As Integer, _
|
| Colorize 24-bit BMP Graphic? | 03 Sep 2007 23:41 GMT | 14 |
I'm looking for code samples how to colorize 24-bit BMP graphics in a picture box. Below is some code I'm trying which actually works as long as the source/dest picture boxes are 26x401 pixels and I add +3 to .biWidth &
|
| Bad Dll calling convention | 03 Sep 2007 14:55 GMT | 2 |
i have developed a DLL in vc++ the prototype is extern "C" __declspec (dllexport) BOOL Output(INT ) And i am using that in DLL Private Declare Function Output Lib "\path" (ByVal i As Long) As Boolean
|