//flex table opened by JP

Click to See Complete Forum and Search --> : Visual basic Help Please


fwrb
06-25-2002, 08:08 AM
Hi

I have some qustion hoping you will be able to help me as possiable

I am using Microsoft Visual Basic 6.0

and I am making a program but I am facing several problem

I need to now if you know how to :

Make the program create a registry key name "rescexp"
Make the program read and write registry value form that key

_____________________

The most important thing is how can I make the program write and read from an INI file
Create an INI file and name it as "rescexp.ini"
The program must write " start = 1"
and when the program start the program will read this value and start as it has been modify

______________________


How can I make the program Extract a file from a CAB file


Thank you very much for helping meeeeeeeeeeeeeeeeeeee

Faris Mlaeb

frb@coolgoose.com

:t

DocEvi1
06-25-2002, 03:38 PM
do a search on VBCode (www.vbcode.com) or Google.com (www.google.com). When searching with google start "VB" "your question"

Stefan

fwrb
06-27-2002, 07:43 AM
Thank ou very much for your help


But I look in them and they can hardly help me ...

by the way

isn't there any OCX file which can edit and create and do what I need about the INI file or Extracting OCX



and again thank you DocEvi1

DocEvi1
06-28-2002, 06:01 PM
hard this one. Do a search. The box is in the bottom left.
Strange that registry returned the result "Windows Registry, reading and writing to windows registry" this was on VBcode.com

Stefan

Heezer7
07-14-2002, 08:43 PM
SaveSetting App.Title, "Discription1", "Discription2", "Value to Save"
Example:
SaveSetting App.Title, "Color", "Bckgnd", "vbWhite"

to get the value
GetSetting(App.Title, "Discription1", "Discription2")

Example:
frmMain.BackColor = GetSetting(App.Title, "Color", "Bckgnd")


Makes saving little thing very easy