|
|
| BMartins 2005-04-28, 3:57 pm |
| Please, can sameone tell me what means this sintax?
Const NIM_ADD = &H0
Thanks
BMartins
| |
| Al Reid 2005-04-28, 3:57 pm |
| "BMartins" <beatriz@pred.com.br> wrote in message news:%23S9kPm$SFHA.2128@TK2MSFTNGP15.phx.gbl...
> Please, can sameone tell me what means this sintax?
>
> Const NIM_ADD = &H0
>
> Thanks
>
> BMartins
>
>
It declares a constant named "NIM_ADD" and sets it's value to &H0 (which is the hexadecimal notation for zero)
--
Al Red
| |
| Robert 2005-04-28, 3:57 pm |
| Creates a constant named NIM_ADD
The constant has a value of zero, because &H specifies a hexadecimal number.
Since it's zero, it's no different from the decimal number 0, though.
Robert
"BMartins" <beatriz@pred.com.br> wrote in message
news:%23S9kPm$SFHA.2128@TK2MSFTNGP15.phx.gbl...
> Please, can sameone tell me what means this sintax?
>
> Const NIM_ADD = &H0
>
> Thanks
>
> BMartins
>
>
| |
| BMartins 2005-04-28, 3:57 pm |
| Thanks all.
"Al Reid" <areidjr@reidDASHhome.com> escreveu na mensagem
news:uv415r$SFHA.1148@tk2msftngp13.phx.gbl...
> "BMartins" <beatriz@pred.com.br> wrote in message
news:%23S9kPm$SFHA.2128@TK2MSFTNGP15.phx.gbl...
>
> It declares a constant named "NIM_ADD" and sets it's value to &H0 (which
is the hexadecimal notation for zero)
>
> --
>
> Al Red
>
>
| |
| Peter Aitken 2005-04-28, 3:57 pm |
| "BMartins" <beatriz@pred.com.br> wrote in message
news:%23S9kPm$SFHA.2128@TK2MSFTNGP15.phx.gbl...
> Please, can sameone tell me what means this sintax?
>
> Const NIM_ADD = &H0
>
> Thanks
>
> BMartins
>
>
No offense but you need to read the VB help and a VB tutorial book. Your
questions have been very fundamental, things you should already know bewfore
you start asking questions. You cannot expect to just sit down with a
complex tool like VB and start writing programs without some work.
--
Peter Aitken
Remove the crap from my email address before using.
| |
|
| hey...VB is only complex when *I* use it!
"Peter Aitken" <paitken@CRAPnc.rr.com> wrote in message
news:%23orVp8ATFHA.2556@TK2MSFTNGP12.phx.gbl...
> "BMartins" <beatriz@pred.com.br> wrote in message
> news:%23S9kPm$SFHA.2128@TK2MSFTNGP15.phx.gbl...
>
> No offense but you need to read the VB help and a VB tutorial book. Your
> questions have been very fundamental, things you should already know
> bewfore you start asking questions. You cannot expect to just sit down
> with a complex tool like VB and start writing programs without some work.
>
>
> --
> Peter Aitken
>
> Remove the crap from my email address before using.
>
| |
| Bob Butler 2005-04-28, 8:55 pm |
| "Lance" <chuckyboy81070-at-onehotpotatoimeanhotmail.com> wrote in
message news:OiDknbBTFHA.228@TK2MSFTNGP12.phx.gbl
> hey...VB is only complex when *I* use it!
But you already know all the answers! <g>
--
Reply to the group so all can participate
VB.Net: "Fool me once..."
| |
|
| lol!
"Bob Butler" <tiredofit@nospam.com> wrote in message
news:OdBfKRCTFHA.2756@tk2msftngp13.phx.gbl...
> "Lance" <chuckyboy81070-at-onehotpotatoimeanhotmail.com> wrote in
> message news:OiDknbBTFHA.228@TK2MSFTNGP12.phx.gbl
>
> But you already know all the answers! <g>
>
> --
> Reply to the group so all can participate
> VB.Net: "Fool me once..."
>
| |
|
| On Thu, 28 Apr 2005 12:27:23 -0400, "Peter Aitken"
<paitken@CRAPnc.rr.com> wrote:
>
>No offense but you need to read the VB help and a VB tutorial book. Your
>questions have been very fundamental, things you should already know bewfore
>you start asking questions. You cannot expect to just sit down with a
>complex tool like VB and start writing programs without some work.
That particular piece of code is from an example of how to put an icon
in the system tray. If the OP is a newbie, as stated, they may not be
familiar with the hex method of numbering, or have used constants.
|
|
|
|