Search found 14 matches

by trycatchthis
Tue Apr 12, 2005 7:35 am
Forum: C++ Development
Topic: What is the Memory Mapped File Class?
Replies: 9
Views: 2824

can you define "private memory stream"
by trycatchthis
Tue Apr 12, 2005 6:10 am
Forum: C++ Development
Topic: What is the Memory Mapped File Class?
Replies: 9
Views: 2824

I dont know if wxMemoryFSHandler is what i am looking for.

Does it store the data in memory?
by trycatchthis
Mon Apr 11, 2005 9:35 am
Forum: C++ Development
Topic: What is the Memory Mapped File Class?
Replies: 9
Views: 2824

You use memory mapped files so that instead of allocating a big chunck of ram you use a file.

They make a file look like if it was loded in ram.
by trycatchthis
Mon Apr 11, 2005 8:16 am
Forum: C++ Development
Topic: What is the Memory Mapped File Class?
Replies: 9
Views: 2824

What is the Memory Mapped File Class?

I searched for such a class with no luck.
by trycatchthis
Mon Apr 11, 2005 5:19 am
Forum: C++ Development
Topic: correct way to use wxThread
Replies: 5
Views: 2049

I am on windows so if I understand the docs correctly: There are two types of threads in wxWidgets: detached and joinable ones, just as in the POSIX thread API (but unlike Win32 threads where all threads are joinable). "Win32 threads where all threads are joinable" In contrast, detached th...
by trycatchthis
Mon Apr 11, 2005 2:29 am
Forum: C++ Development
Topic: correct way to use wxThread
Replies: 5
Views: 2049

Does the thread colse after Entry() ends? Or do i have to close it?
by trycatchthis
Mon Apr 11, 2005 1:37 am
Forum: C++ Development
Topic: correct way to use wxThread
Replies: 5
Views: 2049

correct way to use wxThread

class VFSExtractThread: public wxThread { public: bool start() { if( wxThread::Create() != wxTHREAD_NO_ERROR ) { // Todo Handle error return false; } if( wxThread::Run() != wxTHREAD_NO_ERROR ) { // Todo Handle error return false; } return true; } wxThread::ExitCode Entry() { ExitCode ret = NULL; if...
by trycatchthis
Sun Apr 10, 2005 12:11 am
Forum: C++ Development
Topic: Does wxWidgets Have a CommandLineParsing class?
Replies: 5
Views: 1512

wxCmdLineParser cmdline( argc, argv );

variable`wxCmdLineParser cmdline' has initializer but incomplete type

what is the incomplete type?
by trycatchthis
Sat Apr 09, 2005 11:39 pm
Forum: C++ Development
Topic: Does wxWidgets Have a CommandLineParsing class?
Replies: 5
Views: 1512

I was searching for command line with no luck :)
by trycatchthis
Sat Apr 09, 2005 5:44 pm
Forum: C++ Development
Topic: Does wxWidgets Have a CommandLineParsing class?
Replies: 5
Views: 1512

Does wxWidgets Have a CommandLineParsing class?

Does wxWidgets Have a CommandLineParsing class?
by trycatchthis
Sat Apr 09, 2005 7:27 am
Forum: wxDev-C++
Topic: How do you get a directory?
Replies: 1
Views: 1045

How do you get a directory?

There is wxFileDialog for getting regular files. But what dialog is there for getting a folder?
by trycatchthis
Sat Apr 09, 2005 4:53 am
Forum: wxDev-C++
Topic: Tool Bar Error
Replies: 2
Views: 1651

#include <wx/msw/wx.rc> I notice that this resource may reference files that are not in the right directory example WXCURSOR_HAND CURSOR DISCARDABLE "wx/msw/hand.cur" hand.cur is in the same directory as wx.rc so this cant work. ////////////////////////////////////////////////////////////...
by trycatchthis
Fri Apr 08, 2005 12:46 am
Forum: wxDev-C++
Topic: Tool Bar Error
Replies: 2
Views: 1651

Tool Bar Error

When my program starts I get a MessageBox() up saying ------------------------------- ProgramName Error Can't load bitmap 'wxBITMAP_STD_COLOURS' from resources! Check .rc file. ------------------------------- But there is no wxBITMAP_STD_COLOURS anywhere in the install directory. These are all the c...
by trycatchthis
Thu Apr 07, 2005 4:00 pm
Forum: wxDev-C++
Topic: Is wxdev-c++ ment to replace dev-c++
Replies: 8
Views: 21297

Is wxdev-c++ ment to replace dev-c++

I was using dev-c++ fine for a while now without too many problems It is installed at c:\dev-cpp I installed wxdev-c++ to c:\wxdev-cpp Is wxdev meant to replace dev-c++ on the system or should you be able to use both? I ask this because of linker errors I get when trying to compile dev-c++ code with...