Search found 1339 matches

by priyank_bolia
Thu Mar 25, 2010 8:03 am
Forum: C++ Development
Topic: Data encryption and wx
Replies: 17
Views: 22835

@DavidKlecker
Which database you are using, most of the database provides inbuilt encryption, I guess ORACLE, SQLite, etc.
Why you want to encrypt the files, use DB encryption instead.
by priyank_bolia
Sat Jul 04, 2009 4:29 pm
Forum: Open Discussion
Topic: Some Firefox tips for wxWidgets users.
Replies: 0
Views: 3616

Some Firefox tips for wxWidgets users.

Though not directly related to wxWidgets, but those who like the Firefox search plugin might like this tip also: Smart Keywords: Smart Keywords are an easy way to search websites right from the Location bar. How to create a smart keyword is described on Mozilla website at http://www.mozilla.org/prod...
by priyank_bolia
Thu May 21, 2009 11:00 am
Forum: C++ Development
Topic: InterlockedIncrement?
Replies: 10
Views: 7446

Old Post, but today I found some interesting blog, which had the answer: __sync_fetch_and_add http://www.alexonlinux.com/multithreaded-simple-data-type-access-and-atomic-variables You should also read the post: http://www.alexonlinux.com/how-inheritance-encapsulation-and-polymorphism-work-in-cpp/
by priyank_bolia
Sun Mar 08, 2009 11:08 am
Forum: The Code Dump
Topic: wxDownloadFile
Replies: 17
Views: 27873

This is not a multi threaded file downloader, I wrote to download small files easily, like the latest version of the software for software update dialog box. Its main purpose was easy to use, for more power you should use curl, etc.
by priyank_bolia
Thu Feb 19, 2009 5:57 am
Forum: Open Discussion
Topic: wxWidgets custom search engine
Replies: 6
Views: 6232

Those who want to contribute I can make you contributors to the search engine, just ping me the email address.
by priyank_bolia
Thu Jan 15, 2009 7:21 am
Forum: Open Discussion
Topic: Nokia to license Qt under LGPL
Replies: 9
Views: 8642

Re: Good for wx?

GeraldG wrote:But i think its not a good news for the spread of wx.
http://wxwidgets.blogspot.com/2009/01/q ... -lgpl.html
by priyank_bolia
Mon Dec 22, 2008 1:36 pm
Forum: Announcements and Discoveries
Topic: ADS: wxVS2008Integration
Replies: 3
Views: 5120

Thanks for the praise. I would love to offer a free trial, but the Visual Studio wizards are HTML and so software protection or time limitation can't be applied. A trimmed down version would not show the real power of this wizard. Regarding the Community version, its free for all open source develop...
by priyank_bolia
Thu Nov 20, 2008 7:34 am
Forum: The Code Dump
Topic: wxNumberCtrl - a flexible wxTextCtrl accepting numbers only
Replies: 6
Views: 16616

Just a thought: You can write a customizable validator, so that it can check not only for integers but also floating point values, and the number of digits after the decimal. Also in European languages, the symbol for decimal and thousand separators are different, and also the location of separator,...
by priyank_bolia
Wed Nov 19, 2008 11:10 am
Forum: The Code Dump
Topic: wxNumberCtrl - a flexible wxTextCtrl accepting numbers only
Replies: 6
Views: 16616

I guess you can write an regular expression to check for the min and max range: like between 100 and 200
something like: [1][0-9][0-9]|200
Deriving a new control, won't be good idea just for validation, that the validator job.
by priyank_bolia
Thu Jul 31, 2008 4:39 pm
Forum: Platform Related Issues
Topic: wxAccelerator on GTK/GTK2 not working
Replies: 6
Views: 5801

You modify the menus and accelerator in codelite at runtime, is there any general reusable design?
by priyank_bolia
Wed Jul 30, 2008 5:16 am
Forum: C++ Development
Topic: Splitter window help
Replies: 4
Views: 10681

Modified the splitter sample to create three split windows, have a look at it.
by priyank_bolia
Wed Jul 30, 2008 4:26 am
Forum: C++ Development
Topic: crypto archives
Replies: 2
Views: 8614

I think encryption is in general, is there any reason to choose 7-Zip libraries?
For general encryption you can use http://www.cryptopp.com/ or wxTripleDES from http://priyank.co.in
by priyank_bolia
Wed Jul 30, 2008 4:18 am
Forum: C++ Development
Topic: Splitter window help
Replies: 4
Views: 10681

recursive splitting.
Add another window to that splitted part and split it into two.
by priyank_bolia
Tue Jul 29, 2008 4:50 am
Forum: C++ Development
Topic: sliding menu
Replies: 5
Views: 10010

regarding transparency just make the frame non-rectangular, just look at the wxWidgets sample "shaped" or at my sample:
http://forums.wxwidgets.org/viewtopic.php?t=10824

Regarding refresh try with wxBufferedDC and see if it helps.
by priyank_bolia
Sun Jul 27, 2008 1:14 pm
Forum: C++ Development
Topic: needed wxTextValidator
Replies: 1
Views: 3581

It looks to me that you have to capture the EVT_TEXT and do the filtering manually.


But I think that the GetValue, will automatically provide you the right value like "100ADD" would be returned as "100" only.