Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. eleteroboltz

    Fortran Breaking Output Lines Automatically

    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'...
  2. eleteroboltz

    Fortran Breaking Output Lines Automatically

    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...
  3. eleteroboltz

    CommandBar ShowPopUp error

    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...
  4. eleteroboltz

    Using expressions between brackets [ ]

    Thank you very much. The code worked perfectly.
  5. eleteroboltz

    Using expressions between brackets [ ]

    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
  6. eleteroboltz

    Error 91- Object variable or with block variable not set

    TheAceMan1, Thank you very much.... The code is running great now.
  7. eleteroboltz

    Error 91- Object variable or with block variable not set

    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\"...

Part and Inventory Search

Back
Top