473,802 Members | 2,451 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

.INI in VB.Net?

I know how to do it in VB6, I have code snippets coming out my ears for VB6,
but with the new framework in Visual Studio 2005, how do you get/put from a
..INI

If I attempt to use a VB6 snippet in Studio 05 it whinges about using the
'as Any' type in my declarations, and it whinges about using the String$()
function when creating a buffer string variable. Infact, it whinges a whole
lot, why my employer got VS05 I'll never know. :(

Anyway, thanks in advance for any help.

If people have simple alternatives for the use of .ini's for my future
reference, that'd be handy as well. Assumably .xl?

Cheers,
Tommy

--
-------------------------------
Please respond to my posts via the newsgroup as the e-mail provided is not
monitored.
Jul 2 '08 #1
25 2927
Found it,

Never mind. Linked below:

http://www.developer.com/net/asp/article.php/3287991
--
-------------------------------
Please respond to my posts via the newsgroup as the e-mail provided is not
monitored.
"Tommy Long" wrote:
I know how to do it in VB6, I have code snippets coming out my ears for VB6,
but with the new framework in Visual Studio 2005, how do you get/put from a
.INI

If I attempt to use a VB6 snippet in Studio 05 it whinges about using the
'as Any' type in my declarations, and it whinges about using the String$()
function when creating a buffer string variable. Infact, it whinges a whole
lot, why my employer got VS05 I'll never know. :(

Anyway, thanks in advance for any help.

If people have simple alternatives for the use of .ini's for my future
reference, that'd be handy as well. Assumably .xl?

Cheers,
Tommy

--
-------------------------------
Please respond to my posts via the newsgroup as the e-mail provided is not
monitored.
Jul 2 '08 #2
On 2008-07-02, Tommy Long <To*******@disc ussions.microso ft.comwrote:
I know how to do it in VB6, I have code snippets coming out my ears for VB6,
but with the new framework in Visual Studio 2005, how do you get/put from a
.INI

If I attempt to use a VB6 snippet in Studio 05 it whinges about using the
'as Any' type in my declarations, and it whinges about using the String$()
function when creating a buffer string variable. Infact, it whinges a whole
lot, why my employer got VS05 I'll never know. :(

Anyway, thanks in advance for any help.

If people have simple alternatives for the use of .ini's for my future
reference, that'd be handy as well. Assumably .xl?

Cheers,
Tommy
Hard to answer without seeing the method your using, but the basic answer is
"the same way". Are you using API calls? VB6 File IO?

Why don't you post a small sample of the problematic code (including api
declarations if that's the method your using) - your more likely to get a
correct answer that way :)
--
Tom Shelton
Jul 2 '08 #3
I've been using the VB6 Code, I've found an answer but in the interest of
better answers, here are the declarations:

Private Declare Function GetPrivateProfi leString Lib "kernel32" Alias
"GetPrivateProf ileStringA" (ByVal lpApplicationNa me As String, ByVal
lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedStrin g As
String, ByVal nSize As Long, ByVal lpFileName As String) As Long

