Jump to content

Overwrite what stands in the Ini


Zanaj
 Share

Recommended Posts

I don't know what happening. When my code run it repost the already created Ini key's

Ini now:

[Option]
ScreenRelu=
Trashcan=
Path=

Ini after

[Option]
ScreenRelu=
Trashcan=
Path=
ScreenRelu=
Trashcan=
Path=

I use the IniWrite command is that one is wrong and need something like replace?

Again spamming your forum XD

Sorry :c

great regard

Nicki/Zanaj~

P.s you guys are amazing!

Link to comment
Share on other sites

  • Moderators

Zanaj,

We are not that amazing - we still need to see the code you use if we are to help you! :D

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Did you IniWrites look nothing like

IniWrite($sFile, "Option", "ScreenRelu", "")
IniWrite($sFile, "Option", "Trashcan", "")
IniWrite($sFile, "Option", "Path", "")

Then it's wrong =/

Or this

Local $aIni = IniReadSection($sFile, "Option") ; read the current contents of the INI file into $aIni
Local $aAdd[3][2] = [["ScreenRelu", ""],["Trashcan", ""],["Path", ""]] ; Create a 2D array with all the new values

ReDim $aIni[UBound($aAdd) + UBound($aIni)][2] ; Increase the size of the $aIni array to be as big as $aIni + $aAdd

For $i = 0 To UBound($aAdd) - 1 ; Count from 0 to the size of array $aAdd - 1 (0 to 2)
    $aIni[$i + $aIni[0][0] + 1][0] = $aAdd[$i][0] ; The next open assignment in the 1st column of $aIni = the $i index of the 1st column of $aAdd
    $aIni[$i + $aIni[0][0] + 1][1] = $aAdd[$i][1] ; The next open assignment in the 2nd column of $aIni = the $i index of the 2nd column of $aAdd
Next

;Overwrites the entire INI section [Option] with the new values
;which include the values already assigned in the ini file ($aIni) and the new additions ($aAdd)
IniWriteSection($sFile, "Option", $aini)
Edited by Mechaflash
Spoiler

“Hello, ladies, look at your man, now back to me, now back at your man, now back to me. Sadly, he isn’t me, but if he stopped using ladies scented body wash and switched to Old Spice, he could smell like he’s me. Look down, back up, where are you? You’re on a boat with the man your man could smell like. What’s in your hand, back at me. I have it, it’s an oyster with two tickets to that thing you love. Look again, the tickets are now diamonds. Anything is possible when your man smells like Old Spice and not a lady. I’m on a horse.”

 

Link to comment
Share on other sites

lol which one did u use? :huh:

EDIT: I'll add some notes to the 2nd set of code. The first set is pretty straightforward

Edited by Mechaflash
Spoiler

“Hello, ladies, look at your man, now back to me, now back at your man, now back to me. Sadly, he isn’t me, but if he stopped using ladies scented body wash and switched to Old Spice, he could smell like he’s me. Look down, back up, where are you? You’re on a boat with the man your man could smell like. What’s in your hand, back at me. I have it, it’s an oyster with two tickets to that thing you love. Look again, the tickets are now diamonds. Anything is possible when your man smells like Old Spice and not a lady. I’m on a horse.”

 

Link to comment
Share on other sites

It's working. BUT I HAVE NO IDEA WHY

Is this really the case? If so, which part of it is hard to understand so I can help clarify a bit.

Spoiler

“Hello, ladies, look at your man, now back to me, now back at your man, now back to me. Sadly, he isn’t me, but if he stopped using ladies scented body wash and switched to Old Spice, he could smell like he’s me. Look down, back up, where are you? You’re on a boat with the man your man could smell like. What’s in your hand, back at me. I have it, it’s an oyster with two tickets to that thing you love. Look again, the tickets are now diamonds. Anything is possible when your man smells like Old Spice and not a lady. I’m on a horse.”

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...