Advertisement

Results for "Author: jose pablo ramirez vargas"

ASP_Volume2 #35930
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_Volume2 #38827
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.

ASP_Volume2 #38978
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.

C_Volume2 #76992
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.

C_Volume2 #79889
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.

C_Volume2 #80040
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.

Java_Volume1 #95536
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.

Java_Volume1 #98433
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.

Java_Volume1 #98584
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.

2_2002-2004 #122683
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.

2_2002-2004 #125580
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.

2_2002-2004 #125731
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.

3_2004-2005 #141227
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.

3_2004-2005 #144124
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.

3_2004-2005 #144275
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.

Languages
Top Categories
Global Discovery