715 Topics
![]() | |
Hello!! I thought I would try and post a problem I have been unable to solve as of yet, though I imagine is easy for experts ;oP I am trying to play around with the mouse functions of Windows, attempting to create a sort of mouse free environment that uses … | |
Does anybody know where i can find ideas for small apps/utilities that i can code? I'm sorry to say, but it seems I've run out of creative juice when it comes to coming up with ideas. Here's a little background about what I can do: I use C#.NET and I … | |
Hi all I am assigned a task which is to port a windows project into linux. I am relatively new to the porting concept. However I find this as interesting. But to my wonder I don’t see much discussion or help on porting at web and forums. Usually people try … | |
Hi all I'm experimenting with win API gui stuff, and I've run into a problem with dialog boxes. Currently, when the "Show DialogBox" option in the menu is pressed, the dialog box pops up. I then need for this dialog box to be draggable/moveable, and to "hide" when its close … | |
Hi a have a problem. [code=cpp] //BUTTON CONTROLS - Copyright © 2000,2005 Ken Fitlike //============================================================================= //API functions used: CreateWindowEx,DefWindowProc,DispatchMessage,GetMessage, //GetSystemMetrics,LoadImage,MessageBox,PostQuitMessage,RegisterClassEx, //SendMessage,ShowWindow,UpdateWindow,TranslateMessage,WinMain. //============================================================================= //This demonstrates the creation of the following button types: default push //button,push button,check box,radio button and groupbox. The image style of //'bitmap' buttons (BS_BITMAP) and 'icon' buttons (BS_ICON) … | |
The question frequently comes up on how to manipulate dates and time using Delphi. Delphi 2.0 and later supply the [B]TDateTime[/B] format, which is actually a floating point number (stored as a IEEE double) containing the number of days that have passed since 12 December 1899. (Delphi 1.0 calculated the … | |
Hey there, I have been working with some functions from windows API and now I need to find similar set of functions for Linux. Actually I need functions for Linux that will pretty much do the same or similar thing. I have been searching on google trying "Linux API" , … | |
Hi all, I'm going to learn a new subject on C++. Working with Windows API. Since I work with Java there is no API used, but I feel it is better to work a little with APIs. Here is my attempt for that. I want to read the system time … | |
Hi all, I've create a window using CreateWindowEx windows API and do some work on it. Thats fine. But for the safer operation at the end of all the processing I want to close/destroy the window. I've try this, [CODE] BOOL clsWin = DestroyWindow(m_hwnd_RTFBox); if(clsWin != 0) { printf("SS"); } … | |
Hi. Hi My program takes the user input of the location where the directory need to be created. I found Windows API: CreateDirectory() but then for Linux i need to write some other function. Is their any function which can work for both operating systems. Kindly help | |
Hi all I am assigned a task which is to port a windows project into linux. I am relatively new to the porting concept. However I find this as interesting. But to my wonder I don’t see much discussion or help on porting at web and forums. Usually people try … | |
Hi, I am looking to upgrade (rewrite) some legacy C programs, and would really appreciate some helpful suggestions on the route to take. i.e. Should it be C++, or C# or .Net or something else? Background ========= Programs: (a) These are MS C v6 utilizing CODEBASE to read Btrieve files … | |
Gang, I am so confused by all the descriptions of different Visual C++ stuff, API, MFC, I don't even know how to tell you what I am trying to use - other than: I created a Windows Form Application using Visual C++ 2005 Express Edition. I have a textBox1 which … | |
Hi all, i'd like to ask anyone here who may help me solve this problem i compiled an apps which records when is the last time user make an input, either with keyboard or moving mouse, thru' GetLastInputInfo API however, this can't works whenever user logged on as different using … | |
I'm learning to program C++ in Windows. I would like to have the user enter float variables into a program. In writing console programs this is extremely simple using "cin>>" or "sscanf". When writing a windows application, these techniques cant be used. Is there a Win32 API function that handles … | |
I'm getting DNS error and am unable to access some websites then lose my internet connection altogether. I saw a post elsewhere instructing to look at host files in HJT. Please see below. Can I 'fix' all of these? I did flush my dns, but it's too soon to tell … | |
This post is copied from another member :[B]mohanavv[/B] ; with his prior permission. Hi! We have a network of about 55-60 computers (netware & NT) running XP and Win2000 workstations. We have about 5 network printers and copiers to which a computer can print. What I'd like to do is … | |
This post is copied from another member :[B]mohanavv[/B] ; with his prior permission. Hi! We have a network of about 55-60 computers (netware & NT) running XP and Win2000 workstations. We have about 5 network printers and copiers to which a computer can print. What I'd like to do is … | |
Hi! pls very Urgent I have a network of about 55 computers (netware & NT) all running Win98, XP and W2000 workstations. We have about 5 network printers and copiers to which a computer can print. What I'd like to do is build, if possible, a simple VB program to … | |
I need the comctl32.lib library for some stuff I'm doing in the windows api, but I don't want to download the SDK from Microsoft because it's to big. Where else can I get it? | |
I'm working on a simple program. It will compile,but whenever I press the delete button a message pops up and says it needs to close. I looked at the error details and It's error code was 0xc0000005. This is where I think the problem is: [CODE] for(i= 0; i < … | |
I have a list view and I'm trying to get all of the text out of it. This is my code so far: [CODE] for(i= 0; i < NumOfItems; i++) { char *text = new char[256]; char *text2 = new char[256]; // mask ListView_GetItemText(hWndListView, 0, 0, text, 256); ListView_GetItemText(hWndListView, 0, … | |
Could someone explain how to use a list view in the windows api (Like when your in windows explorer in details view). I read an article about it and searched google, but I'm still not sure how to use it could someone explain it to me. I want a simple … | |
I want to hide the caret in the RichTextBox control and do that with the win api function HideCaret(),but it doesn't work.The cursor is still visible and blinking.Where i should call the function.I tried in the Enter event of the control but doesn't work again.As far as i know i … | |
HI Guys! is there anybody who knows how to formatting,and copying files in vb. Does it need you to use windows API? if so which windows API do i use. Pse help me!~ | |
How can I make this print the text in the edit box when you push the button instead of "You pushed a button." I have looked all over but I can't figure it out. [CODE] #include <windows.h> #include "resource.h" HWND hWndButton; HWND hWndEditBox; HFONT hFont; /* Declare Windows procedure */ … | |
I have a single line text box, that is wide enough to hold 20 characters and I was wondering how do I make it so that you can keep typing even though it's got 20 characters in it without making it longer and without a vertical scrollbar? I'm sure it's … | |
I have a simple program with a button and an entry field, and I'm wondering how can I organize them (like they were in a table) so that they don't overlap? I'm using the windows api. I tried searching but I'm not sure what to call this. | |
I was wondering if anyone knows a good C++ Win32 API Tutorial for someone who knows nothing about gui programming or the windows API. | |
Hey, I want to write a function with the following signature - BOOL checkPassword( char * input ); In this function I want to be able to check this password against the stored windows password in the SAM database. I'm completely new to this idea, so I would like to … | |
I have created a simple DLL in C that in which contains a function to implement a Low-Level Mouse Hook to Clip the Cursor to a window. I have done this because I feel the ClipCursor() API is inadequate. Anyway.. the DLL header file contains the following code.. [code=c] #include … | |
I am currently looking at developing a bluetooth application with delphi. I do not know where to begin and i do not want to spend money on third party components. all i would like to do is broadcast pictures and text to bluetooth devices in the imediate range. Ihave been … | |
Norton has alerted me quite a few times now about "pqvpwbqa.dll". It cannot be repaired, so it has been blocked from usage. Anybody have any idea what is going on here? Logfile of Trend Micro HijackThis v2.0.2 Scan saved at 13:51:41, on 2.8.2007 Platform: Windows XP SP2 (WinNT 5.01.2600) MSIE: … | |
Anybody with good understand on this componets. I just know them shallow.anybody to enlight me? With Regards | |
I am also having troubles with this pest. Hijackhis log: Logfile of HijackThis v1.99.1 Scan saved at 1:21:11, on 24.7.2007 Platform: Windows XP SP2 (WinNT 5.01.2600) MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180) Running processes: C:\WINDOWS\System32\smss.exe C:\WINDOWS\system32\winlogon.exe C:\WINDOWS\system32\services.exe C:\WINDOWS\system32\lsass.exe C:\WINDOWS\system32\Ati2evxx.exe C:\WINDOWS\system32\svchost.exe C:\Program Files\Windows Defender\MsMpEng.exe C:\WINDOWS\System32\svchost.exe C:\WINDOWS\system32\Ati2evxx.exe C:\WINDOWS\system32\spoolsv.exe C:\WINDOWS\Explorer.EXE C:\Program Files\Java\jre1.5.0_09\bin\jusched.exe C:\Program … | |
WebClient wbcRingtone = new WebClient(); // Add a user agent header in case the requested URI contains a query. // [URL]http://www.hanusoftware.com[/URL] wbcRingtone.Headers.Add("user-agent","Mozilla/4.0(compatible;MSIE 6.0;Windows NT 5.2; .NET CLR 1.0.3705;)"); wbcRingtone.QueryString.Add("user","xxxxxxxx"); wbcRingtone.QueryString.Add("password","xxxxxxxx"); wbcRingtone.QueryString.Add("api_id", "xxxxxxxxxx"); //wbcRingtone.QueryString.Add("msg_type", "SMS_NOKIA_RTTL"); wbcRingtone.QueryString.Add("to", cellNo); ////wbcRingtone.QueryString.Add("text", "Flintstone:d=4,o=5,b=200:g#,c#,8p,c#6,8a#,g#,c#,8p,g#,8f#,8f,8f,8f#,8g#,c#,d#,2f,2p,g#,c#,8p,c#6,8a#,g#,c#,8p,g#,8f#,8f,8f,8f#,8g#,c#,d#,2c#"); wbcRingtone.QueryString.Add("from", "xxxxxxxxx"); wbcRingtone.QueryString.Add("mms_subject", "xxxxxxxxx"); wbcRingtone.QueryString.Add("mms_class", "xxxxxx"); wbcRingtone.QueryString.Add("mms_expire", "xxxxxxx"); wbcRingtone.QueryString.Add("mms_from", "xxxxxxxxx"); wbcRingtone.QueryString.Add("mms_url", "http://www.some.com/folder/mms.mms"); … | |
hello ! this is first time i post as member and pc user, of course......... i keep getting "Generic Host Process for Win32 Services ERROR" from time to time, which i believe will interupt the connection with internet. i dont know either virus, spyware or system error, but i see … | |
[COLOR=#000000]CALLING NUMBERS IN VB6 using wav file +APIs[/COLOR] [COLOR=#000000] [/COLOR] [COLOR=#000000]The following APIs were used in an application developed in VB5 and compiled in Win98 to read out call numbers from a doctor’s console to patients waiting at the doctor's reception[/COLOR] [COLOR=#000000] [/COLOR] [COLOR=#000000]Public Declare Function mciSendStringA Lib "WinMM" _[/COLOR] … | |
Hello everyone ! :) 2 days ago, i had viruses and i tried to eliminate the maximum of them. I used Spybot and also Hijackthis. But i had the idea of reinstalling Xp and delete all the hard disk and everything in order to erase the viruses and start from … | |
any good tutorials for windows api? online or books | |
Hello About half year ago I was interested in Direct3D 9/10 programming, but I released that DX isnt for me. Im not really interested into a game development. I know C/C++ basics, some Win32 API and some QT4 basics. Now, I'd like to try OpenGL. I am looking for a … | |
I'm not a programmer but I desperatly need help with the following please... it was written by someone but never tested, and contains some small mistakes that I can't solve. The person is not available anymore, so here my plea for help. I have a mailmessage looking like this: [URL]http://www.criens.nl/lambada/sailmailmessage.txt[/URL] … | |
I currently have to set up the ODBC configuration using Control Panel/ Administrative Tools/Data Sources (ODBC)/User DSN etc in Windows 2000. This means that when I distribute the application I will have to get other users to go into Control Panel, and configure the ODBC and set the DSN for … | |
I was wondering if it is possible (by this I mean, with a 'premade' c++ api function) to logon to a windows account (if there is I assume you must know the password) I use bloodshed, not vc++. | |
Hello again, I was working on Linux platform for a lot of time now and now I am moving to windows (because of job). Today I was accepted to wow project, and I have to start with developing apps for windows. I have a doubt. I dont know what to … | |
What do you think is better for making applications? I like QT API verry much, but I dont know how compatible is with a system . I dont like VC++ because I can only use it on windows. Please help me to decide.. What do you think? | |
hi, i need your help..........may i have a copy of java comm API for windows. i need it urgently bcoz i nead to read rs232 and transfer the data. tq. please reply as soon as possible. | |
I suppose you know how to import Win32 API functions into C#. Like this : [code]BOOL ExitWindowsEx(UINT uFlags, DWORD dwReason); // Original Win32 function [DllImport("User32.dll")] public static extern bool ExitWindowsEx(uint uFlags, uint dwReason); // How to import into C#[/code] I want to import SetSuspendState() function, but don't know what DLL … | |
I've been banging my head for a bit now trying to figure out why this isn't encrypting properly. Unfortunately, there are not a lot of resources out there for using wincrypt.h. I prefer to use the windows api's over having to use some external library to do the same task. … | |
Hello.. How do I get smart pointer from pointer address? For instance: [code]class someclass { public: char test; }; typedef boost::shared_ptr<someclass> someclass_p; //smart pointer int main() { someclass_p testp = someclass_p( new someclass() ); ULONG_PTR uptr = (ULONG_PTR)testp.get(); //so I have pointer address here //How do I get testp from … |
The End.