Click here to Skip to main content
15,905,504 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralSocket Programming Pin
7-Apr-04 4:21
suss7-Apr-04 4:21 
GeneralRe: Socket Programming Pin
Dave Kreskowiak7-Apr-04 5:30
mveDave Kreskowiak7-Apr-04 5:30 
GeneralRe: Socket Programming Pin
Anonymous7-Apr-04 6:01
Anonymous7-Apr-04 6:01 
GeneralRe: Socket Programming Pin
Dave Kreskowiak7-Apr-04 6:12
mveDave Kreskowiak7-Apr-04 6:12 
GeneralHelp pls !!!!! --- reg GSM Pin
itmpras7-Apr-04 3:44
itmpras7-Apr-04 3:44 
GeneralRe: Help pls !!!!! --- reg GSM Pin
Dave Kreskowiak7-Apr-04 5:34
mveDave Kreskowiak7-Apr-04 5:34 
GeneralOverflow checking Pin
Sean Capstick7-Apr-04 3:42
Sean Capstick7-Apr-04 3:42 
GeneralRe: Overflow checking Pin
Dave Kreskowiak7-Apr-04 5:47
mveDave Kreskowiak7-Apr-04 5:47 
Can't do that, it's all or nothing.

You can get around this "feature" your describing by doing you calclations in a Long type (64-bit) integer, then shifting the bits to the left by 32 bits then back to the right by 32 bits.
Dim longInt As Long = 3564530340
Dim shortInt As Integer = (longInt << 32) >> 32

Since your trying to simulate the performance of another system, you'll have to be very specific about it's behavior in overflow situations. This is because not all systems store numbers in the same format and not all systems share the same behavior in the same situation. Provide an example of the results to make sure you get the correct behavior in all circumstances.


RageInTheMachine9532
GeneralRe: Overflow checking Pin
Sean Capstick7-Apr-04 10:03
Sean Capstick7-Apr-04 10:03 
GeneralRe: Overflow checking Pin
Dave Kreskowiak8-Apr-04 2:25
mveDave Kreskowiak8-Apr-04 2:25 
QuestionHow to group multi project into single setup project Pin
Member 7660846-Apr-04 21:39
Member 7660846-Apr-04 21:39 
AnswerRe: How to group multi project into single setup project Pin
Sarvesvara (BVKS) Dasa7-Apr-04 18:34
Sarvesvara (BVKS) Dasa7-Apr-04 18:34 
Generalbrowse a dbase III (.dbf) file Pin
omdino6-Apr-04 21:31
omdino6-Apr-04 21:31 
Generalsystem name Pin
jithen_dt6-Apr-04 20:02
jithen_dt6-Apr-04 20:02 
GeneralRe: system name Pin
Dave Kreskowiak7-Apr-04 1:00
mveDave Kreskowiak7-Apr-04 1:00 
Questionhow to load word document from add-in Pin
skoizumi291106-Apr-04 17:07
sussskoizumi291106-Apr-04 17:07 
GeneralCreating help file Pin
Sreepathi6-Apr-04 16:50
Sreepathi6-Apr-04 16:50 
GeneralRe: Creating help file Pin
jithen_dt6-Apr-04 20:07
jithen_dt6-Apr-04 20:07 
GeneralDataGrid Error - Need help Pin
ibok236-Apr-04 15:20
ibok236-Apr-04 15:20 
GeneralRe: DataGrid Error - Need help Pin
Dave Kreskowiak6-Apr-04 17:48
mveDave Kreskowiak6-Apr-04 17:48 
GeneralRe: DataGrid Error - Need help Pin
ibok237-Apr-04 2:47
ibok237-Apr-04 2:47 
GeneralRe: DataGrid Error - Need help Pin
Dave Kreskowiak7-Apr-04 5:51
mveDave Kreskowiak7-Apr-04 5:51 
GeneralRe: DataGrid Error - Need help Pin
Member 7660846-Apr-04 21:33
Member 7660846-Apr-04 21:33 
GeneralDeployment with dotnetfx.exe Pin
nvmoss6-Apr-04 11:05
nvmoss6-Apr-04 11:05 
GeneralRe: Deployment with dotnetfx.exe Pin
Dave Kreskowiak6-Apr-04 11:15
mveDave Kreskowiak6-Apr-04 11: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.