Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Reading an INI file
Message
From
12/02/1999 19:20:59
 
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00187229
Message ID:
00187279
Views:
18
>>Any sample on reading an INI file?
>>
>>I would like to read some parameters that I created in a small INI file.
>
>Hi Michel,
>
>Why not use the old low level file handling commands.
>
>Open "YourINIFile" For Input As #1
>Dim INIData() As String
>idx=0
>Do While Not EOF(1)
> idx=idx+1
> Redim INIData(idx)
> Input #1, INIData(idx)
>Loop
>Close #1

It's just that I would like to benefit of the existing Windows DLL approach for this.
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Reply
Map
View

Click here to load this message in the networking platform