Click here to Skip to main content
15,922,894 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to logoff using Windows Service Pin
Dave Sexton16-Nov-06 19:34
Dave Sexton16-Nov-06 19:34 
GeneralThanks to kulazfuk and Dave Pin
BSRK17-Nov-06 18:41
BSRK17-Nov-06 18:41 
QuestionShared Memory Pin
PlescaSorin16-Nov-06 0:52
PlescaSorin16-Nov-06 0:52 
AnswerRe: Shared Memory Pin
nlarson1116-Nov-06 4:01
nlarson1116-Nov-06 4:01 
AnswerRe: Shared Memory Pin
Dave Kreskowiak16-Nov-06 6:15
mveDave Kreskowiak16-Nov-06 6:15 
QuestionWhats the meaning of 2 declarations. Pin
ashwath197915-Nov-06 23:05
ashwath197915-Nov-06 23:05 
AnswerRe: Whats the meaning of 2 declarations. Pin
The ANZAC15-Nov-06 23:06
The ANZAC15-Nov-06 23:06 
AnswerRe: Whats the meaning of 2 declarations. Pin
Dave Kreskowiak16-Nov-06 4:03
mveDave Kreskowiak16-Nov-06 4:03 
ashwath1979 wrote:
Const ma111VID As Short = &H846S


The literal type character 'S' just means that the number, hexadecimal 846, should be forced to a Short datatype. In this case, it's meaningless because the type that the literal is being assigned to is already a Short. In other words, the 'S' is redundant.


ashwath1979 wrote:
Const RFCMD_REPRGM_CONFIRM As Int16 = &H691A


The 'A' is part of the number, not like the 'S' in your previous example. The '&H' part specifies that the number is in hexadecimal format. Hexadecimal is Base16, which has values that go from 0 to F (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F). In your example, the number in hex is 691A, or decimal 26906.


Dave Kreskowiak
Microsoft MVP - Visual Basic


GeneralRe: Whats the meaning of 2 declarations. Pin
ashwath197916-Nov-06 19:16
ashwath197916-Nov-06 19:16 
QuestionHow can i replace all apostrophes on DataSet? Pin
murat_turhan15-Nov-06 23:01
murat_turhan15-Nov-06 23:01 
AnswerRe: How can i replace all apostrophes on DataSet? Pin
_mubashir16-Nov-06 0:27
_mubashir16-Nov-06 0:27 
GeneralRe: How can i replace all apostrophes on DataSet? Pin
murat_turhan16-Nov-06 3:22
murat_turhan16-Nov-06 3:22 
QuestionWhats the meaning of below declarations Pin
ashwath197915-Nov-06 22:28
ashwath197915-Nov-06 22:28 
QuestionIs there something wrong with this line...? Pin
penguin500015-Nov-06 21:57
penguin500015-Nov-06 21:57 
AnswerRe: Is there something wrong with this line...? Pin
Christian Graus15-Nov-06 22:06
protectorChristian Graus15-Nov-06 22:06 
QuestionRe: Is there something wrong with this line...? Pin
penguin500016-Nov-06 10:33
penguin500016-Nov-06 10:33 
AnswerRe: Is there something wrong with this line...? Pin
Christian Graus16-Nov-06 10:37
protectorChristian Graus16-Nov-06 10:37 
GeneralRe: Is there something wrong with this line...? Pin
penguin500016-Nov-06 12:25
penguin500016-Nov-06 12:25 
GeneralRe: Is there something wrong with this line...? Pin
Christian Graus16-Nov-06 12:27
protectorChristian Graus16-Nov-06 12:27 
Questionvb.net - ORACLE Pin
FeRtoll15-Nov-06 20:30
FeRtoll15-Nov-06 20:30 
AnswerRe: vb.net - ORACLE Pin
b43r_3oo315-Nov-06 22:32
b43r_3oo315-Nov-06 22:32 
QuestionDatagrid Pin
Subjugate15-Nov-06 20:15
Subjugate15-Nov-06 20:15 
AnswerRe: Datagrid Pin
Tamimi - Code15-Nov-06 20:23
Tamimi - Code15-Nov-06 20:23 
GeneralRe: Datagrid Pin
Subjugate15-Nov-06 20:58
Subjugate15-Nov-06 20:58 
GeneralRe: Datagrid Pin
Tamimi - Code15-Nov-06 21:39
Tamimi - Code15-Nov-06 21:39 

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.