Search found 96 matches

by wxProgrammer
Thu May 22, 2014 7:40 pm
Forum: C++ Development
Topic: Multi Display
Replies: 6
Views: 2514

Re: Multi Display

So is the secondary screen the extension of the first?

Code: Select all

_________________
| FIRST | SECOND |
|______|________|
First.X = 0
First.Y = 0
Second.X = First.W
Second.Y = 0
by wxProgrammer
Thu May 22, 2014 5:46 pm
Forum: C++ Development
Topic: Multi Display
Replies: 6
Views: 2514

Re: Multi Display

My problem is how to send the media in the secondary display without see it on primary display :\
by wxProgrammer
Thu May 22, 2014 2:33 pm
Forum: C++ Development
Topic: Multi Display
Replies: 6
Views: 2514

Multi Display

Hi! I would like to write that use two display: The first is the pc and the second is a TV (I connect it with an HDMI). I have to send at the TV only presentations or media (like Microsoft PowerPoint's files, images/videos) that are selected from the pc. wxWidgets have something to help me to do thi...
by wxProgrammer
Thu May 22, 2014 2:25 pm
Forum: wxCode
Topic: wxPdfDocument - print Pdf
Replies: 6
Views: 4897

wxPdfDocument - print Pdf

Hi! I have read the samples but I haven't clean how to print a wxPdfDocument. I have this function: MyClass -> ToPdfDocument(wxPdfDocumen* pdf); and I call it: wxPdfDocument pdf; myClass -> ToPdfDoument(&pdf); Now how Can I print the document? (First I must show the Printer Dialog) Thank you :)
by wxProgrammer
Thu May 22, 2014 2:22 pm
Forum: C++ Development
Topic: Console into wxPanel
Replies: 2
Views: 1350

Re: Console into wxPanel

Hi!
I had already thought this solution but I wont know if it's possible attach the very console..
by wxProgrammer
Wed May 21, 2014 8:07 am
Forum: C++ Development
Topic: Console into wxPanel
Replies: 2
Views: 1350

Console into wxPanel

HI! How can I draw a console (only output is enough) into wxPanel?
by wxProgrammer
Tue May 06, 2014 1:51 pm
Forum: C++ Development
Topic: setup
Replies: 5
Views: 2213

Re: setup

Perfect, thank you :)

p.s. I thinking to make a class for this but wx-based :) if I'll complete this project, I'll put it on wxCode :)
by wxProgrammer
Mon May 05, 2014 11:22 pm
Forum: C++ Development
Topic: setup
Replies: 5
Views: 2213

setup

Hi! I have written a software and Now I would like to do the setup-installer. how can I do this? (a generator's setup already existent is perfect). I haven't much time for write a wxWizard with self-extraction :/
by wxProgrammer
Mon May 05, 2014 6:39 pm
Forum: C++ Development
Topic: wxThread or c++11 thread?
Replies: 4
Views: 4151

Re: wxThread or c++11 thread?

Oh, perfect :) Thank you
by wxProgrammer
Mon May 05, 2014 4:58 pm
Forum: C++ Development
Topic: wxThread or c++11 thread?
Replies: 4
Views: 4151

wxThread or c++11 thread?

Hi! I have to write a software that must be very speed. I'll write this with thread for parallelism. In your opinion is better <thread> (C++11) or <wx/thread.h>? (The programm is for windows and I have to use wx for GUI principally)
by wxProgrammer
Sun May 04, 2014 9:54 pm
Forum: C++ Development
Topic: Set the size of wxAuiPaneInfo
Replies: 0
Views: 923

Set the size of wxAuiPaneInfo

Hi! How Can I set the size of an wxAuiPaneInfo DOCKED? The Docking is HORIZONTAL (it contains a wxTreeCtrl) and I have to increment the width (by code)
by wxProgrammer
Sun May 04, 2014 6:06 pm
Forum: C++ Development
Topic: wxAuiToolBar without Close Button
Replies: 0
Views: 839

wxAuiToolBar without Close Button

Hi!
How can I create a wxAuiToolBar that cannot be closed?
by wxProgrammer
Sun May 04, 2014 3:00 pm
Forum: wxCode
Topic: wxPdfDocument - Document is Empty
Replies: 4
Views: 3592

Re: wxPdfDocument - Document is Empty

Oh, then I use simply "Image" and "Write", seeing i have to write only text with an image :)
Thank you for your help :)
by wxProgrammer
Sun May 04, 2014 12:38 pm
Forum: wxCode
Topic: wxPdfDocument - Document is Empty
Replies: 4
Views: 3592

Re: wxPdfDocument - Document is Empty

Hi, thank you for the answer :) Now work: if I write "pdf.WriteXml("hello");, work but this don't work, no table and no image/string is printed... for (int i(0); i < 2; ++i) { pdf.SetY(i * (pdf.GetPageHeight()/2) + 20); wxString HEAD = wxT("<table border=\"1\"><tr><td><...
by wxProgrammer
Sat May 03, 2014 1:39 pm
Forum: wxCode
Topic: wxPdfDocument - Document is Empty
Replies: 4
Views: 3592

wxPdfDocument - Document is Empty

wxPdfDocument pdf; pdf.AddPage(); pdf.SetFont(wxT("Helvetica"), wxT(""), 12); pdf.SetMargins(0, 20, 20); pdf.SetTitle((*analysis)[ANALYSIS_FIELDS_NAME]); pdf.SetAuthor(wxT("La Clinica del PC")); pdf.Open(); pdf.SetY(297/2); pdf.Ln(); for (int i(0); i < 2; ++i) { pdf.Se...