Forum: C++ Dec 19th, 2007 |
| Replies: 3 Views: 618 Re: displaying vc++ program on a web browser hi Ancient Dragon,
I don't understand your reply. what is PM, and why will it be ignored?
andjust so you know, this is not homework, this is just plain work, and I can really use some help. |
Forum: C++ Dec 19th, 2007 |
| Replies: 10 Views: 2,239 |
Forum: C++ Dec 19th, 2007 |
| Replies: 10 Views: 2,239 |
Forum: C++ Dec 19th, 2007 |
| Replies: 4 Views: 417 |
Forum: C++ Dec 19th, 2007 |
| Replies: 3 Views: 618 displaying vc++ program on a web browser hi,
I created a GUI using vc++ (without mfc). now I am told it needs to be used through a web browser, but I don't know how to do it. I have been told that one solution is turning it into an activeX... |
Forum: C++ Apr 26th, 2007 |
| Replies: 3 Views: 1,125 |
Forum: C++ Apr 25th, 2007 |
| Replies: 3 Views: 1,125 displaying pictures on a dialog box hi!
In a GUI I'm making, I'm using a dialogbox, and I want the user to have an option to load a picture from file, and to see it on the dialog box. but here is where I need help. how can I display a... |
Forum: C++ Apr 19th, 2007 |
| Replies: 3 Views: 936 Re: handling window in a window, vc++ thank you. I'll check It out. although I still can't figure out why it behaves the way it does. maybe if someone tried to execute this program, and explain to me what's going on. |
Forum: Legacy and Other Languages Apr 19th, 2007 |
| Replies: 2 Views: 1,696 Re: Need Help In prolog Language I havn't used it for a while, but maybe something like this?
compare(A,B,[A|[B|_]).
compare(A,B,[A|[_|T]):-compare(A,B,[A|T]).
compare(A,B,[_|T]):-compare(A,B,T). |
Forum: C++ Apr 19th, 2007 |
| Replies: 3 Views: 936 handling window in a window, vc++ hi!
I wrote this code that test multiple windows. I actually need this for another program, but I'm trying to figure out how creating windows work. so in this code I created two windows, and in one... |
Forum: C++ Mar 8th, 2007 |
| Replies: 5 Views: 1,758 Re: chinese ascii I'm using TCHAR, I need to write a chinese word on a button. It doesn't work by simply entering them. |
Forum: C++ Mar 8th, 2007 |
| Replies: 5 Views: 1,758 chinese ascii I am trying to use chinese letters in a c++ program I'm writing. does anyone know how this can be done?
I know that: TEXT("\u03a3") will print out a latin letter, so how do I get a chinese character,... |
Forum: C++ Jan 18th, 2007 |
| Replies: 2 Views: 737 vc++ help!! Hi all!
Can anyone tell me where can I find a source that will help me learn visual c++ win32, without com and mfc, just pure basic, visual c++?
I already programmed different programs, but I am... |
Forum: C# Jan 11th, 2007 |
| Replies: 3 Views: 2,772 combobox & dataset SOS!!! hey people!!
how are you all? I need some help here:
1) is there any way easyer to do this:
DataSet DS = new DataSet();
foreach (DataTable t in DS.Tables)
foreach (DataRow r in t.Rows)
foreach... |
Forum: Community Introductions Jan 11th, 2007 |
| Replies: 1 Views: 442 Hi! :) Hi guys!
I have been registered for a couple of weeks now, but I only now I found time to look around. so I decided to say hi, and to use this opportunity to say what lovely people there are here,... |
Forum: IT Professionals' Lounge Jan 11th, 2007 |
| Replies: 3 Views: 2,484 |
Forum: Posting Games Jan 11th, 2007 |
| Replies: 7,560 Views: 465,034 |
Forum: IT Professionals' Lounge Jan 11th, 2007 |
| Replies: 3 Views: 2,484 how do I create a setup wizard? Hi,
I don't know if this is the right forum, so if I'm worng please redirect me. I would like to create a setup wizard and I have no idea how to do that, or what do I need for that.
thanks,
gabs |
Forum: C Jan 11th, 2007 |
| Replies: 11 Views: 1,899 Re: Question about Standard C Library. how about trying the msdn website? you might not get the source code, but you can find about every function what are it's possible parameters, what values it returns, and many times it even shows... |
Forum: C++ Jan 8th, 2007 |
| Replies: 11 Views: 1,863 |
Forum: C++ Jan 8th, 2007 |
| Replies: 11 Views: 1,863 Re: how to use a vs2005 app on non-development PC I don't think so... I tried the release solution you offered, that's not enough. some dll is missing - and when I try to add it manually, it wont take it. this application is a win32 - windows... |
Forum: C++ Jan 8th, 2007 |
| Replies: 11 Views: 1,863 how to use a vs2005 app on non-development PC I made an application in vc++ on VS2005, but it doesn't work on non-development PCs. I did the same program on vs 0.6 and it worked very well. but perhaps there is another way to do it, say with a... |
Forum: C Jan 1st, 2007 |
| Replies: 3 Views: 1,146 anyone understand win32 api? I want to use static buttons with invisible background to the text. does anyone know how to do that? I have a picture in the background, and when I use a static button, it has a gray background,... |
Forum: C++ Dec 28th, 2006 |
| Replies: 5 Views: 1,422 Re: combobox thank you for your help, found what I was looking for and this is it :
if (LOWORD (wParam) == DAY_COMBOBOX && HIWORD (wParam) == LBN_SELCHANGE)
Thank You :cheesy: |
Forum: C++ Dec 25th, 2006 |
| Replies: 5 Views: 1,422 combobox hi!
I'm kind of new to this site, but I saw some of your guys posts, and man, you are brilliant. so I hope someone can help me as well. I am doing a vc++ program, and I'm using many comboboxs. how... |