Search found 465 matches

by gururamnath
Tue Mar 27, 2007 6:57 pm
Forum: Announcements and Discoveries
Topic: wxWidgets CodePak for Turbo C++ / Borland C++ 2006
Replies: 2
Views: 1719

wxWidgets CodePak for Turbo C++ / Borland C++ 2006

Ever since I started using Turbo C++, I found that it is not as easy as wx-DevC++ to get started with wxWidgets. I have created a CodePak (equivalent to devpak) that facilitate the usage of pre-built library. I have uploaded the wxWidgets codepak to http://codepaks.sourceforge.net/gui.htm The Instal...
by gururamnath
Sat Feb 10, 2007 2:45 am
Forum: C++ Development
Topic: Small Problem
Replies: 11
Views: 2096

Re: Small Problem

I'm able to use the XPM variable in the SetIcon. You cannot pass a char* as param (which will be your file name) rather you need to pass char** (which is the type of the XPM variable name). SetIcon(Self_testDlg_XPM); For fixing your problem, try to open the XPM in notepad and find the variable name ...
by gururamnath
Fri Feb 09, 2007 11:10 pm
Forum: Announcements and Discoveries
Topic: ANN : Enhanced wxTreeListCtrl
Replies: 44
Views: 25497

Hi Francesco, I wonder if you are interested in integrating wxTreeListCtrl directly into wxWidgets itself... Yes, I would luv to help integrating it. Couple of things I want to mention before contributing to this one (and want to know your opinion). 1)When working with the wxTreeListCtrl, I went thr...
by gururamnath
Fri Feb 09, 2007 10:34 pm
Forum: wxDev-C++
Topic: parsing wxHtmlWindow using wxHtmlWinParser(or anything else)
Replies: 1
Views: 739

Re: parsing wxHtmlWindow using wxHtmlWinParser(or anything e

I have adapted UpCase's code and posted the snippet at

http://wxsnippets.com/view_article.php?num=106

-Guru Kathiresan
by gururamnath
Fri Feb 09, 2007 10:27 pm
Forum: wxDev-C++
Topic: Remove unused things to reduce exe
Replies: 3
Views: 1190

The problem is we dont supply the wxWidgets source along with the distribution. The Source might contain extra few MB that we dont to want to shove it to the user. The Library build process is pretty simple; Tony and Mal has created a bat file for automating build. Have a look at the DevPak creation...
by gururamnath
Thu Feb 01, 2007 8:00 pm
Forum: wxCode
Topic: How to find one value with DatabaseLayer
Replies: 9
Views: 3210

I'm glad that the snippets are helpful. I'm really looking forward to check the code in the CVS.

-regards,
Guru Kathiresan
by gururamnath
Tue Jan 30, 2007 10:56 pm
Forum: Compiler / Linking / IDE Related
Topic: Problems with Visual Studio 2005 Intellisense
Replies: 3
Views: 1396

Re: Problems with Visual Studio 2005 Intellisense

I use Visual Assist from http://www.wholetomato.com/ it work pretty well for wx 2.8 with VC++ 6, 2003 and 2005. Check out their demo.

-Guru Kathiresan
by gururamnath
Tue Jan 30, 2007 2:18 am
Forum: Compiler / Linking / IDE Related
Topic: Digital Mars C++ compiler debug problem
Replies: 1
Views: 920

Re: Digital Mars C++ compiler debug problem

It seems I have used the cmdline options properly but the debug info created by the DMC is not recognized by the latest winDBG. The windbg from 1996 (given along with DMD compiler pack) is working.

-Guru Kathiresan
by gururamnath
Mon Jan 29, 2007 10:53 pm
Forum: wxCode
Topic: How to find one value with DatabaseLayer
Replies: 9
Views: 3210

Why not add a function in DatabaseLayer class like this : /// Run a select query to find only one result virtual wxString RunQueryOneResult(const wxString& strQuery, int nField) = 0; It's useful if the resultset contains only one value as a result. I have added some dblayer specific functions t...
by gururamnath
Wed Jan 24, 2007 7:08 pm
Forum: wxDev-C++
Topic: Code Generation Bug ?
Replies: 5
Views: 1405

To see the bug you should make a change in the gui builder and then save (so Dev-Cpp regenerate the code) ! It seems you have accidentally changed the base class name to wxStatixBoxSizer . For fixing this problem, Select the Sizer WxStaticBoxSizer1 and then change the base class name back to wxStat...
by gururamnath
Tue Jan 23, 2007 6:59 pm
Forum: wxDev-C++
Topic: wxTextCtrl Problem
Replies: 5
Views: 1852

You can type cast the wxValidator* to wxTextValidator of the WxEdit1 object (when using the WxEdit1->GetValidator() function). Alternatively you can create a wxTextValidator object and the assign it to the WxEdit1 using the SetValidator function. So the code may look like ////GUI Items Creation End ...
by gururamnath
Tue Jan 23, 2007 2:08 am
Forum: wxDev-C++
Topic: wxTextCtrl Problem
Replies: 5
Views: 1852

Re: wxTextCtrl Problem

Currently you cannot assign a custom validator object, but you are set the Include/Exclude list to the validator assigned to the textCtrl. Use the GetValidator() of the wxTextCtrl class to the get the Validator Obj and then set the exclude/include list.

-Guru Kathiresan
by gururamnath
Mon Jan 22, 2007 4:38 am
Forum: Announcements and Discoveries
Topic: New wxWidgets Code Snippet Site
Replies: 7
Views: 2216

Hi Jorg, Even though wxCRP is forgotten by others, I was one of its early users and I found that to be very helpful. Since I'm using a off the shelve faq program I'm not sure whether I can add it any time soon. I hope I can update the faq programs by adding more features (related with the Faq/snippe...
by gururamnath
Sun Jan 21, 2007 10:25 pm
Forum: wxDev-C++
Topic: help testing wx-devc++ with Digitalmars C++ Compiler
Replies: 22
Views: 5198

Another problem is that there is no debugger support for it. By theory we should be able to use the debugger we have created for VC++ to debug DMC executables but the debug format included in DMC is not recognized by the latest VC++ debugger. Until DMC upgrades to the latest debug information format...
by gururamnath
Sun Jan 21, 2007 12:03 am
Forum: Announcements and Discoveries
Topic: New wxWidgets Code Snippet Site
Replies: 7
Views: 2216

13 more snippets from the Jorg's wxCRP system is copied to wxSnippets.

Please continue to submit your snippets to the site.

-Guru Kathiresan