- 
				Archives- April 2023
- November 2017
- April 2017
- March 2017
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- August 2015
- May 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- June 2014
- April 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- July 2013
- June 2013
- May 2013
- April 2013
- January 2013
- December 2012
- November 2012
- October 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- October 2011
- July 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
 
- 
				Meta
Category Archives: Uncategorized
Working through zetcode’s wxwidget tutorital: Dialogs
I’m sort getting anxious to get through this tutorial and start doing some actual coding… I’ve been thinking about some of the projects I could do…. Ultimately, my goal is to get my C++ skill sets up to the point … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		Working through zetcodes wxwidget tutorial, events.
I think this will be my 102 posting… Wow what ride 😉 So yesterday, I was playing around in XP.. Today I’m back in Linux. So…. I’ve been working in the events section of the zetcode tutorial called “Example using … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		Code::Blocks WxWidgets and XP (Continued)
This post picks up from here Ok… So I’m picking my mom up for Christmas and it’s early in the morning and of course I’m on the computer.. But first I need to make some coffee. Darn things is I … Continue reading
									
						Posted in Uncategorized					
					
				
				
				1 Comment
							
		(Part 3)Exploring zetcode wxwidget tutorial on Layout Management:
I think I’ve been lingering in this section for a little too long. The next section of this tutorial deals with wxGridSizer.  Not that I’m not enjoying this tutorial. It’s just I want to get through it and start coding… … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		(Part 2)Exploring zetcode wxwidget tutorial on Layout Management:
All right… I’m back…. I’m starting to get into this sizer thing in the zetcode tutorial. Time to “Go To Class’ no pun intended… There is a bunch of little tricks in this tutorial that the zetcode code has mentioned … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		(Part 1)Exploring zetcode wxwidget tutorial on Layout Management:
I’ve already have add a smattering of sizers already. I guess this part of the zetcode wxWidget tutorial goes through that.. Lets see what surprises are in store for Absolute Positioning. The first example shows absolute positioning. The author of … Continue reading
									
						Posted in Ubuntu, Uncategorized, WordPress Stuff					
					
				
				
				Leave a comment
							
		Exploring zetcode wxwidget tutorial on Menus and Toolbars:A Simple Toolbar/
The rain in Spain falls mainly on the plain… By Jove he’s got it… My progress in the zetcode tutorial seems to have taken an uptick…. Let see if continues with my exploration of toolbars. Short answer… No…. Up to … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		Exploring zetcode wxwidget tutorial on Menus and Toolbars:Simple Menu Example
#include “menu.h” SimpleMenu::SimpleMenu(const wxString& title) : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(280, 180)) { menubar = new wxMenuBar; file = new wxMenu; file1 = new wxMenu; file->Append(wxID_EXIT,wxT(“&Hasta La Vista Baby”)); menubar->Append(file, wxT(“&File”)); menubar->Append(file1 , wxT(“&Something new”)); file1->Append(ID_JT_TEST,wxT(“&Test”)); //const int ID_JT_TEST = … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		Exploring zetcode wxwidget tutorial on Menus and Toolbars:Submenus
The I’m exploring here I got from the most excellent zetcode tutorial here. This is actually starting to move faster now… I went through the example titled submenus.. The after going through the tutorial I had this question: Can you … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		(Part 2) Exploring wxwidgets using zetcode’s tutorial “Widgets communicate” and Code::blocks
Ok.. Part 1 was me playing around… Now I’m need to figure out the meat and potatoes of this particular tutorial.. Looking at the header files communicate.h #include “Panels.h” #include <wx/wxprec.h> class Communicate : public wxFrame { public: Communicate(const wxString& … Continue reading
									
						Posted in Uncategorized					
					
				
				
				Leave a comment
							
		