Private Declare Function WritePrivatePro fileString Lib "kernel32" Alias
"WritePrivatePr ofileStringA" (ByVal lpApplicationNa me As String, ByVal
lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long

They both throw multiple errors for their use of the 'Any' variable type.

Additionally, in the following 'GetFromINI' procedure:

Function GetFromINI(sSec tion As String, sKey As String, sDefault As String,
sIniFile As String)
Dim sBuffer As String, lRet As Long
' Fill String with 255 spaces
sBuffer = String$(255, 0)
' Call DLL
lRet = GetPrivateProfi leString(sSecti on, sKey, "", sBuffer,
Len(sBuffer), sIniFile)
If lRet = 0 Then
' DLL failed, save default
If sDefault <"" Then AddToINI sSection, sKey, sDefault, sIniFile
GetFromINI = sDefault
Else
' DLL successful
' return string
GetFromINI = Left(sBuffer, InStr(sBuffer, Chr(0)) - 1)
End If
End Function

I receive an error for using the function 'String$(#, #)' which I don't know
a replacement for in VB.NET.

I'm not all that interested in converting to XL* files, though I may in the
future. I believe the link I provided in my initial post contains a link
near the bottom for implementing XL* procedures instead of INI though.

Any help that is better for one reason or another than the class based
solution I posted is much appreciated.

Tommy
--
-------------------------------
Please respond to my posts via the newsgroup as the e-mail provided is not
monitored.
"Tom Shelton" wrote:
On 2008-07-02, Tommy Long <To*******@disc ussions.microso ft.comwrote:
I know how to do it in VB6, I have code snippets coming out my ears for VB6,
but with the new framework in Visual Studio 2005, how do you get/put from a
.INI

If I attempt to use a VB6 snippet in Studio 05 it whinges about using the
'as Any' type in my declarations, and it whinges about using the String$()
function when creating a buffer string variable. Infact, it whinges a whole
lot, why my employer got VS05 I'll never know. :(

Anyway, thanks in advance for any help.

If people have simple alternatives for the use of .ini's for my future
reference, that'd be handy as well. Assumably .xl?

Cheers,
Tommy

Hard to answer without seeing the method your using, but the basic answer is
"the same way". Are you using API calls? VB6 File IO?

Why don't you post a small sample of the problematic code (including api
declarations if that's the method your using) - your more likely to get a
correct answer that way :)
--
Tom Shelton
Jul 2 '08 #4
On 2008-07-02, Tommy Long <To*******@disc ussions.microso ft.comwrote:
Found it,

Never mind. Linked below:

http://www.developer.com/net/asp/article.php/3287991
I wonder why the author decided to use the Ansi functions? You can simply
declare the functions as Auto and let the runtime decide the best method for
the system (which on NT based boxes is going to be the W functions).

--
Tom Shelton
Jul 2 '08 #5
On 2008-07-02, Tommy Long <To*******@disc ussions.microso ft.comwrote:
I've been using the VB6 Code, I've found an answer but in the interest of
better answers, here are the declarations:

