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

Visual Basic

 
QuestionProblem Deploying my Application with Access with the Correct Mappings Pin
Vimalsoft(Pty) Ltd29-Aug-07 0:18
professionalVimalsoft(Pty) Ltd29-Aug-07 0:18 
AnswerRe: Problem Deploying my Application with Access with the Correct Mappings Pin
Dave Kreskowiak29-Aug-07 6:54
mveDave Kreskowiak29-Aug-07 6:54 
GeneralRe: Problem Deploying my Application with Access with the Correct Mappings Pin
Vimalsoft(Pty) Ltd29-Aug-07 20:09
professionalVimalsoft(Pty) Ltd29-Aug-07 20:09 
GeneralRe: Problem Deploying my Application with Access with the Correct Mappings Pin
Dave Kreskowiak30-Aug-07 1:42
mveDave Kreskowiak30-Aug-07 1:42 
GeneralRe: Problem Deploying my Application with Access with the Correct Mappings Pin
Vimalsoft(Pty) Ltd30-Aug-07 3:30
professionalVimalsoft(Pty) Ltd30-Aug-07 3:30 
QuestionCrystal Report crystaldecisions.vsdesigner error Pin
aqui_i28-Aug-07 23:31
aqui_i28-Aug-07 23:31 
QuestionDeleting an element from an array Pin
KOTO-G28-Aug-07 21:38
KOTO-G28-Aug-07 21:38 
AnswerRe: Deleting an element from an array Pin
Csharp™28-Aug-07 22:08
Csharp™28-Aug-07 22:08 
you can use Array.Clear to remove the item, then if you wish you could always resize the array ( you don't have to do that part tho )
eg:
<font color="#008000">'/// say i wanted to remove item 15 in the array<br />
'/// i'd specify the Array to remove it from as 1st parameter ( arrBooks )<br />
'/// i'd specify the index of the item to remove as 2nd parameter ( 15 in this case )<br />
'/// i'd specify the amount of items to remove from that point as 3rd parameter ( ie: 1 item to remove just position 15 )</font><br />
Array.Clear(arrBooks, 15, 1)<br />
<font color="#008000">'/// then if you wish to resize the arrBooks to account for the deleted item ( s )</font> <br />
Array.Resize(arrBooks, " the new size here as an integer " )

hope it helps Smile | :)




<--- my signature --->

<font color="blue">Csharp</font> me = (<font color="blue">Csharp</font>)Dynamic_Sysop; <font color="#008000">// My Signature.</font><br><font color="#008000">$twins</font> = <font color="#008000">me.twins</font>(<font color="#800080">"Taylor"</font> , <font color="#800080">"Delta"</font>); <font color="#C0C0C0">// My twin daughters.</font><br>echo <font color="#008000">$twins</font>;

AnswerRe: Deleting an element from an array Pin
Christian Graus29-Aug-07 0:16
protectorChristian Graus29-Aug-07 0:16 
AnswerRe: Deleting an element from an array Pin
SHatchard29-Aug-07 3:59
SHatchard29-Aug-07 3:59 
Questionhow to Add ListviewItem in ListViewGroup ? Pin
Rizwan Bashir28-Aug-07 20:48
Rizwan Bashir28-Aug-07 20:48 
AnswerRe: how to Add ListviewItem in ListViewGroup ? Pin
Dave Kreskowiak29-Aug-07 4:39
mveDave Kreskowiak29-Aug-07 4:39 
GeneralRe: how to Add ListviewItem in ListViewGroup ? Pin
Rizwan Bashir29-Aug-07 23:15
Rizwan Bashir29-Aug-07 23:15 
Questionmemory usage is too high? Pin
jamilkhan00728-Aug-07 20:46
jamilkhan00728-Aug-07 20:46 
AnswerRe: memory usage is too high? Pin
Christian Graus28-Aug-07 20:48
protectorChristian Graus28-Aug-07 20:48 
QuestionFolder that have write access to all users? Pin
jamilkhan00728-Aug-07 20:39
jamilkhan00728-Aug-07 20:39 
AnswerRe: Folder that have write access to all users? Pin
Vasudevan Deepak Kumar29-Aug-07 3:26
Vasudevan Deepak Kumar29-Aug-07 3:26 
AnswerRe: Folder that have write access to all users? Pin
Dave Kreskowiak29-Aug-07 4:30
mveDave Kreskowiak29-Aug-07 4:30 
AnswerRe: Folder that have write access to all users? Pin
jamilkhan00729-Aug-07 20:15
jamilkhan00729-Aug-07 20:15 
GeneralRe: Folder that have write access to all users? Pin
Dave Kreskowiak30-Aug-07 5:00
mveDave Kreskowiak30-Aug-07 5:00 
QuestionWhat is wrong with oledb code Pin
Vimalsoft(Pty) Ltd28-Aug-07 20:22
professionalVimalsoft(Pty) Ltd28-Aug-07 20:22 
AnswerRe: What is wrong with oledb code Pin
Dave Kreskowiak29-Aug-07 4:42
mveDave Kreskowiak29-Aug-07 4:42 
GeneralRe: What is wrong with oledb code Pin
Vimalsoft(Pty) Ltd29-Aug-07 21:54
professionalVimalsoft(Pty) Ltd29-Aug-07 21:54 
QuestionUsing ADO.net from VB.net Pin
Wlink28-Aug-07 20:19
Wlink28-Aug-07 20:19 
AnswerRe: Using ADO.net from VB.net Pin
Vimalsoft(Pty) Ltd28-Aug-07 20:40
professionalVimalsoft(Pty) Ltd28-Aug-07 20:40 

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.