Showing results 1 to 25 of 25
Search took 0.01 seconds.
Posts Made By: gabs
Forum: C++ Dec 19th, 2007
Replies: 3
Views: 618
Posted By gabs
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
Posted By gabs
Re: Return more than one value from a single function

what do you mean?
another way you can do this fuction, is by returning an array -> int*;
the first place would be the word count, and the second would be the char count.
like this:


int*...
Forum: C++ Dec 19th, 2007
Replies: 10
Views: 2,239
Posted By gabs
Re: Return more than one value from a single function

the "&" means you get the parameter by name. for example:

...
int wcount, ccount;
CharWordCount("good luck", wcount, ccount);
//if the function is correct, wcount and ccount, now contain the require...
Forum: C++ Dec 19th, 2007
Replies: 4
Views: 417
Posted By gabs
Re: Random numbers based on user input

try this:

rand1 = (rand()%highest)+1;
Forum: C++ Dec 19th, 2007
Replies: 3
Views: 618
Posted By gabs
Help 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
Posted By gabs
Re: displaying pictures on a dialog box

I'm writing in vc++ with out mfc. I have only included window.h, nothing else.
Forum: C++ Apr 25th, 2007
Replies: 3
Views: 1,125
Posted By gabs
Help 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
Posted By gabs
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
Posted By gabs
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
Posted By gabs
Help 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
Posted By gabs
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
Posted By gabs
Help 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
Posted By gabs
Help 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
Posted By gabs
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
Posted By gabs
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
Posted By gabs
Re: how do I create a setup wizard?

I've answerd myself thanks.
I found Inno setup compiler it's great!!
Forum: Posting Games Jan 11th, 2007
Replies: 7,560
Views: 465,034
Posted By gabs
Forum: IT Professionals' Lounge Jan 11th, 2007
Replies: 3
Views: 2,484
Posted By gabs
Question 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
Posted By gabs
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
Posted By gabs
Re: how to use a vs2005 app on non-development PC

thanks, I found the dll that was missing; I add it and it worked.:cheesy:

but I won't always know what dll is missing ahead, so is there a way to create a setup that will include everything...
Forum: C++ Jan 8th, 2007
Replies: 11
Views: 1,863
Posted By gabs
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
Posted By gabs
Question 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
Posted By gabs
Question 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
Posted By gabs
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
Posted By gabs
Help 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...
Showing results 1 to 25 of 25

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 6:07 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC