Known issue with some products after the recent GDI subsystem updates. See http://support.microsoft.com/kb/935448/[^].
Stability. What an interesting concept. -- Chris Maunder
There are various PS2 emulators, but using the ROM's required is illegal due to copyright law. This also applies to all recent games consoles. If you are unsure, ask the manufacturer.
since this is a VB6 Q. you should send it to the vb forum not vc++ anyway : you use variables to store some data in memory for processing... for example..
dim a as single
dim b as single
dim c as single 'here i made 3 place holders in memory for single variables.
a=CSng(Text1.Text) 'read data from Text1 into memory location called a
b=CSng(Text2.Text) 'read data from Text1 into memory location called b
c=(a+b)/2 'get the avarage of the two numbers and store it in c for latter use
MsgBox c 'use the variable c