Search found 112 matches

by Maori
Sun Jan 27, 2013 3:58 pm
Forum: C++ Development
Topic: kb layout
Replies: 3
Views: 1401

Re: kb layout

ok thanks for that to try and clear things up abit for display wise something like keytweek http://img.brothersoft.com/screenshots/softimage/k/keytweak-70740-1.jpeg would be great for my purpose yes it is a scan code ie i have in a void Keyvalues(void) function key = new char[25]; strcpy(key, "...
by Maori
Sun Jan 27, 2013 12:45 pm
Forum: C++ Development
Topic: kb layout
Replies: 3
Views: 1401

kb layout

Hi Guys how would i go about displaying an image of a keyboard reading a key file and overlapping the key definations from the key file to the image the key file uses ascii i belive as its in 0X30 for key b etc,etc i have these in a stuct so i think what i'am after is 1, dispaly keyboard image 2, op...
by Maori
Mon Aug 16, 2010 5:51 pm
Forum: Compiler / Linking / IDE Related
Topic: wxAboutBox help
Replies: 2
Views: 1338

Thanks worked like a champ :D
by Maori
Mon Aug 16, 2010 5:29 pm
Forum: Compiler / Linking / IDE Related
Topic: wxAboutBox help
Replies: 2
Views: 1338

wxAboutBox help

hi guys if i try and compile with the aboutbox i get Error 1 error LNK2019: unresolved external symbol "void __cdecl wxAboutBox(class wxAboutDialogInfo const &)" (?wxAboutBox@@YAXABVwxAboutDialogInfo@@@Z) referenced in function "public: void __thiscall Simple::OnAbout(class wxComm...
by Maori
Thu May 21, 2009 11:13 am
Forum: C++ Development
Topic: wxdir quirey
Replies: 3
Views: 1071

Dohhhhh

found the answer

i used wxDIR_DEFAULT

which

Code: Select all

// by default, enumerate everything except '.' and '..'
wxDIR_DEFAULT   = wxDIR_FILES | wxDIR_DIRS | wxDIR_HIDDEN
thanks
by Maori
Thu May 21, 2009 11:09 am
Forum: C++ Development
Topic: wxdir quirey
Replies: 3
Views: 1071

Heya Jorg yeah i did try it like ParentFolder = (tmpcookiepath); wxDir* cookiedir = new wxDir(ParentFolder); cookiedir->GetAllFiles(ParentFolder, &cookieFiles , wxT("*.*"), wxDIR_HIDDEN); cookie->SetValue( wxString::Format(wxT("Number of files in Temporary Internet Files Dir : %d&...
by Maori
Thu May 21, 2009 10:29 am
Forum: C++ Development
Topic: wxdir quirey
Replies: 3
Views: 1071

wxdir quirey

hi guys how can i see files in the tempory internet dir ? as this is a hidden folder in my last post http://forums.wxwidgets.org/viewtopic.php?p=103397#103397 i can locate and find files in a non hidden dir but the count always says 0 for the Temporary Internet Files dir not trying anything suspiciu...
by Maori
Mon May 18, 2009 7:38 pm
Forum: C++ Development
Topic: wxfileReove problem
Replies: 3
Views: 1230

Hi doublemax

Thanks for the link helped me out :)

is there a way i can display the number of files in a dir to a text field ?


TIA
by Maori
Mon May 18, 2009 10:23 am
Forum: C++ Development
Topic: wxfileReove problem
Replies: 3
Views: 1230

wxfileReove problem

hi guys can someone point out where i went wrong here wxDir::GetAllFiles(ParentFolder, &tmpFiles , wxT("*.*"), wxDIR_FILES); wxASSERT(tmpFiles.GetCount()>0); strcat(path, "*.tmp"); wxRemoveFile(path); this should open the directory and delete all the .tmp files in there howev...
by Maori
Thu Dec 27, 2007 5:35 pm
Forum: C++ Development
Topic: help with text file parsing (again)
Replies: 12
Views: 2863

Hiya Auria and folks yeah i realise this is due to my lack of knowledge :oops: and have been reading some books all along and theve helped me out a bit what really helps me learn is to see how things work and then i can understand them better rather than just reading (allthough i understand thats im...
by Maori
Sun Dec 23, 2007 7:39 pm
Forum: C++ Development
Topic: help with text file parsing (again)
Replies: 12
Views: 2863

hi David getting this error cannot convert parameter 1 from 'wxTextInputStream' to 'wxTextInputStream*' after i added this wxFileInputStream input( "maoriKeys.txt" ); wxTextInputStream textstream( input ); Keyline* line0 = new Keyline( textstream ); //causes error i did a google search but...
by Maori
Sat Dec 22, 2007 11:48 pm
Forum: C++ Development
Topic: help with text file parsing (again)
Replies: 12
Views: 2863

Thanks for this David

will let you know how i get on

I have my kids over the next few days till Xmas day (single dad and all )so will only be able to work on the project during the evenings


i really do appreciate your help

ThankYou
by Maori
Sat Dec 22, 2007 7:17 pm
Forum: C++ Development
Topic: help with text file parsing (again)
Replies: 12
Views: 2863

Hi David Thanks for the this but i'am unsure what i need to do :oops: i've tried but can not get this working :( i'am sure its me but if you could be so kind to give me some instruction here i would greatly appreciate it. not asking for the complete code here as u have given me enough but how to int...
by Maori
Fri Dec 21, 2007 10:06 am
Forum: C++ Development
Topic: help with text file parsing (again)
Replies: 12
Views: 2863

Hi David Unfortunatly no i dont control the format It is a games keystroke file and as a learning project i thought of making a editor for it. ie open txt file display contents show hex #'s as alphanumic edit the hex #'s by key press the keypress then saves as hex equivelant then resave the file tha...
by Maori
Thu Dec 20, 2007 9:53 pm
Forum: C++ Development
Topic: help with text file parsing (again)
Replies: 12
Views: 2863

Hi David Thankyou for pointing out what i was doing wrong and for your suggestions i will change the way i go about this i was under the impression though that wxFileConfig uses the .ini format and my file isnt in that format it needs to be the way it is will that cause me problems using the wxFileC...