Click here to Skip to main content
15,917,997 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Dual monitors and fullpage Pin
Spaz809-Feb-06 6:51
Spaz809-Feb-06 6:51 
GeneralRe: Dual monitors and fullpage Pin
Dave Kreskowiak9-Feb-06 8:09
mveDave Kreskowiak9-Feb-06 8:09 
GeneralRe: Dual monitors and fullpage Pin
Spaz809-Feb-06 8:20
Spaz809-Feb-06 8:20 
GeneralRe: Dual monitors and fullpage Pin
Dave Kreskowiak10-Feb-06 5:51
mveDave Kreskowiak10-Feb-06 5:51 
QuestionHoe to trace system during idle position Pin
Muhusin Khan9-Feb-06 4:35
Muhusin Khan9-Feb-06 4:35 
AnswerRe: Hoe to trace system during idle position Pin
Dave Kreskowiak9-Feb-06 5:58
mveDave Kreskowiak9-Feb-06 5:58 
QuestionAlpha Numeric Serial Numbers Pin
RichardBerry9-Feb-06 4:10
RichardBerry9-Feb-06 4:10 
AnswerRe: Alpha Numeric Serial Numbers Pin
Guffa9-Feb-06 6:11
Guffa9-Feb-06 6:11 
Keep the current serial number in numeric format, and convert it to the coded format. Increasing a number by one is much easier than increasing a string...

Put the characters that you want in a string, then get the length of the string and you have the numeric base to use for converting the alphabetic part of the code.

Pseudo code:

chars = "ABC...XYZ"<br />
charCount = Len(chars)<br />
serial = serial + 1<br />
numericPart = serial mod 1000<br />
alphaPart = serial div 1000<br />
alpha3 = alphaPart mod charCount<br />
alphaPart = alphaPart div charCount<br />
alpha2 = alpahPart mod charCount<br />
alphaPart = alphaPart div charCount<br />
alpha1 = alphaPart<br />
code = chars(alpha1)+chars(alpha2)+chars(alpha3)+numericPart.Format("000")


---
b { font-weight: normal; }

QuestionShared Methods Pin
csmod9-Feb-06 4:00
csmod9-Feb-06 4:00 
AnswerRe: Shared Methods Pin
Dave Kreskowiak9-Feb-06 4:27
mveDave Kreskowiak9-Feb-06 4:27 
GeneralRe: Shared Methods Pin
csmod9-Feb-06 4:41
csmod9-Feb-06 4:41 
GeneralRe: Shared Methods Pin
Dave Kreskowiak9-Feb-06 5:34
mveDave Kreskowiak9-Feb-06 5:34 
QuestionHow to open large database in Pocket PC? Pin
Pius__X9-Feb-06 3:08
Pius__X9-Feb-06 3:08 
AnswerRe: How to open large database in Pocket PC? Pin
Colin Angus Mackay9-Feb-06 3:33
Colin Angus Mackay9-Feb-06 3:33 
Questionprogress bar Pin
raj kumar reddy9-Feb-06 2:09
raj kumar reddy9-Feb-06 2:09 
AnswerRe: progress bar Pin
Dave Kreskowiak9-Feb-06 4:25
mveDave Kreskowiak9-Feb-06 4:25 
AnswerRe: progress bar Pin
JUNEYT9-Feb-06 11:15
JUNEYT9-Feb-06 11:15 
GeneralRe: progress bar Pin
Dave Kreskowiak9-Feb-06 11:21
mveDave Kreskowiak9-Feb-06 11:21 
GeneralRe: progress bar Pin
JUNEYT10-Feb-06 1:57
JUNEYT10-Feb-06 1:57 
QuestionRefresh my memory....... Pin
daviiie9-Feb-06 0:36
daviiie9-Feb-06 0:36 
AnswerRe: Refresh my memory....... Pin
RichardBerry9-Feb-06 3:56
RichardBerry9-Feb-06 3:56 
AnswerRe: Refresh my memory....... Pin
Dave Kreskowiak9-Feb-06 4:23
mveDave Kreskowiak9-Feb-06 4:23 
QuestionHow to select a range of charater in word Pin
cylix20008-Feb-06 21:29
cylix20008-Feb-06 21:29 
AnswerRe: How to select a range of charater in word Pin
cylix20008-Feb-06 22:40
cylix20008-Feb-06 22:40 
Questiondesign receiver to receive xml files Pin
jacktundra8-Feb-06 21:15
jacktundra8-Feb-06 21:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.