Search Results

Showing results 1 to 34 of 34
Search took 0.01 seconds.
Search: Posts Made By: curt22 ; Forum: C++ and child forums
Forum: C++ Dec 6th, 2007
Replies: 10
Views: 1,358
Posted By curt22
Thanks I guess I read it wrong. :$ I'm going to reread it later (I can't now). Then I'll let you know what happens.
Forum: C++ Dec 5th, 2007
Replies: 10
Views: 1,358
Posted By curt22
I only have two files main.cpp & mywindow.h like the tutorial said. They are attached to this post.
Forum: C++ Dec 5th, 2007
Replies: 10
Views: 1,358
Posted By curt22
Could someone please help. :confused:
Forum: C++ Dec 4th, 2007
Replies: 10
Views: 1,358
Posted By curt22
I am linking with C:\fox\fox-1.6.31\lib\libFOXD-1.6.a.
Also the download is working for me you can get it here:
http://www.fox-toolkit.org/download.html
(I am using version 1.6.31)
Forum: C++ Dec 4th, 2007
Replies: 10
Views: 1,358
Posted By curt22
sorry. Here is the link:
http://fox-toolkit.net/cgi-bin/wiki.pl?Tutorial_1_Simple_Window
Also I copyed and pasted the example code like it said to.
Forum: C++ Dec 4th, 2007
Replies: 10
Views: 1,358
Posted By curt22
Hello, I'm following this tutorial http://fox-toolkit.net/cgi-bin/wiki.pl?Tutorial__Simple_Window
To learn how to make gui programs using the fox toolkit, but I can't get it to compile.
This is...
Forum: C++ Nov 3rd, 2007
Replies: 2
Views: 780
Posted By curt22
Hello everyone I'm having trouble writing part of a vector to a file. I'm getting this error:

This is part of my code:
ListViewTextItem.begin();
FILE * pFile;
pFile = fopen...
Forum: C++ Oct 11th, 2007
Replies: 7
Views: 4,402
Posted By curt22
Thanks they must hve fixed it.
Forum: C++ Oct 10th, 2007
Replies: 7
Views: 4,402
Posted By curt22
I tried that but the form kept saying that I hadn't filled in all the fields even though I had and I couldn't get it to work.
Forum: C++ Oct 9th, 2007
Replies: 7
Views: 4,402
Posted By curt22
The reason I'm asking is that I have dialup internet (highspeed isn't avalible in my area:( ) and it will take hours to download. I guess I'll try and get someone with highspeed to download it for...
Forum: C++ Oct 8th, 2007
Replies: 7
Views: 4,402
Posted By curt22
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?
Forum: C++ Oct 6th, 2007
Replies: 2
Views: 2,541
Posted By curt22
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....
Forum: C++ Oct 6th, 2007
Replies: 2
Views: 541
Posted By curt22
Thanks it works now.
Forum: C++ Oct 6th, 2007
Replies: 2
Views: 541
Posted By curt22
I have a list view and I'm trying to get all of the text out of it. This is my code so far:

for(i= 0; i < NumOfItems; i++)
{
char *text = new char[256];
...
Forum: C++ Sep 24th, 2007
Replies: 2
Views: 600
Posted By curt22
Could someone please help me.
Forum: C++ Sep 24th, 2007
Replies: 2
Views: 600
Posted By curt22
I can get the information from the first item and and sub item in the listview, but I don't know how to get the information from the rest. This is what I've got so far.
char *text = new char[256];...
Forum: C++ Sep 23rd, 2007
Replies: 2
Views: 600
Posted By curt22
How do I get the text out of a listview in report style into an array?
I want it to be something like this:
[[item1],[subitem1]],[[item1],[subitem1]],[[item1],[subitem1]],
Here is some of my code:...
Forum: C++ Sep 22nd, 2007
Replies: 6
Views: 1,791
Posted By curt22
Thanks, but it's still not working (same error). I'm using dev c++ in case it helps.
Forum: C++ Sep 22nd, 2007
Replies: 6
Views: 1,791
Posted By curt22
Thanks for the reply but I think it is a win32 api function. I found it here on the microsoft website.
http://msdn2.microsoft.com/en-us/library/ms671168.aspx
Forum: C++ Sep 22nd, 2007
Replies: 6
Views: 1,791
Posted By curt22
Hi everyone. I'm having trouble getting groups working in a list box.I'm trying to have two groups. One will be "Done", and the other will be "todo". I'm getting these errors:

Could someone...
Forum: C++ Sep 20th, 2007
Replies: 4
Views: 1,927
Posted By curt22
A simple example would help a lot.
Forum: C++ Sep 19th, 2007
Replies: 4
Views: 1,927
Posted By curt22
I'm using pure win32 api, and I have downloaded some examples but I still don't understand how to do it. Could someone explain it to me.
Forum: C++ Sep 18th, 2007
Replies: 4
Views: 1,927
Posted By curt22
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...
Forum: C++ Sep 18th, 2007
Replies: 4
Views: 1,058
Posted By curt22
Thanks I got it working using this code:
int TxtSize = GetWindowTextLength (hWndEditBox) + 1;
char *Entry = new char [TxtSize];
GetWindowText (hWndEditBox, Entry, TxtSize);
MessageBox (NULL,...
Forum: C++ Sep 17th, 2007
Replies: 4
Views: 1,058
Posted By curt22
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.

#include <windows.h>
#include...
Forum: C++ Sep 16th, 2007
Replies: 2
Views: 653
Posted By curt22
Forum: C++ Sep 16th, 2007
Replies: 2
Views: 653
Posted By curt22
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...
Forum: C++ Sep 15th, 2007
Replies: 2
Views: 907
Posted By curt22
Thanks Tight_Coder_Ex.
Forum: C++ Sep 15th, 2007
Replies: 2
Views: 907
Posted By curt22
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...
Forum: C++ Sep 10th, 2007
Replies: 2
Views: 10,853
Posted By curt22
I was wondering if anyone knows a good C++ Win32 API Tutorial for someone who knows nothing about gui programming or the windows API.
Forum: C++ Sep 10th, 2007
Replies: 6
Views: 3,915
Posted By curt22
Thanks sturm, but I still can't get it to work. i think I'm going to try a different gui toolkit.
Forum: C++ Sep 9th, 2007
Replies: 6
Views: 3,915
Posted By curt22
Thanks Sturm, but rebooting didn't work, and I don't know which files I need so I can't find them myself.

Encase it helps I'm using windows XP and I installed everything with the default settings.
Forum: C++ Sep 8th, 2007
Replies: 6
Views: 3,915
Posted By curt22
I installed Dev c++, GTK+ 2.x, the Gtk+/Win32 Development Environment, and gtkmm, but when I try to run pkg-config --cflags gtkmm-2.4 it says package gtkmm-2.4 was not found in the pkg-config ...
Forum: C++ Sep 8th, 2007
Replies: 6
Views: 3,915
Posted By curt22
Could someone please give me step by step instructions on how to make gtkmm work with Dev C++ on windows. I've tried following the instructions on the website, but I cant get it to work. Could you...
Showing results 1 to 34 of 34

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC