Thank you for the answer.
I fixed this issue by Opening a file using record length (RECL) specifier:
Open(1,file='test.txt',RECL=1024)
write(1,*) 'aaaaaaaaa ','aaaaaaaaa ','aaaaaaaaa ', 'aaaaaaaaa ',&
& 'aaaaaaaaa ', 'aaaaaaaaa ', 'aaaaaaaaa ', 'aaaaaaaaa ',&
& 'aaaaaaaaa'...
I'm using Intel Visual Fortran 11.1 x64 with Microsoft Visual Studio 2008.
I'm having a simple issue that I cannot solve.
When I write a lot of things in a single write(*,*), it just break the output line at certain point.
For Example, when I write the code:
write(11,*) 'aaaaaaaaa...
I keep getting the "ShowPopup method failed" error. If anyone can help me i would be very grateful.
CODE:
Option Compare Database
Private Type POINTAPI
X As Long
Y As Long
End Type
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
Private Declare...
Hey guys, I'm having some problem here when i try to use a formula between brackets [].
What I'm trying to do is very simple. The better way to explain is with an example:
I just want to write this line:
Me.[cv100].Caption = 33
in this way:
k=100
Me.[("cv" & k)].Caption = 33
Thank you
Hey guys, I'm having a little trouble with my code here. The first step of the loop, the program runs fine, but in the second step of the loop, the compiler shows the message: Error 91 "Object variable or with block variable not set" on the lines:
With Template
ActiveWorkbook.SaveAs "C:\PATEC\"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.