Advertisement

Results for "Author: jose ramirez"

ASP_Volume3 #58957
Number to Text Up to Billions with Bonus Uppercase (Updated)

That's right, all positive long values up to 2147483647. This simple algorithm can translate any positive long value to its string equivalent, both English and Spanish. The principle is simple: Process three digits at a time because the cycle is repetitive every three digits. The only thing you have to append every time is the order qualifier: Thousand, Million, or Billion. The code of the main function is commented, and the other functions are just plain very easy, so no commenting there. The user interface shown here is very simple because the object of this post is the functionality! :) BONUS: Included (and made just for fun) there is a custom uppercase function. It was programmed under the principle that switching between lower and upper case, all you have to do is flip bit &H20. It also writes to the source string directly by mapping an array to the string buffer (advanced stuff). I did not benchmark, but supposedly, this upper case method should be a lot faster than regular string manipulation, although I don't know if it is faster than the VB upper case function. If you want to implement this in one of your applications, all you have to do is drop the module in. Please vote and comment. UPDATE: Run-time error 9 in uppercase function solved. It was a silly error.

ASP_Volume3 #58958
Multithreading Programming

This article tries to give the reader an overview on how to properly synchronize multiple threads in a multithreaded program by using an example project that shells a process and waits for completion with optional abort.

ASP_Volume3 #58959
Multithreading to monitor shelled process

To monitor a shelled process in order to recieve notification as to when the shelled process is finished, while maintaining the main thread free for use.

4_2005-2006 #164254
Number to Text Up to Billions with Bonus Uppercase (Updated)

That's right, all positive long values up to 2147483647. This simple algorithm can translate any positive long value to its string equivalent, both English and Spanish. The principle is simple: Process three digits at a time because the cycle is repetitive every three digits. The only thing you have to append every time is the order qualifier: Thousand, Million, or Billion. The code of the main function is commented, and the other functions are just plain very easy, so no commenting there. The user interface shown here is very simple because the object of this post is the functionality! :) BONUS: Included (and made just for fun) there is a custom uppercase function. It was programmed under the principle that switching between lower and upper case, all you have to do is flip bit &H20. It also writes to the source string directly by mapping an array to the string buffer (advanced stuff). I did not benchmark, but supposedly, this upper case method should be a lot faster than regular string manipulation, although I don't know if it is faster than the VB upper case function. If you want to implement this in one of your applications, all you have to do is drop the module in. Please vote and comment. UPDATE: Run-time error 9 in uppercase function solved. It was a silly error.

4_2005-2006 #164255
Multithreading Programming

This article tries to give the reader an overview on how to properly synchronize multiple threads in a multithreaded program by using an example project that shells a process and waits for completion with optional abort.

4_2005-2006 #164256
Multithreading to monitor shelled process

To monitor a shelled process in order to recieve notification as to when the shelled process is finished, while maintaining the main thread free for use.

5_2007-2008 #186772
Number to Text Up to Billions with Bonus Uppercase (Updated)

That's right, all positive long values up to 2147483647. This simple algorithm can translate any positive long value to its string equivalent, both English and Spanish. The principle is simple: Process three digits at a time because the cycle is repetitive every three digits. The only thing you have to append every time is the order qualifier: Thousand, Million, or Billion. The code of the main function is commented, and the other functions are just plain very easy, so no commenting there. The user interface shown here is very simple because the object of this post is the functionality! :) BONUS: Included (and made just for fun) there is a custom uppercase function. It was programmed under the principle that switching between lower and upper case, all you have to do is flip bit &H20. It also writes to the source string directly by mapping an array to the string buffer (advanced stuff). I did not benchmark, but supposedly, this upper case method should be a lot faster than regular string manipulation, although I don't know if it is faster than the VB upper case function. If you want to implement this in one of your applications, all you have to do is drop the module in. Please vote and comment. UPDATE: Run-time error 9 in uppercase function solved. It was a silly error.

5_2007-2008 #186773
Multithreading Programming

This article tries to give the reader an overview on how to properly synchronize multiple threads in a multithreaded program by using an example project that shells a process and waits for completion with optional abort.

5_2007-2008 #186774
Multithreading to monitor shelled process

To monitor a shelled process in order to recieve notification as to when the shelled process is finished, while maintaining the main thread free for use.

6_2008-2009 #209290
Number to Text Up to Billions with Bonus Uppercase (Updated)

That's right, all positive long values up to 2147483647. This simple algorithm can translate any positive long value to its string equivalent, both English and Spanish. The principle is simple: Process three digits at a time because the cycle is repetitive every three digits. The only thing you have to append every time is the order qualifier: Thousand, Million, or Billion. The code of the main function is commented, and the other functions are just plain very easy, so no commenting there. The user interface shown here is very simple because the object of this post is the functionality! :) BONUS: Included (and made just for fun) there is a custom uppercase function. It was programmed under the principle that switching between lower and upper case, all you have to do is flip bit &H20. It also writes to the source string directly by mapping an array to the string buffer (advanced stuff). I did not benchmark, but supposedly, this upper case method should be a lot faster than regular string manipulation, although I don't know if it is faster than the VB upper case function. If you want to implement this in one of your applications, all you have to do is drop the module in. Please vote and comment. UPDATE: Run-time error 9 in uppercase function solved. It was a silly error.

6_2008-2009 #209291
Multithreading Programming

This article tries to give the reader an overview on how to properly synchronize multiple threads in a multithreaded program by using an example project that shells a process and waits for completion with optional abort.

6_2008-2009 #209292
Multithreading to monitor shelled process

To monitor a shelled process in order to recieve notification as to when the shelled process is finished, while maintaining the main thread free for use.

7_2009-2012 #231808
Number to Text Up to Billions with Bonus Uppercase (Updated)

That's right, all positive long values up to 2147483647. This simple algorithm can translate any positive long value to its string equivalent, both English and Spanish. The principle is simple: Process three digits at a time because the cycle is repetitive every three digits. The only thing you have to append every time is the order qualifier: Thousand, Million, or Billion. The code of the main function is commented, and the other functions are just plain very easy, so no commenting there. The user interface shown here is very simple because the object of this post is the functionality! :) BONUS: Included (and made just for fun) there is a custom uppercase function. It was programmed under the principle that switching between lower and upper case, all you have to do is flip bit &H20. It also writes to the source string directly by mapping an array to the string buffer (advanced stuff). I did not benchmark, but supposedly, this upper case method should be a lot faster than regular string manipulation, although I don't know if it is faster than the VB upper case function. If you want to implement this in one of your applications, all you have to do is drop the module in. Please vote and comment. UPDATE: Run-time error 9 in uppercase function solved. It was a silly error.

7_2009-2012 #231809
Multithreading Programming

This article tries to give the reader an overview on how to properly synchronize multiple threads in a multithreaded program by using an example project that shells a process and waits for completion with optional abort.

7_2009-2012 #231810
Multithreading to monitor shelled process

To monitor a shelled process in order to recieve notification as to when the shelled process is finished, while maintaining the main thread free for use.

Languages
Top Categories
Global Discovery