Click here to Skip to main content
15,890,579 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: vb project help Pin
Dave Kreskowiak30-Nov-14 13:25
mveDave Kreskowiak30-Nov-14 13:25 
QuestionEvents Pin
jkirkerx30-Nov-14 9:35
professionaljkirkerx30-Nov-14 9:35 
QuestionHelp for code in vb.net Pin
Member 1127214729-Nov-14 16:21
Member 1127214729-Nov-14 16:21 
SuggestionRe: Help for code in vb.net Pin
Richard MacCutchan29-Nov-14 23:26
mveRichard MacCutchan29-Nov-14 23:26 
Questionwordwrap on datagridtextboxcolumn Pin
Member 1126800728-Nov-14 16:39
Member 1126800728-Nov-14 16:39 
QuestionHow can I convert the VBA OCT() function in to a VB .NET function Pin
Stephen Holdorf28-Nov-14 5:17
Stephen Holdorf28-Nov-14 5:17 
AnswerRe: How can I convert the VBA OCT() function in to a VB .NET function Pin
Richard MacCutchan28-Nov-14 5:56
mveRichard MacCutchan28-Nov-14 5:56 
AnswerRe: How can I convert the VBA OCT() function in to a VB .NET function Pin
Richard Deeming28-Nov-14 8:12
mveRichard Deeming28-Nov-14 8:12 
Your description of the Oct function appears to be wrong:

Returns a string representing the octal value of a number.

In VB.NET, you can either continue to use the Oct method[^], or you can use the Convert.ToString method[^], passing 8 as the base:
VB.NET
Dim octString As String = Convert.ToString(nGroup, 8)
' Or: Dim octString As String = Oct(nGroup)




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


Questiondrawline Pin
JR21227-Nov-14 20:29
JR21227-Nov-14 20:29 
AnswerRe: drawline Pin
Eddy Vluggen28-Nov-14 7:55
professionalEddy Vluggen28-Nov-14 7:55 
GeneralRe: drawline Pin
JR21228-Nov-14 18:11
JR21228-Nov-14 18:11 
GeneralRe: drawline Pin
Eddy Vluggen30-Nov-14 4:44
professionalEddy Vluggen30-Nov-14 4:44 
GeneralRe: drawline Pin
JR2122-Dec-14 20:45
JR2122-Dec-14 20:45 
QuestionApplication Software with Online Database Pin
akashangel26-Nov-14 18:39
akashangel26-Nov-14 18:39 
AnswerRe: Application Software with Online Database Pin
Richard MacCutchan26-Nov-14 20:40
mveRichard MacCutchan26-Nov-14 20:40 
AnswerRe: Application Software with Online Database Pin
Bernhard Hiller27-Nov-14 0:36
Bernhard Hiller27-Nov-14 0:36 
QuestionDeserialize Json and store values Pin
jkirkerx26-Nov-14 6:56
professionaljkirkerx26-Nov-14 6:56 
AnswerRe: Deserialize Json and store values Pin
Eddy Vluggen26-Nov-14 8:09
professionalEddy Vluggen26-Nov-14 8:09 
GeneralRe: Deserialize Json and store values Pin
jkirkerx26-Nov-14 8:44
professionaljkirkerx26-Nov-14 8:44 
AnswerRe: Deserialize Json and store values Pin
Richard Deeming26-Nov-14 8:20
mveRichard Deeming26-Nov-14 8:20 
GeneralRe: Deserialize Json and store values [Solved] Pin
jkirkerx26-Nov-14 8:43
professionaljkirkerx26-Nov-14 8:43 
QuestionDrag drop multiple rows between datagrids Pin
tommydk26-Nov-14 1:09
tommydk26-Nov-14 1:09 
AnswerRe: Drag drop multiple rows between datagrids Pin
Eddy Vluggen26-Nov-14 8:12
professionalEddy Vluggen26-Nov-14 8:12 
GeneralRe: Drag drop multiple rows between datagrids Pin
tommydk27-Nov-14 7:55
tommydk27-Nov-14 7:55 
GeneralRe: Drag drop multiple rows between datagrids Pin
Eddy Vluggen28-Nov-14 5:26
professionalEddy Vluggen28-Nov-14 5:26 

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.