Code Comments
Programming Forum and web based access to our favorite programming groups.Please, can sameone tell me what means this sintax? Const NIM_ADD = &H0 Thanks BMartins
Post Follow-up to this message"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
Post Follow-up to this messageCreates 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 > >
Post Follow-up to this messageThanks 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 > >
Post Follow-up to this message"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.
Post Follow-up to this messagehey...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. >
Post Follow-up to this message"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..."
Post Follow-up to this messagelol! "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..." >
Post Follow-up to this messageOn 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 bewfor e >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.
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.