This problem occurs because of permission restriction of writing file in C drive.
By spooling we create a file in oraclexe which is in C drive, if you do not have permission to create a file in C(OS drive) then spooling will be failed.
This is the only reason why users other than admin cant spool.
Allow users as well as admin to write files to C drive and then try spooling, it should work!
Its well know problem for all windows 7 64bit OS user that they cant run many compilers directly.
TURBO C, TASM, MASM and many more application programs we can't run directly as it is incompatible for 64bit.
DOSBox is one of the solution for this problem.
DOSBOX is programme that runs on your computer that enables you to run other programmes that were developed for a different computer or operating system.
In this post i have published TASM for windows 64bit.
All you need to do is just install this application and you are done with your job.
You need not to MOUNT any drive, or any other folder.. run your program on the go.
This is possible because of CONFIGURATION (.conf) file which I placed in the same folder where .exe file of DOSBox is present.
This installation file is made by me.. In case you face any problem or any query arises then consult on blog.
HEY FRIENDS, I HAVE DESIGNED A SIMPLE CALCULATOR USING VISUAL BASIC 6.0. HERE IS CODE FOR THE SAME.
Private Sub Command1_Click()
Dim add As Integer
add = Val(Text1.Text) + Val(Text2.Text)
Text3.Text = add
End Sub
Private Sub Command2_Click()
Dim min As Integer
min = Val(Text1.Text) - Val(Text2.Text)
Text3.Text = min
End Sub
Private Sub Command3_Click()
Dim mul As Integer
mul = Val(Text1.Text) * Val(Text2.Text)
Text3.Text = mul
End Sub
Private Sub Command4_Click()
Dim div As Double
div = Val(Text1.Text) / Val(Text2.Text)
Text3.Text = div
End Sub
Private Sub Command5_Click()
End
End Sub
Private Sub Command6_Click()
Cls
Text1.Text = 'there is a ASCII character after = sign, alt+255 i.e a space character
Text2.Text =
Text3.Text =
End Sub
Private Sub Command7_Click()
yourMsg1 = MsgBox("i)Enter first number." & vbCrLf & "ii)Enter second number." & vbCrLf & "iii) Choose any airthmetic operator.", 0, "Instructions for use")
End Sub
Snapshot of Calc.exe
Download full program along with executable calculator here