Click here to Skip to main content
15,913,773 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralShowing a form inside a control Pin
THEMYTH31-Jul-03 3:31
THEMYTH31-Jul-03 3:31 
GeneralPlug-in for MS Outlook. please help Pin
Atif Bashir30-Jul-03 17:20
Atif Bashir30-Jul-03 17:20 
GeneralExecution from server Pin
JimWDurbin30-Jul-03 12:06
JimWDurbin30-Jul-03 12:06 
GeneralRe: Execution from server Pin
Wayne Phipps31-Jul-03 4:31
Wayne Phipps31-Jul-03 4:31 
QuestionHow do I save to file? Pin
MrGee30-Jul-03 4:32
MrGee30-Jul-03 4:32 
AnswerRe: How do I save to file? Pin
Martin Cross30-Jul-03 4:44
Martin Cross30-Jul-03 4:44 
GeneralRe: How do I save to file? Pin
MrGee30-Jul-03 5:54
MrGee30-Jul-03 5:54 
GeneralRe: How do I save to file? Pin
Martin Cross30-Jul-03 6:02
Martin Cross30-Jul-03 6:02 
Here's something I've done in the past, you should be able to pull it apart for your own stuff:

        Private Sub SaveINIFile()<br />
            Dim strCurrentSection As String<br />
            Dim ptrRecord As INILayout<br />
<br />
            If strFileName = "" Then Return<br />
<br />
            ptrFileWriter = New System.IO.StreamWriter(strFileName)<br />
<br />
            For Each strCurrentSection In colINISections<br />
                ptrFileWriter.WriteLine("[" & strCurrentSection & "]")<br />
                For Each ptrRecord In colINIEntries<br />
                    If ptrRecord.strSection = strCurrentSection Then<br />
                        ptrFileWriter.WriteLine(ptrRecord.strHeader & "=" & ptrRecord.strValue)<br />
                    End If<br />
                Next<br />
            Next<br />
<br />
            ptrFileWriter.Close()<br />
        End Sub

GeneralRe: How do I save to file? Pin
phlipping31-Jul-03 23:30
phlipping31-Jul-03 23:30 
GeneralRe: How do I save to file? Pin
MrGee1-Aug-03 8:04
MrGee1-Aug-03 8:04 
QuestionImplementing Pointers in VB.NET? Pin
Martin Cross29-Jul-03 23:59
Martin Cross29-Jul-03 23:59 
AnswerRe: Implementing Pointers in VB.NET? Pin
Mike Dimmick30-Jul-03 5:13
Mike Dimmick30-Jul-03 5:13 
GeneralRe: Implementing Pointers in VB.NET? Pin
Martin Cross30-Jul-03 5:29
Martin Cross30-Jul-03 5:29 
GeneralSpeech recognition Pin
S.Seetharaman29-Jul-03 22:32
S.Seetharaman29-Jul-03 22:32 
GeneralRe: Speech recognition Pin
Anonymous30-Jul-03 12:02
Anonymous30-Jul-03 12:02 
GeneralC# -&gt; VB.NET port request Pin
Joey Lott29-Jul-03 9:59
sussJoey Lott29-Jul-03 9:59 
GeneralRe: C# -&gt; VB.NET port request Pin
Bo Hunter29-Jul-03 10:39
Bo Hunter29-Jul-03 10:39 
GeneralRe: C# -&gt; VB.NET port request Pin
wadester3-Aug-03 15:14
wadester3-Aug-03 15:14 
QuestionHow to import Data from MPP Pin
Samya28-Jul-03 22:47
Samya28-Jul-03 22:47 
AnswerRe: How to import Data from MPP Pin
Anonymous31-Jul-03 21:09
Anonymous31-Jul-03 21:09 
GeneralShowing Form Pin
THEMYTH28-Jul-03 21:55
THEMYTH28-Jul-03 21:55 
GeneralRe: Showing Form Pin
Nic Rowan28-Jul-03 23:47
Nic Rowan28-Jul-03 23:47 
QuestionHowTo: 2's Complement sum checksum? Pin
DudleyDoorite28-Jul-03 16:15
DudleyDoorite28-Jul-03 16:15 
AnswerRe: HowTo: 2's Complement sum checksum? Pin
pxw16-Aug-03 7:01
pxw16-Aug-03 7:01 
AnswerRe: HowTo: 2's Complement sum checksum? Pin
pxw16-Aug-03 10:23
pxw16-Aug-03 10:23 

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.