Search found 147 matches

by asadilan
Wed May 18, 2016 8:24 pm
Forum: C++ Development
Topic: any clue?
Replies: 1
Views: 682

any clue?

moving from 2.8 to 3.0 I have a drag and drop object and this error is thrown. ..\..\src\msw\ole\droptgt.cpp(462): 'RevokeDragDrop' failed with error 0x80040100 (trying to revoke a drop target that has not been registered). Exception thrown: read access violation. this was 0x1. Any idea? Thanks
by asadilan
Wed May 18, 2016 7:40 pm
Forum: C++ Development
Topic: wxtreelistctrl
Replies: 1
Views: 651

wxtreelistctrl

Hi All,

i am using wxtreelistctrl which was external to wxwidget. it is not part of main wxwidget.
i am migrating from 2.8 to 3.0 and i am hitting a wall.

Code: Select all

wxTheApp->GetTraits()->ScheduleForDestroy(this);
how is the code above change in wx3.0?

Thanks
Asadilan
by asadilan
Mon May 16, 2016 4:36 pm
Forum: C++ Development
Topic: wxHtmlEasyPrinting
Replies: 1
Views: 816

wxHtmlEasyPrinting

Hi All, i have an interesting problem. wxHtmlEasyPrinting printEngine("Xtender Validate Report", this); printEngine.SetStandardFonts(8); wxDateTime dateTime; dateTime = wxDateTime::Now(); wxString dateString; dateString.Printf("%s",dateTime.FormatISODate()); wxString timeString; ...
by asadilan
Thu Jan 15, 2015 7:07 pm
Forum: C++ Development
Topic: wxHtmlWindow
Replies: 1
Views: 752

wxHtmlWindow

Hi All, how do i make my wxHTMLWindow is able to display what my browser is displaying? i have an ordered list with number styling 1, 1.1, 1.1.2 and so on. the html given to wxHtmlWindow when open with a browser, display perfectly but when displayed with wxHtmlWindow, it is not. Please advise Thanks...
by asadilan
Mon Feb 10, 2014 10:08 pm
Forum: C++ Development
Topic: wxProcess::Exists(PID)
Replies: 6
Views: 2847

Re: wxProcess::Exists(PID)

Thanks
i think there is a bug there.
it should be openprocess and getexitcodeprocess instead of just openprocess.
by asadilan
Mon Feb 10, 2014 9:18 pm
Forum: C++ Development
Topic: wxProcess::Exists(PID)
Replies: 6
Views: 2847

Re: wxProcess::Exists(PID)

Hi DoubleMax,

Thanks for replying.
yes that is true.
I forgot to mention that i put a breakpoint before checking and manually kill the process through process explorer.
I waited a while and it still tells me that the process exists.

Thanks for pointing that out :)

Asadilan
by asadilan
Mon Feb 10, 2014 7:59 pm
Forum: C++ Development
Topic: wxProcess::Exists(PID)
Replies: 6
Views: 2847

wxProcess::Exists(PID)

Hi All,

I need help with wxprocess::exists();

Code: Select all

wxProcess process ;
bool test = false;
pid = wxExecute(command, wxEXEC_ASYNC , &process);

if(wxProcess::Exists(pid)// process.Exists(pid)
{
 test = true;
}
else
{
test =false;
}


why is that test is always true?

Thanks
Asadillan
by asadilan
Tue Dec 24, 2013 6:46 pm
Forum: C++ Development
Topic: wxExecute and wxExec_sync
Replies: 1
Views: 934

wxExecute and wxExec_sync

Hi All, Happy holidays for all of you. I have a problem with wxExecute and wxExec_Sync. sometimes wxExecute would still wait for the process to return while the process is gone (does not exist). i know it doesnt exist because i cant find it in task manager. replicating the issue is not easy but i kn...
by asadilan
Tue Aug 20, 2013 8:58 pm
Forum: C++ Development
Topic: wxZipOutputStream
Replies: 2
Views: 1312

wxZipOutputStream

Hi All, I am trying to zip 1 file. the problem i am having is after zipping, when i tried to open it with winrar or explorer, it always tells me file is corrupted. the size looks correct. 1 thing i notice is that the crc is 0. any advice? i am on 2.8.12 below is my code. Thanks in Advance wxFileName...
by asadilan
Tue Jul 16, 2013 9:38 pm
Forum: C++ Development
Topic: wxTreeListCtrl
Replies: 1
Views: 978

Re: wxTreeListCtrl

answer is no.
they are different. the one in the trunk is based on wxDataView while the other is not.
by asadilan
Thu Jul 04, 2013 7:04 pm
Forum: C++ Development
Topic: wxTreeListCtrl
Replies: 1
Views: 978

wxTreeListCtrl

Hi All, wxTreeListCtrl was just introduced in 2.9. There was an external wxTreeListCtrl (by Robert Roebling, Julian Smart, Alberto Griggio, // Vadim Zeitlin, Otto Wyss) that could be used with 2.8 and lower. Does anyone know if it should be save to migrate from wxTreeListCtrl 2.8 to 2.9? looking at ...
by asadilan
Mon Apr 30, 2012 5:53 pm
Forum: C++ Development
Topic: wxauipaneinfo
Replies: 1
Views: 891

Re: wxauipaneinfo

bump.

anyone know this issue?

TIA
by asadilan
Fri Apr 27, 2012 6:16 pm
Forum: C++ Development
Topic: how to open the filename( from comman line) in Window
Replies: 4
Views: 1515

Re: how to open the filename( from comman line) in Window

sometimes its the / you may have to put double // or \\.
for easiest use wxfilename. that should be taken care of.
hopefully that helps.
by asadilan
Thu Apr 26, 2012 8:10 pm
Forum: C++ Development
Topic: wxauipaneinfo
Replies: 1
Views: 891

wxauipaneinfo

Hi All, i just realised this with wxauimanager and wxauipaneinfo. I have a wxauipane that is docked and i have a wxcombobox in a different wxauipane. so the idea is that i want to reflect what is selected in wxcombobox to the other pane by putting the text in the caption. the way it is done right no...
by asadilan
Fri Feb 24, 2012 10:37 pm
Forum: C++ Development
Topic: wxFileName
Replies: 4
Views: 1650

Re: wxFileName

yes it works ok.
I was testing it in a different setting.
THanx