Search found 53 matches

by LorDBulA
Sun Nov 18, 2007 7:39 pm
Forum: Open Discussion
Topic: Email Client Development...GoDaddy Spam Filter
Replies: 5
Views: 3401

Re: Email Client Development...GoDaddy Spam Filter

Hello. I am looking right now for library for sending emails. Could You be so kind and share what did You use in Your program? Thanks. Hi All, I'm adding email simple send-mail capabilities to an application written in C++. I have everything working via SMTP just fine, but when I send emails to any ...
by LorDBulA
Fri Nov 16, 2007 3:47 pm
Forum: C++ Development
Topic: wxFileSystem.FindFirst problem.
Replies: 1
Views: 689

wxFileSystem.FindFirst problem.

Hello I am trying to get files using http and in future ftp protocol. I can get file using wxFileSystem but I am unable to get a list of files using FindFirst, FindNext methods. They always return empty string. This is example code i used: wxString sSource = "ftp://ftp.europabarbarorum.org/&quo...
by LorDBulA
Tue Jun 19, 2007 7:56 pm
Forum: wxDev-C++
Topic: Popup Menu for wxComboBox
Replies: 2
Views: 2209

I deriverd wxComboBox and made wxComboBoxWithMenu and I got it to work. But I would still like to know why It doesnt work with Connect? I also checked wxTimer and I got the same result (crash) when I start Timer from inside Connect ( Exactly the same code as above). Calling other functions that chan...
by LorDBulA
Tue Jun 19, 2007 6:45 pm
Forum: wxDev-C++
Topic: Popup Menu for wxComboBox
Replies: 2
Views: 2209

Popup Menu for wxComboBox

Hello I want to Popup menu when right mouse button is clicked on ComboBox. This is my code: Creating controls and Connecting to mouse event. ComboControl = new wxComboBox(MainPanel, ID_COMBOCONTROL, wxT(""), wxPoint(10,20), wxSize(200,21), arrayStringFor_ComboControl, wxCB_READONLY, wxDefa...
by LorDBulA
Sat Apr 28, 2007 2:42 pm
Forum: C++ Development
Topic: Looking for Multiline wxListCtrl
Replies: 5
Views: 1475

Looking for Multiline wxListCtrl

Hi.

I am looking for control that would look like wxListCtrl (or similar) but allowed to display multiline text.
Editing option for columns would also be nice but its not necessary.
Do You know any ready solution?
Or maybe its possible to make wxListCtrl to display multiline text ?

Thanks.
by LorDBulA
Tue Apr 24, 2007 6:11 pm
Forum: wxDev-C++
Topic: wxDev Auto CreateGUIControls() Regeneration.
Replies: 2
Views: 1091

Thanks.
by LorDBulA
Tue Apr 24, 2007 1:50 pm
Forum: wxDev-C++
Topic: wxDev Auto CreateGUIControls() Regeneration.
Replies: 2
Views: 1091

wxDev Auto CreateGUIControls() Regeneration.

Hi. Something went wrong when i was editing frame wxform file (in wxDev cpp). wxform file is changed and yet code for this changes was not generated inside CreateGUIControls() function. Is there a way to force wxDev to regenerate this part of code from wxform file? Or do I have to write it manualy o...
by LorDBulA
Tue Apr 24, 2007 5:28 am
Forum: C++ Development
Topic: wxAutomationObject Worning Messages.
Replies: 1
Views: 656

Answer is creating object wxLogNull . As long as this object exists no messages will be loged.
by LorDBulA
Sun Apr 22, 2007 9:20 pm
Forum: wxDev-C++
Topic: Linking problem under wxDev 6.10
Replies: 4
Views: 1564

Ok i feel realy stupid now. Thanks Tony.
by LorDBulA
Sun Apr 22, 2007 9:49 am
Forum: wxDev-C++
Topic: Linking problem under wxDev 6.10
Replies: 4
Views: 1564

Yes I have rebulded project.
by LorDBulA
Sat Apr 21, 2007 1:05 pm
Forum: wxDev-C++
Topic: Linking problem under wxDev 6.10
Replies: 4
Views: 1564

Linking problem under wxDev 6.10

Hello. I have aplication that compiled fine under wxDev 4.9.x (dont remember wxWidget version). It was quite some time ago. Now I have to extend this application so I tryed to compile it under 6.10 but I get linking errors: Compiler: Default GCC compiler Building Makefile: "C:\RecruitmentViewer...
by LorDBulA
Tue Apr 03, 2007 1:25 pm
Forum: C++ Development
Topic: wxAutomationObject Worning Messages.
Replies: 1
Views: 656

wxAutomationObject Worning Messages.

Hello I have this problem. I use wxAutomationObject to past data to Word. Everything works fine but in wxAutomationObject if GetInstance method fails and You dont call CreateInstance method then wxAutomationObject desctructor will create wxMessageBox with worning. Now I have manu options that I Enab...
by LorDBulA
Tue Apr 03, 2007 11:24 am
Forum: Platform Related Issues
Topic: wxActiveX compiling
Replies: 11
Views: 3202

Hello. I am also trying to compile the wxActiveX.
I made all changes mantioned above but i get now :

Code: Select all

 error: `IID_IServiceProvider' undeclared (first use this function)
I would appriciate any help.

Thanks.
by LorDBulA
Mon Apr 02, 2007 3:57 pm
Forum: C++ Development
Topic: Word interaction from wxwidgets
Replies: 3
Views: 1221

Thanks for Your answers.
I really like this OLE Automation. Works great.
I know about ODBC but it's not as great.
What about ActiveX and wxActiveXContainer class?
Do You know any examples of its use in wxWigetes?
I would like to learn more about it.
by LorDBulA
Mon Apr 02, 2007 11:18 am
Forum: C++ Development
Topic: Word interaction from wxwidgets
Replies: 3
Views: 1221

Word interaction from wxwidgets

Hello. I am looking for a way to interact with open word document. Right now i just want to paste data right to Word withought using clipboard. I had a quick look around and i think that using ActiveX is a way to go (using wxActiveXContainer ). Am I correct? Or is there better solution? Could You ad...