Click here to Skip to main content
Page 1 of 7
Page Size: 10 · 25 · 50


Author filtered by: Volynsky Alex [x]
Answer 13 May 2013   license: CPOL
The same problem you can solve by Boost,for example see following code:#include #include using namespace std;using namespace boost::gregorian;int main(){ date_duration dd = date(2000, 1, 1) - date(1900, 1, 1); dd =...
Answer 13 May 2013   license: CPOL
To implement this task, you could use the following code:#include #include #include using namespace std;time_t dateToTimeT(int month, int day, int year) { tm tmp = tm(); tmp.tm_mday = day; tmp.tm_mon = month - 1; tmp.tm_year = year - 1900;...
Answer 12 May 2013   license: CPOL
To create some text boxes dynamically you can add in scope of button_click following code:private void button1_Click(object sender, EventArgs e){ TextBox tb1 = new TextBox(); tb1.ID = "textBox1"; tb1.Text = "Hi"; yourform.Controls.Add(tb1)}Also, try read the following...
Re: My vote of 5 by Volynsky Alex
Forum Message 11 May 2013  
:thumbsup: Member 9954058 :-D ale44ko
Answer 9 May 2013   license: CPOL
There are many ways including formatting and generating html string from code of command line application. But there are some class which can validate like HtmlTextWriter [ http://msdn.microsoft.com/en-us/library/system.web.ui.htmltextwriter.aspx ] It writes markup characters and text to an...
Answer 5 May 2013   license: CPOL
Try to use something like: TCHAR Buffer[256] = "Hello"; .... hFile = CreateFile("rw.txt", GENERIC_WRITE, 0, NULL,CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (hFile == INVALID_HANDLE_VALUE) { printf("ERROR %x \n",GetLastError()); ...
Forum Message 29 Apr 2013  
Let's look here: http://support.google.com/accounts/bin/answer.py?hl=en&answer=27442[
Re: My vote of 5 by Volynsky Alex
Forum Message 28 Apr 2013  
Thank you very much ascrum! :-D :-D :-D Regards, Alex. ale44ko
Answer 26 Apr 2013   license: CPOL
Parsing .eml files in C#:http://blog.onderweg.eu/2010/12/parsing-eml-files-in-c/[^]and also, you can read the following post:http://www.c-sharpcorner.com/Blogs/11103/read-outlook-eml-file-without-outlook-api-in-C-Sharp.aspx[^]
how to get computer's sound? by Volynsky Alex
Answer 25 Apr 2013   license: CPOL
Hi,Nowadays technologies are so developed that they free developers from having to cover much of the 'technical' aspects of their job and let them concentrate on the core issues they have. One of such helpers is the core concept of object-oriented languages, and C++ too, which of course is -...
Forum Message 18 Apr 2013  
Thank you very much 3iii! :) :-D :-D Regards, Alex. ale44ko
Maniputing time with C++ by Volynsky Alex
Answer 26 Mar 2013   license: CPOL
For example you can try to settle it, by following way:#include #include int main(){ time_t your_time = .... struct tm your_time_tm = *localtime( &your_time); struct tm then_tm = your_time_tm; then_tm.tm_sec += 100; mktime(...
Answer 24 Mar 2013   license: CPOL
Hi Maxim!I would advise to read about the RSA(Rivest-Shamir-Adleman algorithm):http://en.wikipedia.org/wiki/RSA_%28algorithm%29[^]http://homepages.math.uic.edu/~leon/mcs425-s08/handouts/RSA.pdf[^]Try read about...
C++
Answer 24 Mar 2013   license: CPOL
Example ( from http://msdn.microsoft.com/en-us/library/windows/desktop/ms686927%28v=vs.85%29.aspx[^] ) :#include #include #define THREADCOUNT 2HANDLE ghMutex; DWORD WINAPI WriteToDatabase( LPVOID );int main( void ){ HANDLE aThread[THREADCOUNT]; ...
C++
Answer 23 Mar 2013   license: CPOL
Totally agree with the previous answer!'\r' is the carriage return character. The following repeats the loop until the user has pressed the Return key.while(ch!='\r'){ ch=getche();}
C++
Re: Startup project by Volynsky Alex
Forum Message 27 Feb 2013  
Hello Member mosp, Thank you for your comment. But, unfortunately, I did not understand your question Could you describe the issue in more detail, and I'm happy to try to answer it. Regards,
Re: IUsersView by Volynsky Alex
Forum Message 14 Feb 2013  
Your are welcome sami02! :) :) Alex. ale44ko
Re: My vote of 5 by Volynsky Alex
Forum Message 13 Feb 2013  
Thank you very oldemirobaloi! :) :) Regards, Alex. ale44ko
Re: My vote of 5 by Volynsky Alex
Forum Message 13 Feb 2013  
Thank you very much rajn_mca! :) :) Regards, Alex. ale44ko
Re: My vote of 5 by Volynsky Alex
Forum Message 5 Feb 2013  
Thank you very much Raghvendra Singh Verma! :) :) Regards, Alex. ale44ko
Re: IUsersView by Volynsky Alex
Forum Message 3 Feb 2013  
Thank you very much sami02 for your kind words :) In my discussion of MVC I finished with some problems of MVC in WinForms - particularly how to deal with view logic and view state. As I wrote in
Re: My vote of 5 by Volynsky Alex
Forum Message 3 Feb 2013  
Thank you very much Grigor_I! :) :) Regards, Alex. ale44ko
Re: Amazing work! by Volynsky Alex
Forum Message 3 Feb 2013  
Thank you very much GlebGeglov! :) :) Regards, Alex. ale44ko
Re: My vote of 5 by Volynsky Alex
Forum Message 3 Feb 2013  
Thank you very much mk4you7! :) :) ale44ko
Re: Very good! by Volynsky Alex
Forum Message 3 Feb 2013  
Do not mention it...:) Regards, Alex. ale44ko
Re: Nice by Volynsky Alex
Forum Message 14 Jan 2013  
Merci beaucoup Member mosp! :cool: Thank you very much Member mosp! ale44ko
Re: My vote of 5 by Volynsky Alex
Forum Message 7 Jan 2013  
Thank you very much simemble! :) :) :) ale44ko
How to create Trial version by Volynsky Alex
Answer 25 Dec 2012   license: CPOL
If customers can use your app for free during a trial period, you can design your app to exclude or limit some features during the trial period. You can also enable features, such as banners or watermarks, that are shown only during the trial, before a customer buys your app. Let's look at how...
C#
Re: My vote of 5 by Volynsky Alex
Forum Message 25 Dec 2012  
Thank you very much TalSt! :) :) :) ale44ko
asynchronous ADO in C++ by Volynsky Alex
Answer 27 Nov 2012   license: CPOL
Hi iron,For exampple it is possible to do with C++/Qt....Sometimes, it's necessary to execute some queries to database in asynchronous way (multi-thread), for example to avoid to freeze a GUI if a query is too long to execute.To make easier to work with asynchronous queries, QxOrm library...
Re: My vote of 5 by Volynsky Alex
Forum Message 20 Nov 2012  
Thank you very much Reza! :) :) ale44ko
Re: Database by Volynsky Alex
Forum Message 12 Nov 2012  
Hi Rafael! I apologize for the late reply..., but I was on vacation. For example, you can add a function (a function that makes changes to the database) to the model and call a function every time
Re: Good artic;e! by Volynsky Alex
Re: Multiple views by Volynsky Alex
Forum Message 15 Oct 2012  
Your are welcome Bo K! :) Alex. ale44ko
Answer 14 Oct 2012   license: CPOL
ImageListView is a .NET 2.0 control for displaying a list of image files:ImageListView[^]
C#
Answer 14 Oct 2012   license: CPOL
Let's see following links:http://fox.wikis.com/wc.dll?Wiki~C0000005ExErrorhttp://www.whollygenes.com/forums201/index.php?showtopic=14839
C++
Answer 14 Oct 2012   license: CPOL
Please look following link about update UI:http://social.msdn.microsoft.com/Forums/en/winformsdatacontrols/thread/85521acc-a17c-40d8-bd8c-f1f45b5e0673[^]
C#
Re: Multiple views by Volynsky Alex
Forum Message 14 Oct 2012  
Thanks Bo K for your kind words :) But you do not have to implement a separate controller for each view... The central idea behind MVC is code reusability and separation of concerns. The design pat
Answer 24 Sep 2012   license: CPOL
Try to read following article:http://www.fixdllexe.com/cal.exe-34839.html[^]and here:http://www.pcmaxutilities.com/wikidllfiles/i-just-call-exe-error-fix-guide.html[^]How to Fix i just call.exe error manually Start Registry Editor by clicking the Start button, typing regedit in the...
C++
about # in preprocessor by Volynsky Alex
Answer 24 Sep 2012   license: CPOL
In the C and C++ programming languages, an #include guard, sometimes called a macro guard, is a particular construct used to avoid the problem of double inclusion when dealing with the include directive. The addition of #include guards to a header file is one way to make that file idempotent.
Re: My vote of 5 by Volynsky Alex
Forum Message 24 Sep 2012  
Thanks Armando! ale44ko
Answer 20 Sep 2012   license: CPOL
Try to read following...
MFC
Answer 10 Sep 2012   license: CPOL
Getting time from another machine in C#.Net:http://joymonscode.blogspot.co.il/2012/06/getting-time-from-another-machine-in.html[^]
C#
Answer 6 Sep 2012   license: CPOL
Regular expression, or often known as regex, is a pattern that consist of rules used to match a certain set of strings. They are extremely powerful, and you’ll need them in most programming languages you come across, especially when there’s a need to scan and match context for further...
Answer 26 Aug 2012   license: CPOL
The lineMonitorTones function (http://msdn.microsoft.com/en-us/library/windows/desktop/ms735998%28v=vs.85%29.aspx) enables and disables the detection of inband tones on the call. Each time a specified tone is detected, a message is sent to the application.This function succeeds if tone...
Good tip! by Volynsky Alex
Forum Message 26 Aug 2012  
+5! ale44ko
Answer 23 Aug 2012   license: CPOL
Please read it:http://stackoverflow.com/questions/1228567/how-to-call-the-rj45-as-a-serial-port-for-interfacing[^]Findcontrol using a non recursive approach[^]
C++
Forum Message 18 Aug 2012  
First of all karthikin, allow me to thank you so much for your kind words Of course you can use something else ... For example you can use the following code: static void Ma
Answer 14 Aug 2012   license: CPOL
The Huffman encoding algorithm is an optimal compression algorithm when only the frequency of individual letters are used to compress the data. (There are better algorithms that can use more structure of the file than just letter frequencies.) The idea behind the algorithm is that if you have...
C++
Answer 14 Aug 2012   license: CPOL
Hi Eugen!In this[^] article, an autor is shows a specific transaction level modeling approach for performance evaluation of hardware/software architectures. This approach relies on a generic execution model that exhibits light modeling effort. Created models are used to evaluate by simulation...

Page 1 of 7
1 2 3 4 5 6 7


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid