| Thread | Last Post | Replies |
|
| Help declaring wzcdlg.dll FlashConfigCreateNetwork | 04 May 2005 21:43 GMT | 18 |
I am having a problem finding any documentation on the variable names when declaring wzcdlg.dll on Windows XPSP2. This is for Wireless Zero Config. Obviously this is what i have so far: Private Declare Function FlashConfigCreateNetwork Lib "wzcdlg.dll"
|
| WIN API example in C++ | 04 May 2005 21:40 GMT | 20 |
Can anyone give me an example on how to use OSRegOpenKey, OSRegQueryValueEx etc in C++ Everything I find is to do with VB. Thanks in advance
|
| how to extract picture from ImageList? | 04 May 2005 19:47 GMT | 2 |
I found a nice demo source code containing an ImageList (vers. 6.0) control and wanted to save its pictures externaly using some code like this: For I=1 to ImageList1.ListImages.Count PictureBox.Picture=ImageList1.ListImages(I).Picture
|
| Playing multiple sound streams? | 04 May 2005 15:16 GMT | 4 |
Without going into all the DirectX stuff is there a way to play more than one sound file at once? I believe sndPlaySound API only allows 1 and if you let it play another the previous sound will get cut off.
|
| EZVidcap | 04 May 2005 14:49 GMT | 1 |
Can i use the eZVidcap for frame capturing from a video file? Thx in advance Dennis
|
| BMP from file to printer | 04 May 2005 11:05 GMT | 1 |
is there a way to send a picture in a file (mypicture.bmp) directly to the printer without loadpicture it into a picturebox and then paintpicture it ?
|
| Determining Win XP vs. Classic styles | 03 May 2005 19:03 GMT | 22 |
How do I make a call to Windows in VB6 to determine whether the computer running a VB app. is using Windows XP style or Windows Classic style?
|
| SelectObject | 03 May 2005 17:56 GMT | 5 |
The help for SelectObject states: 'This function returns the previously selected object of the specified type. An application should always replace a new object with the original, default object after it has finished drawing with the new object."
|
| WS_EX_LAYOUTRTL | 03 May 2005 13:15 GMT | 6 |
How can I tell if the current system support mirroring of controls ? Currently I have something like: if (win98se or winme or win2k or winxp or win2003) then rtl_support = true
|
| Threads - sharing data between them | 03 May 2005 10:06 GMT | 6 |
Hmmm how best to explain this. It's an ActiveX EXE and I have more than 1 thread. I want a background thread to modify some data held within a user type structure.
|
| Create a service from vb.net | 03 May 2005 01:18 GMT | 1 |
declare function OpenSCManager & CreateService in "advapi32.dll" Ohandle = OpenSCManager(... SHandle = CreateService(... error = GetLasError( )
|
| ReleaseDC | 02 May 2005 19:32 GMT | 4 |
Could someone please explain this API in laymens terms. I've seen it in code and even after looking in the help files, I'm not sure I understand it's function.
|
| - How to save target as.. in IE6? | 02 May 2005 18:14 GMT | 5 |
Is there a way to execute "Save Target as" within IE object? For instance, I have a link that looks like this: https://www.whatever.com/viewfiles.jsp?fileid=999&name=FILE+NAME+.TIF and I need to download this file to a specific folder with a new file name:
|
| Create a Service from VB.Net code? | 02 May 2005 15:56 GMT | 1 |
Code: declare function OpenSCManager & CreateService in "advapi32.dll" handle = OpenSCManager(... handel = CreateService(..
|
| ListView show last entry? | 01 May 2005 19:12 GMT | 2 |
Hi people, I forgot what is the constant one needs to send to the ListView hwnd in order to get it to show the last added entry (which will be at the bottom)?
|