Click here to Skip to main content
15,914,780 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionAutomaticaly Match and Select ComboBox Item in Visual Basic 6` Pin
muddasirmunir6-Oct-07 21:25
muddasirmunir6-Oct-07 21:25 
QuestionCompiling VB.Net Program Pin
AAGTHosting6-Oct-07 20:44
AAGTHosting6-Oct-07 20:44 
AnswerRe: Compiling VB.Net Program Pin
Christian Graus6-Oct-07 23:39
protectorChristian Graus6-Oct-07 23:39 
GeneralRe: Compiling VB.Net Program Pin
AAGTHosting7-Oct-07 20:28
AAGTHosting7-Oct-07 20:28 
AnswerRe: Compiling VB.Net Program Pin
Patrick Etc.7-Oct-07 1:22
Patrick Etc.7-Oct-07 1:22 
AnswerRe: Compiling VB.Net Program Pin
Vimalsoft(Pty) Ltd8-Oct-07 5:47
professionalVimalsoft(Pty) Ltd8-Oct-07 5:47 
Questionconverting ascii to char Pin
kclei6-Oct-07 20:04
kclei6-Oct-07 20:04 
AnswerRe: converting ascii to char Pin
Christian Graus6-Oct-07 23:40
protectorChristian Graus6-Oct-07 23:40 
You can use bit masking

char a = (val & 0xFF00) >> 8;
char b = (val & 0xFF);

The bit masking strips either the high or low byte, and the shift moves the high byte down. Untested, but this is the general idea.


Christian Graus - Microsoft MVP - C++

"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

GeneralRe: converting ascii to char Pin
Patrick Etc.7-Oct-07 1:33
Patrick Etc.7-Oct-07 1:33 
QuestionLocal DB not updated Pin
jensenx6-Oct-07 18:25
jensenx6-Oct-07 18:25 
AnswerRe: Local DB not updated Pin
jensenx6-Oct-07 18:32
jensenx6-Oct-07 18:32 
GeneralRe: Local DB not updated Pin
Dave Kreskowiak7-Oct-07 3:09
mveDave Kreskowiak7-Oct-07 3:09 
GeneralRe: Local DB not updated Pin
Paul Conrad7-Oct-07 5:49
professionalPaul Conrad7-Oct-07 5:49 
AnswerRe: Local DB not updated Pin
Guffa7-Oct-07 6:02
Guffa7-Oct-07 6:02 
GeneralRe: Local DB not updated Pin
Paul Conrad7-Oct-07 6:13
professionalPaul Conrad7-Oct-07 6:13 
QuestionZooming an Image In VB.NET Pin
Aamir Mustafa6-Oct-07 17:29
Aamir Mustafa6-Oct-07 17:29 
AnswerRe: Zooming an Image In VB.NET Pin
Christian Graus6-Oct-07 23:42
protectorChristian Graus6-Oct-07 23:42 
QuestionZooming an Image In VB.NET Pin
Aamir Mustafa6-Oct-07 17:28
Aamir Mustafa6-Oct-07 17:28 
AnswerRe: Zooming an Image In VB.NET Pin
Paul Conrad28-Oct-07 11:58
professionalPaul Conrad28-Oct-07 11:58 
QuestionHow to..... Pin
newbie@vb6-Oct-07 15:57
newbie@vb6-Oct-07 15:57 
AnswerRe: How to..... Pin
Christian Graus6-Oct-07 16:12
protectorChristian Graus6-Oct-07 16:12 
AnswerRe: How to..... Pin
Paul Conrad7-Oct-07 5:50
professionalPaul Conrad7-Oct-07 5:50 
AnswerRe: How to..... Pin
Vimalsoft(Pty) Ltd8-Oct-07 21:15
professionalVimalsoft(Pty) Ltd8-Oct-07 21:15 
QuestionHow to collect the information which hardware is connected to my pc using .Net technology.. Pin
Sasmi6-Oct-07 9:10
Sasmi6-Oct-07 9:10 
AnswerRe: How to collect the information which hardware is connected to my pc using .Net technology.. Pin
Dave Kreskowiak7-Oct-07 3:05
mveDave Kreskowiak7-Oct-07 3:05 

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.