Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
78% Quality Score
Upvotes Received
6
Posts with Upvotes
6
Upvoting Members
5
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
2 Commented Posts
~159.43K People Reached
Interests
Programming, horses
Favorite Tags
c++ x 130
c x 78
java x 11
c# x 4

87 Posted Topics

Member Avatar for jan1024188

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 …

Member Avatar for sreenivasula
1
110K
Member Avatar for jan1024188

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 …

Member Avatar for sam_25
0
2K
Member Avatar for addicted

here...this always works...I use it [CODE] void clearscreen() { int x = 1; int y = 100; do { printf("\n"); x++; } while( x < y ); } [/CODE]

Member Avatar for Bob
0
2K
Member Avatar for jan1024188

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?

Member Avatar for +_+man
0
393
Member Avatar for jan1024188

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

Member Avatar for seoevans
0
334
Member Avatar for jan1024188

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) ?

Member Avatar for luigi10011
-2
20K
Member Avatar for WoBinator

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

Member Avatar for Zacadx15
0
499
Member Avatar for jan1024188

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 …

0
110
Member Avatar for jan1024188

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 …

Member Avatar for Salem
0
170
Member Avatar for Diode

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(); …

Member Avatar for jephthah
0
9K
Member Avatar for jan1024188

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?

Member Avatar for Aia
0
128
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
111
Member Avatar for jan1024188

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?

Member Avatar for jan1024188
0
152
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
224
Member Avatar for jan1024188

Hello, I d like to know how to call Blue screen of death under Windows Xp/Vista. (link to tutorial appreciated)

Member Avatar for Ancient Dragon
0
178
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
160
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
529
Member Avatar for quintoncoert

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 …

Member Avatar for jan1024188
0
145
Member Avatar for jan1024188

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 …

Member Avatar for John A
0
93
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
163
Member Avatar for ndeniche

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.

Member Avatar for nkhosinathie
1
287
Member Avatar for CRD

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...

Member Avatar for jan1024188
0
167
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
127
Member Avatar for jan1024188

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?

Member Avatar for jan1024188
0
87
Member Avatar for vikter

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, …

Member Avatar for Narue
0
181
Member Avatar for jan1024188
Member Avatar for Ancient Dragon
0
106
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
120
Member Avatar for jan1024188

hello, Can anyone tell me how to get a current path (working directory in linux), using WIN api or iostream. Thanks in advance

Member Avatar for jan1024188
0
90
Member Avatar for jan1024188

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); …

Member Avatar for jan1024188
0
106
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
160
Member Avatar for jan1024188

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 …

Member Avatar for Ancient Dragon
0
119
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
241
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
93
Member Avatar for jan1024188

[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?

Member Avatar for sadatoni
0
95
Member Avatar for FreeFull

Send a signal to export a value from QSpinBox ti Variable. [code]QObject::connect(spinBox_variable, SIGNAL(ValueChanged(int)), variable, SLOT(setvalue(int)));[/code]

Member Avatar for FreeFull
0
146
Member Avatar for jan1024188

How to check in windows Vista if DirectX 10 is installed? Sorry for wrong topic, you can MOVE it if you want.

Member Avatar for jan1024188
0
274
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
201
Member Avatar for jan1024188
Member Avatar for jan1024188
0
86
Member Avatar for viraltaj
Member Avatar for jan1024188
0
160
Member Avatar for ajaxjinx

[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]

Member Avatar for ajaxjinx
0
146
Member Avatar for jan1024188

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 …

Member Avatar for vijayan121
0
299
Member Avatar for jan1024188

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?

Member Avatar for jan1024188
0
120
Member Avatar for satish.paluvai
Member Avatar for 7arouf
Member Avatar for Lance Wassing
0
561
Member Avatar for yaya_star

is this a homework? anyway 2d arrays looks like: [CODE]int my2darray[100][10];[/CODE]

Member Avatar for jan1024188
0
260
Member Avatar for jan1024188

Hello, I wanna know if there is any way to make a window transparent using Win32 API Thanks in advance, Jan

Member Avatar for jan1024188
0
141
Member Avatar for jan1024188

Hello, Id like to know how to merge two files: icon.ico and file.exe thanks in advance, Jan

Member Avatar for jan1024188
1
118
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
116
Member Avatar for jan1024188

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 …

Member Avatar for jan1024188
0
164
Member Avatar for whoknows101

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. …

Member Avatar for jan1024188
0
215

The End.