Private Declare Function GetPrivateProfi leString Lib "kernel32" Alias
"GetPrivateProf ileStringA" (ByVal lpApplicationNa me As String, ByVal
lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedStrin g As
String, ByVal nSize As Long, ByVal lpFileName As String) As Long
Private Declare Auto Function GetPrivateProfi leString Lib "kernel32" ( _
ByVal lpApplicationNa me As String, _
ByVal lpKeyName As String, _
ByVal lpDefault As String, _
ByVal lpReturnedStrin g As System.Text.Str ingBuilder, _
ByVal nSize As Integer, _
ByVal lpFileName As String)
Private Declare Function WritePrivatePro fileString Lib "kernel32" Alias
"WritePrivatePr ofileStringA" (ByVal lpApplicationNa me As String, ByVal
lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long
Private Declare Auto Function WritePrivatePro fileString Lib "kernel32" ( _
ByVal lpApplicationNa me As String, _
ByVal lpKeyName As String, _
ByVal lpString As String, _
ByVal lpFileName As String) As Integer
They both throw multiple errors for their use of the 'Any' variable type.
That's because VB.NET doesn't support the As Any type. To be honest, it isn't
often needed - and, because VB.NET supports overloading, you can declare the
API's with multiple signitures. Yes, I'm aware that that can be a pain, but
rarely is in practice, since it isn't common to have to declare the api call
with more then two or three signatures.
Additionally, in the following 'GetFromINI' procedure:

Function GetFromINI(sSec tion As String, sKey As String, sDefault As String,
sIniFile As String)
Dim sBuffer As String, lRet As Long
' Fill String with 255 spaces
sBuffer = String$(255, 0)
' Call DLL
lRet = GetPrivateProfi leString(sSecti on, sKey, "", sBuffer,
Len(sBuffer), sIniFile)
If lRet = 0 Then
' DLL failed, save default
If sDefault <"" Then AddToINI sSection, sKey, sDefault, sIniFile
GetFromINI = sDefault
Else
' DLL successful
' return string
GetFromINI = Left(sBuffer, InStr(sBuffer, Chr(0)) - 1)
End If
End Function
Function GetFromINI ( _
ByVal sSection As String, _
ByVal sKey As String, _
ByVal sDefault As String, _
ByVal sIniFile As String) As String

Dim sBuffer As New StringBuilder (255)

Dim lRet As Integer = GetPrivateProfi leString ( _
sSection,
sKey,
String.Empty,
sBuffer,
sBuffer.Capacit y,
sIniFile)

If lRet = 0 Then
If Default <String.Empty Then
AddToINI (sSection, sKey, sDefault, sIniFile)
End If
Return sDefault
End if

Return sBuffer.ToStrin g()
End Function
I receive an error for using the function 'String$(#, #)' which I don't know
a replacement for in VB.NET.
Actually, you can do that with a string constructor:

Dim s As String = new String (5, "#")

--
Tom Shelton
Jul 2 '08 #6
On Jul 2, 12:03*pm, Tommy Long <TommyL...@disc ussions.microso ft.com>
wrote:
I've been using the VB6 Code, I've found an answer but in the interest of
better answers, here are the declarations:

Private Declare Function GetPrivateProfi leString Lib "kernel32" Alias
"GetPrivateProf ileStringA" (ByVal lpApplicationNa me As String, ByVal
lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedStrin g As
String, ByVal nSize As Long, ByVal lpFileName As String) As Long

Private Declare Function WritePrivatePro fileString Lib "kernel32" Alias
"WritePrivatePr ofileStringA" (ByVal lpApplicationNa me As String, ByVal
lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long

They both throw multiple errors for their use of the 'Any' variable type.

Additionally, in the following 'GetFromINI' procedure:

Function GetFromINI(sSec tion As String, sKey As String, sDefault As String,
sIniFile As String)
* * Dim sBuffer As String, lRet As Long
* * ' Fill String with 255 spaces
* * sBuffer = String$(255, 0)
* * ' Call DLL
* * lRet = GetPrivateProfi leString(sSecti on, sKey, "", sBuffer,
Len(sBuffer), sIniFile)
* * If lRet = 0 Then
* * * * ' DLL failed, save default
* * * * If sDefault <"" Then AddToINI sSection, sKey, sDefault,sIniFi le
* * * * GetFromINI = sDefault
* * Else
* * * * ' DLL successful
* * * * ' return string
* * * * GetFromINI = Left(sBuffer, InStr(sBuffer, Chr(0)) - 1)
* * End If
End Function

I receive an error for using the function 'String$(#, #)' which I don't know
a replacement for in VB.NET.

I'm not all that interested in converting to XL* files, though I may in the
future. *I believe the link I provided in my initial post contains a link
near the bottom for implementing XL* procedures instead of INI though.

Any help that is better for one reason or another than the class based
solution I posted is much appreciated.

Tommy
--
-------------------------------
Please respond to my posts via the newsgroup as the e-mail provided is not
monitored.

"Tom Shelton" wrote:
On 2008-07-02, Tommy Long <TommyL...@disc ussions.microso ft.comwrote:
I know how to do it in VB6, I have code snippets coming out my ears for VB6,
but with the new framework in Visual Studio 2005, how do you get/put from a
.INI
If I attempt to use a VB6 snippet in Studio 05 it whinges about usingthe
'as Any' type in my declarations, and it whinges about using the String$()
function when creating a buffer string variable. *Infact, it whinges a whole
lot, why my employer got VS05 I'll never know. *:(
Anyway, thanks in advance for any help.
If people have simple alternatives for the use of .ini's for my future
reference, that'd be handy as well. *Assumably .xl?
Cheers,
Tommy
Hard to answer without seeing the method your using, but the basic answer is
"the same way". *Are you using API calls? *VB6 File IO?
Why don't you post a small sample of the problematic code (including api
declarations if that's the method your using) - your more likely to geta
correct answer that way :)
--
Tom Shelton
Here's a great site to find the proper API declarations for .NET

http://www.pinvoke.net/

Also, I personally never use .ini files for my .NET applications. I
prefer to use a custom xml file or use the My.Settings code and it's
attached .config files.

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/
Jul 2 '08 #7
"Tommy Long" <To*******@disc ussions.microso ft.comschrieb:
>I know how to do it in VB6, I have code snippets coming out my ears for
VB6,
but with the new framework in Visual Studio 2005, how do you get/put from
a
.INI
Complete INI library written in VB based on the Win32 INI functions:

<URL:http://dotnet.mvps.org/dotnet/samples/filesystem/IniLib.zip>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Jul 3 '08 #8
Herfried,

I was waiting for this one,

Strange enough that there is nobody who tells not to use INI files anymore,
I say it here, but I don't go in the discussion, it is discussed to often in
past, and samples for better alternatives are easily to find on Google.

But it seems that the sinse this millenium better alternatives for INI files
are completely missed by some persons.

Cor
"Herfried K. Wagner [MVP]" <hi************ ***@gmx.atschre ef in bericht
news:us******** ******@TK2MSFTN GP03.phx.gbl...
"Tommy Long" <To*******@disc ussions.microso ft.comschrieb:
>>I know how to do it in VB6, I have code snippets coming out my ears for
VB6,
but with the new framework in Visual Studio 2005, how do you get/put from
a
.INI

Complete INI library written in VB based on the Win32 INI functions:

<URL:http://dotnet.mvps.org/dotnet/samples/filesystem/IniLib.zip>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Jul 3 '08 #9
If only Microsoft allowed you to save Application scope settings as well as
User ones in My.Settings!!!

I find it inexplicable that they don't. Maybe it is because with certain
deployments each user login has a separate copy of the app, so changes to
settings for all users on a computer can't be done this way??

Maybe saving/loading a dataset to XML is the way to go.

I've always liked .INI files, but I find the argument list of
GetPrivateProfi leString painful. I always end up wrapping it in another
function so I can get an .INI setting in one line of code.

--
David Streeter
Synchrotech Software
Sydney Australia
"Cor Ligthert[MVP]" wrote:
Herfried,

I was waiting for this one,

Strange enough that there is nobody who tells not to use INI files anymore,
I say it here, but I don't go in the discussion, it is discussed to often in
past, and samples for better alternatives are easily to find on Google.

But it seems that the sinse this millenium better alternatives for INI files
are completely missed by some persons.

Cor
"Herfried K. Wagner [MVP]" <hi************ ***@gmx.atschre ef in bericht
news:us******** ******@TK2MSFTN GP03.phx.gbl...
"Tommy Long" <To*******@disc ussions.microso ft.comschrieb:
>I know how to do it in VB6, I have code snippets coming out my ears for
VB6,
but with the new framework in Visual Studio 2005, how do you get/put from
a
.INI
Complete INI library written in VB based on the Win32 INI functions:

<URL:http://dotnet.mvps.org/dotnet/samples/filesystem/IniLib.zip>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Jul 3 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
11250
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL) on the server because of that. Our site will have an SSL certificate next week, so I would like to use AIM instead of SIM, however, I don't know how to send data via POST over https and recieve data from the Authorize.net server over an https...
2
5845
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues to execute the code until the browser send his reply to the header instruction. So an exit(); after each redirection won't hurt at all
3
23041
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which field is completed.
0
8500
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. 354 roberto@ausone:Build/php-4.3.2> ldd /opt/php4/bin/php libsablot.so.0 => /usr/local/lib/libsablot.so.0 libstdc++.so.5 => /usr/local/lib/libstdc++.so.5 libm.so.1 => /usr/lib/libm.so.1
1
8612
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the column below. The viewer can select states from the drop down lists above the other two columns as well. If the viewer selects only one, only one column fills. If the viewer selects two states, two columns fill. Etc. I could, if appropriate, have...
4
18308
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the user comes back to a page where he had a submitted POST data the browser keeps telling that the data has expired and asks if repost. How to avoid that? I tried registering all POST and GET vars as SESSION vars but
1
6873
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url http://www.mis.gla.ac.uk/biquery/training/ but each of the courses held have maximum of 8 people that could be
2
31446
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value to :parameter I dont like the idea of making the SQL statement on the fly without binding parameters as I dont want a highly polluted SQL cache.
3
23605
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the results of the picture half the size. The PHP I have installed support 1.62 or higher. And all I would like to do is take and image and make it fit a 3x3. Any suggestions to where I should read or look would be appreciated.
0
9699
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10532
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10281
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9111
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7597
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6835
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3789
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2966
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.