- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 6
- Posts with Upvotes
- 6
- Upvoting Members
- 5
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
- Interests
- Programming, horses
87 Posted Topics
Most common quiestion is: [quote]Is there any C++ GUI API?[/quote] My answer is MANY. There are many API's for making GUI applications. Here are some. [B] 1. WinAPI: (C based)(MFC is C++ based)[/B] [I]Its a great API and the best solution if you are windows programmer. First code will look … | |
Hello, I am looking for a good .NET licensing system, which would be extremely easy to use and integrate (automatic integration into the program). It should be safe (not easy to hack/crack), and verify the license each time user opens a program (connect to the license server and see if … | |
Re: here...this always works...I use it [CODE] void clearscreen() { int x = 1; int y = 100; do { printf("\n"); x++; } while( x < y ); } [/CODE] | |
I have a problem....I wrote program which makes computer beep, but there is no beep when executing a program. I included [B]windows.h[/B] header, defined [B]speed[/B] and wrote following line [CODE]Beep(2750, speed);[/CODE] Why there is no beep? | |
Hello guys, I am wondering how to promote business online. Ive tried adwords, and it didnt work for me. Are there any websites where you can get efficiently promoted? Jan | |
I want to know how to write a program that moves for example C:\ex.exe to D:\ex.exe.... What header to use? stdio.h? what function to use? Can i get a link of source(this program) ? | |
Re: it is much easyer to understand c++ if you know c.... C++ isnt difficult...some people think (like me) that c++ is easyer to learn than c | |
Hello, Lets say I want to access a website using httpwebrequest, and I do want to fill some form on it. Its HTML based form. What I want to do, is insert some text in element by ID "Email" and than invoke member "submit" from elementID "subscribe". Is it possible … | |
Hello guys, I have 2 questions.... 1. I don't know what format is the best for saving screenshots in. I have tried .BMP, its good quality, but 5MB per screenshot is just not acceptable. I have tried .JPG, but quality is too low. TGA is crap (you need apple quicktime … | |
Re: this works in windows what about linux [CODE]#include <stdio.h> #include <unistd.h> int main() { puts("using winAPI Beep(frequency_hrz, duration_ms)..."); Beep(523,500); /* 523 hertz (C5) for 500 milliseconds*/ Beep(587,500); Beep(659,500); Beep(698,500); Beep(784,500); usleep(500); // 500 ms delay puts("\n\\a makes a beep on the internal speaker too ..."); usleep(500); puts("\a"); usleep(500); puts("\a"); getchar(); … | |
Hello, I want to make a message box which would show me how many points have I earned. So I have: [CODE]unsigned int points; //code points++; MessageBox(hwnd, "You have bla bla", "Total points /*HERE I WANT TO DISPLAY CONTENTS OF points VARIABLE*/, MB_OK);[/CODE] Is possible to do that? | |
Hello, I have a few questions about C#: 1. How to make the C# application quit? Like [CODE]PostQuitMessage(0); [/CODE]in winapi. 2. Is possible to use same commands in C# like these in C++ [CODE]PlaySound(); ShellExecute();[/CODE] Thanks in advance (have to know some C# basics because the project I work on … | |
Hello, I have a server and client file. In Client I have [CODE]WSADATA WsaData; SOCKET Socket; [/CODE] In server I have [CODE]WSADATA xxx; SOCKET yyy; [/CODE] This is same in both files: [CODE]sock_addr.sin_port = htons(1234);[/CODE] Will this connection be established? | |
Im not sure this is right forum so please move topic if necessary. I want the best cms blog. I dont care if is not free (like vbulletin). Blog must have forum, portal, full module support... This would be appreciated: -video module -audio module -forum (phpbb, vbulletin or invision power … | |
Hello, I d like to know how to call Blue screen of death under Windows Xp/Vista. (link to tutorial appreciated) | |
Hello, I edited a source code I found on a net and now it compiles well. I get a linker error. [CODE]1>Linking... 1>MSVCRT.lib(crtexe.obj) : error LNK2001: unresolved external symbol _main 1>C:\Users\jan\Documents\Visual Studio 2005\Projects\YAST server console\Release\YAST server console.exe : fatal error LNK1120: 1 unresolved externals 1>Build log was saved at "file://c:\Users\jan\Documents\Visual … | |
Hello, I have made a "server" using winsocket. Its a console application and I already added wsock32.lib to liker. Here is error I get (by linker) [CODE]1>Linking... 1>server.obj : error LNK2019: unresolved external symbol __imp__mciSendStringA@16 referenced in function _main 1>server.obj : error LNK2019: unresolved external symbol _WSACleanup@0 referenced in function … | |
Re: I also wanted to create a simple 3d games, but I changed my mind very fast. 1.For making games with DX or OpenGL you MUST know WinAPI and C/C++ DirectX 9 and 10 are very difficult to learn, but powerfull. OpenGL is a bit easyer and recommended for newbies, but … | |
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 … | |
Hello I found a code on net, and I wanna use some parts of it in my program. But when I run Linker I get this: [CODE]1>Linking... 1>main.obj : error LNK2019: unresolved external symbol __imp__PlaySoundA@12 referenced in function "unsigned long __stdcall threadplaysnd(void *)" (?threadplaysnd@@YGKPAX@Z) 1>C:\Users\jan\Documents\Visual Studio 2005\Projects\avdiojan\Debug\avdiojan.exe : fatal error … | |
Re: yes, I agree with you. Id like to say "thanks" to anyone who gave me advice what to do, link to tutorial, peace of code, etc. I agree, that you should NOT write the full codes, because on that way people wont learn anything. | |
Re: I have Visual Studio 2005, and is really easy to make a resource files (icons, dialogs, menus, version, bitmaps...etc.) resource.h is generated automatically... | |
hello, I saw option of MFC project in VS2005 and I d like to know what MFC is, and what can we do with MFC. I presume MFC is C++ based, but does it need any framework? And whats the difference betwen Winapi and MFC? What can you actually do … | |
Hello, So, dear hardware-software gurus. Will be ever possible to install and run a DX10 games on graphic cards like Geforce 7900 GTS 512 MB? | |
Re: My answer is MANY. There are many API's for making GUI applications. 1. WinAPI: [I]Its a great API and the best solution if you are windows programmer. First code will look a bit difficult, but later (after making few apps.) you will see its not so rusty. I like it, … | |
How to check if file is in a working directory in WinAPI? | |
Hello, 1.Id like to know how to create a link, for example in DialogBox. Id like to see a link to my website on about me selection, and when user would click on it, my website would open. 2. I made an bitmap, but now I dont know how to … | |
hello, Can anyone tell me how to get a current path (working directory in linux), using WIN api or iostream. Thanks in advance | |
Hello, I have a problem with my Win32 app. I made a window, and than a Dialog boxes. For window I use one message loop, and for Dialog boxes another. But It seems this wont work: [CODE]while(GetMessage(&Msg, NULL, 0, 0) > 0) { if(!IsDialogMessage(g_hToolbar, &Msg)) { TranslateMessage(&Msg); DispatchMessage(&Msg); } TranslateMessage(&Msg); … | |
Hello, I made a small app and I wanted to include DialogBox Here is a code: [code]#include <windows.h> #include "resource.h" const char g_szclassName[] = "myWindowClass"; BOOL CALLBACK WelcomeDDlgProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) { switch(Message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: switch(LOWORD(wParam)) { case IDD_WELCOMED: { int … | |
Hello For example I have a winapi GUI program called blabla.exe I have another winapi GUI program called TYCK.exe. Now how to make blabla.exe run in TYCK.exe?? I was using[CODE]system("blabla.exe");[/CODE], but this is not portable and it goes through cms, what I dont realy like. Is there any other way … | |
I use Visual Studio 2005, and when I build to debug it compiles fine (with only two warnings). When I buid to realise I get this: [code]------ Build started: Project: TYCK, Configuration: Release Win32 ------ Compiling... main.cpp .\main.cpp(19) : warning C4244: 'initializing' : conversion from 'INT_PTR' to 'int', possible loss … | |
I realised I cannot run Win32 programs compiled with Visual Studio 2005 on any other computer. When I try running my programs on a computer where no VS2005 is installed I get an error: [CODE] This application has failed to start because the application configuration is incorrect. Reinstalling the application … | |
[I]<< moved from [URL="http://www.daniweb.com/techtalkforums/thread74129.html"]here[/URL] >>[/I] I was checking for beta drivers and I found this: [URL]http://www.nzone.com/object/nzone_downloads_rel70betadriver.html[/URL] I am gonna buy a laptop with nvidia go 7900 gtx, but It doesnt have vista drivers. Do you think this beta drivers will work? | |
Re: Send a signal to export a value from QSpinBox ti Variable. [code]QObject::connect(spinBox_variable, SIGNAL(ValueChanged(int)), variable, SLOT(setvalue(int)));[/code] | |
How to check in windows Vista if DirectX 10 is installed? Sorry for wrong topic, you can MOVE it if you want. | |
Hello, If this isnt a right topic please move this thread. I finaly got $2500 and I decided to buy laptop. I am looking at this toshiba(P100-S9762): [url]http://www.toshibadirect.com/td/b2c/pdet.to?seg=HHO&poid=365656[/url] I heard a lot about some crappy batteries which dont work after a year of usage. If enyone knows if this laptop … | |
Re: Is this a question about something? And where is the url? | |
Re: [quote=iamthwee;341199]>WHAT IS NCURSES?????? What is google?[/quote] loooooooooooooooooooooooool [URL]http://www.google.com/search?q=what+is+google&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a[/URL] Here is a tutorial for you ajax... [URL]http://www.linux.com/howtos/NCURSES-Programming-HOWTO/intro.shtml#WHATIS[/URL] | |
I have compiled a project using Visual Studio in Vista ultimate. On my computer the application works fine, but on the computer where XP is installed I get the error like "Progam configuration is wrong". Do I have to compile my WIN API project in XP to be runned on … | |
hello, I am using Visual Studio 2005. When I write come C++ code (using iostream header) I get this error when compiling c:\users\jan\documents\visual studio 2005\projects\lesso\lesso\main.cpp(1) : fatal error C1083: Cannot open include file: 'ioestream': No such file or directory What should I do? | |
Re: use [code]getchar(); or cin.get();[/code] instead of system("pause"); | |
Re: is this a homework? anyway 2d arrays looks like: [CODE]int my2darray[100][10];[/CODE] | |
Hello, I wanna know if there is any way to make a window transparent using Win32 API Thanks in advance, Jan | |
Hello, Id like to know how to merge two files: icon.ico and file.exe thanks in advance, Jan | |
I have this code (example) [CODE] const char g_sz_className[] = "myWindowClass"; LRESULT CALLBACK WndProc(HWND hwnd, UNIT msg,WPARAM wParam, LPARAM lPraram) { switch(msg) { case WM_CLOSE: DestroyWindow(hwnd); break; case WM_DESTROY: PostQuitMessage; break; default: return DefWindowProc(hwnd, msg, wParam, lParam); } return 0; } int WINAPI WinMain(HISTANCE hIstance, HISTANCE hPrevIstance, LPSTR lpCmdLine, int … | |
Hello, I have just installed Microsoft Visual Studio 2005 and it has the folowing to select, under C++ projects selection: ATL; CLR, MFC and Win32. Now Id like to know what are ATL, CLR and MFC and what is each of them used for, Anyway does anyone know when will … | |
Re: That all depends on C++ GUI API you select. I know QT4 API, which is great for begginers and codelles API. Affcourse you will need some good sources(books, tutorials), and time. Second API I know about is WINAPI. Its true. The simplest window cration needs about 40 lines of code. … |
The End.