I have a custom Page with a show funtion, and a leave function...which are below..(it's not PHP but I thought it looked nicer)
My Show Function
Function RegEnter
!insertmacro XPUI_HEADER_TEXT "$(TEXT_IO_TITLE)" "$(TEXT_IO_SUBTITLE)"
!insertmacro XPUI_INSTALLOPTIONS_DISPLAY "REG.ini"
FunctionEnd My Leave FunctionFunction RegLeave
ReadINIStr ${varInput} "REG.ini" "Field 2" "State"
MessageBox MB_OK ${varInput}
FunctionEnd Now...it was my understanding that it should work with just about this and only this...but...my message box will give me a blank box everytime. What is all required to read text from a textbox?...Why is ReadINIStr returning an empty string?Thank You
Kyle