Click here to Skip to main content
15,889,462 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Deleting Objects Pin
Daniel Kanev31-Aug-07 3:18
Daniel Kanev31-Aug-07 3:18 
QuestionSending an Email Pin
EvanSaunders30-Aug-07 21:26
EvanSaunders30-Aug-07 21:26 
AnswerRe: Sending an Email Pin
Naji El Kotob30-Aug-07 21:40
Naji El Kotob30-Aug-07 21:40 
GeneralRe: Sending an Email Pin
EvanSaunders30-Aug-07 21:45
EvanSaunders30-Aug-07 21:45 
Questionsplit function Pin
Rupesh Kumar Swami30-Aug-07 21:13
Rupesh Kumar Swami30-Aug-07 21:13 
AnswerRe: split function Pin
iprasad00730-Aug-07 21:26
iprasad00730-Aug-07 21:26 
GeneralRe: split function Pin
Rupesh Kumar Swami30-Aug-07 21:46
Rupesh Kumar Swami30-Aug-07 21:46 
AnswerRe: split function Pin
Tom Deketelaere30-Aug-07 22:51
professionalTom Deketelaere30-Aug-07 22:51 
The problem with this is that the split function expects a array of chars and when you give it a string it just uses the first char (in this case the "a"). I don't imidiatly know how you could solve this but I have a workaround:

Dim path, str, seperat As String
        str = "0\0\0\0and--->Caption1"
        seperat = "and--->"
        Dim Title As String
        str = str.Replace(seperat, "~")
        Dim ItemInfo() As String = str.Split("~")
        path = ItemInfo(0)
        Title = ItemInfo(1)

basicly the same code just that I replace the seperat string with "~" before splitting. This way ther is only 1 char to split on (or string of 1 char) and it works perfectly

hope this helps
GeneralRe: split function Pin
KeithF31-Aug-07 0:10
KeithF31-Aug-07 0:10 
GeneralRe: split function Pin
Rupesh Kumar Swami31-Aug-07 0:30
Rupesh Kumar Swami31-Aug-07 0:30 
AnswerRe: split function [modified] Pin
Fahad Sadah31-Aug-07 6:51
Fahad Sadah31-Aug-07 6:51 
QuestionVb.Net App does not allow system to log off when running Pin
thedom230-Aug-07 20:09
thedom230-Aug-07 20:09 
AnswerRe: Vb.Net App does not allow system to log off when running Pin
Colin Angus Mackay30-Aug-07 21:31
Colin Angus Mackay30-Aug-07 21:31 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
thedom230-Aug-07 23:22
thedom230-Aug-07 23:22 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
Tom Deketelaere30-Aug-07 23:48
professionalTom Deketelaere30-Aug-07 23:48 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
thedom231-Aug-07 1:05
thedom231-Aug-07 1:05 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
Colin Angus Mackay31-Aug-07 2:02
Colin Angus Mackay31-Aug-07 2:02 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
thedom231-Aug-07 2:08
thedom231-Aug-07 2:08 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
Dave Kreskowiak31-Aug-07 3:47
mveDave Kreskowiak31-Aug-07 3:47 
QuestionHow to Make a folder virtual folder using vb 6.0? Pin
sivaraman_sankaranarayanan30-Aug-07 19:24
sivaraman_sankaranarayanan30-Aug-07 19:24 
AnswerRe: How to Make a folder virtual folder using vb 6.0? Pin
Dave Kreskowiak31-Aug-07 3:41
mveDave Kreskowiak31-Aug-07 3:41 
GeneralRe: How to Make a folder virtual folder using vb 6.0? Pin
Paul Conrad23-Dec-07 15:04
professionalPaul Conrad23-Dec-07 15:04 
QuestionSelecting next row in datagrid Pin
jensenx30-Aug-07 18:11
jensenx30-Aug-07 18:11 
AnswerRe: Selecting next row in datagrid Pin
Naji El Kotob30-Aug-07 21:51
Naji El Kotob30-Aug-07 21:51 
Questionediting cells in a datagridview Pin
steve_rm30-Aug-07 16:33
steve_rm30-Aug-07 16:33 

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.