Search found 657 matches

by protocol
Fri May 29, 2009 4:03 am
Forum: Platform Related Issues
Topic: wxMAC - Add item into the Window menu
Replies: 2
Views: 819

You may be able to circumspect the source code to find it.

This may help.

http://wiki.wxwidgets.org/WxMac-specifi ... S_menu_bar

regards.
by protocol
Thu May 28, 2009 4:38 am
Forum: C++ Development
Topic: Help me with wxRegKey issues please
Replies: 2
Views: 1230

error: conversion from `const char[33]' to `const wxString' is ambiguous Is this a unicode build? If so, wrap the string literals. Use the macros: wxT(...) or _(...) (amongst others) wxString Encrypter::LoadFromReg(wxString tipo) { wxString clave; // Cargar de registro wxRegKey *pRegKey = new wxReg...
by protocol
Wed May 27, 2009 2:09 am
Forum: C++ Development
Topic: Have the application restart
Replies: 10
Views: 4189

Kraymer wrote:You could write a wrapper application.
Just use different possible return codes for (int)wxApp::OnExit in your server app so that the wrapper knows if it should shutdown, restart or do whatever.
I'm pretty sure heuristic virus scanners will go nuts if your executable does the above.
by protocol
Wed May 27, 2009 2:04 am
Forum: Platform Related Issues
Topic: wxMSW: Exit application while Modal dialog(s) active
Replies: 3
Views: 1678

The dialogs should only block the calling thread, in your case the main thread (GUI thread). You can create a new thread for respective dialogs and disable the other windows.

You can also try sending custom events to a specific wxWindow.

regards.
by protocol
Tue May 26, 2009 6:07 am
Forum: wxDev-C++
Topic: looking for a painless Vista install
Replies: 4
Views: 1851

I also use VS Pro 2005 (when forced to use windoze). You can add all the respective wx libs/projs to a solution, then add your project to the solution and build. Quick (after the first build), simple and error-free.

regards.
by protocol
Sat May 23, 2009 2:34 pm
Forum: C++ Development
Topic: I need documentation about wxTreeListCtrl
Replies: 5
Views: 11667

This was the second Google search result: http://wxcode.sourceforge.net/component ... rence.html
by protocol
Sat May 23, 2009 2:28 pm
Forum: C++ Development
Topic: How to control text position inside wxTextCtrl
Replies: 8
Views: 5181

Please show us the screen shot and the related source code (wxTextCtrl flags used).
by protocol
Thu May 21, 2009 5:01 am
Forum: Platform Related Issues
Topic: wxMAC - moving frames by toolbar or statusbar
Replies: 9
Views: 2329

The wxToolbar works as expected for the C++ build, but it does not work for the wxPython build. You may want to report a bug to the wxPython project.
by protocol
Thu May 21, 2009 3:49 am
Forum: C++ Development
Topic: How Can I Embed InternetExplorer By wxActiveXContainer
Replies: 19
Views: 4795

@Auria: Thats understood. Not sure if you know Qt Yes, I greatly enjoy Qt. An example of my work: http://code.google.com/p/katemate/ Even't if you stripped webkit to a bare minimal it'd probably take many Mbs http://nightly.webkit.org/ For the record, an average WebKit (win32) build is 5-6mbs. I gue...
by protocol
Wed May 20, 2009 5:42 am
Forum: C++ Development
Topic: How Can I Embed InternetExplorer By wxActiveXContainer
Replies: 19
Views: 4795

The opinions of WebKit seem a bit uneducated. but each has serious drawbacks and none (AFAIK) is a complete and stable solution Given the context, WebKit is the most stable and complete option. It can be reduced in resources to fit on a mobile device. Example: WebOS (Palm Pre) uses WebKit to render ...
by protocol
Tue May 19, 2009 6:48 am
Forum: C++ Development
Topic: How Can I Embed InternetExplorer By wxActiveXContainer
Replies: 19
Views: 4795

protocol : the problem with wxWebKit is that it's huge; it's also a full-blown HTML editor. Using a native HTML viewer makes it much smaller And IE is not a full blown HTML editor? WebKit has a suprisingly small footprint. As you may know iPhone uses WebKit. Its not that resource intensive as you m...
by protocol
Sat May 16, 2009 5:38 am
Forum: C++ Development
Topic: How Can I Embed InternetExplorer By wxActiveXContainer
Replies: 19
Views: 4795

Do you need Internet Exploder?

WebKit is cross-platform and generally a better rendering engine.

Check out: http://wxwebkit.wxcommunity.com/
by protocol
Sat May 16, 2009 5:33 am
Forum: C++ Development
Topic: wxSocketServer Accept issues
Replies: 2
Views: 905

Two questions:

What version of wxWidgets are you using?

Have you read: http://forums.wxwidgets.org/viewtopic.php?t=2736 ?
by protocol
Sat May 16, 2009 5:31 am
Forum: C++ Development
Topic: wxInputStream - How to create an event when full?
Replies: 1
Views: 838

Override the class, and use wxPostEvent when something appears inside of it.