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 gkittelson 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. Sean7174

    Converting database from Word to Excel

    Just a few hints to get you started: Hopefully, your source data is not in Word but a text document. If it is truly a Word document, save it as a text document first. Then, you can import it easily into Excel. Then you should be able to manipulate the time stamp into useable data. Look up...
  2. Sean7174

    wininet.dll FTP help

    I am using a class module to do some FTP work from a VBA application. The classmodule uses the "FtpFindFirstFileA" function in wininet.dll. It returnes the following: Private Type FILETIME dwLowDateTime As Long dwHighDateTime As Long End Type Private Type WIN32_FIND_DATA...
  3. Sean7174

    Openwin-menu file

    When editing the .openwin-menu file, if you make an error, it will default to "default" file. When this situation happens, after fixing the error in the .openwin-menu file, how do you get Openwin to revert back to the .openwin-menu file?
  4. Sean7174

    Editing /etc/vfstab when system will not boot.

    These machines do not have cd-roms in them. But this technique is not too far off from what I have been doing. (Booting off of the other harddrive.)
  5. Sean7174

    Change the line delimiter for input files

    Here is a summery of the code: FPath="UnixDataFile" Open FPath For Input As #1 Do While Not EOF(1) Line Input #1, Single_Line Loop Close #1 Unix uses only a LF (Chr 10), which is not recognized by VBA as a line brake. When this code runs, it only takes 1 pass to read the entire...
  6. Sean7174

    RSH in VB

    I am trying to use RSH in my VBA app. Can you tell me how you did it? I resorted to using the shell command to run it, but I am sure there is a better way. Thanks
  7. Sean7174

    Change the line delimiter for input files

    How can you change the line delimiter that vba uses for the “read line” command? I am trying to read data files generated in a Unix environment, which only uses LF, not the CRLF that VBA is looking for.
  8. Sean7174

    Making graphs in Excel has random behavor

    Making graphs in Excel 97 has random behavior I am trying to make code that will generate graphs in VBA. But when I make a new graph, every other time I make a new graph, it will put a series 1 in the graph. And then the series 1 will usually a random copy of another series on another graph...
  9. Sean7174

    How to go to make a MsgBox message go to the next line if it....

    Not sure what you are asking. To make a multi line msgbox use vbCrLf (see also vbCr and vbLf) To split a line of code on two lines, end the first line with a space and then a under score " _" Sub example() MsgBox "This is line 1" & vbCrLf & "This is line 2&quot...
  10. Sean7174

    Editing /etc/vfstab when system will not boot.

    Had a recent issue on a Sparc 5 with the vfstab file. The machine had 2 hd’s in it. The boot drive was target 1 (upper slot). The drive at target 3 (lower slot) was unused and needed to be removed because it was making loud noises. When I removed it, I moved the drive that was at target 1...
  11. Sean7174

    Using RSH in VBA

    I would like to use RSH protocol inside a VBA app. I was hopping that someone might know of a class module that can do this for me. I am currently using the shell command and rsh.exe. It works, but is not desirable. I will admit to being new to using .dll's so any help or direction would be...
  12. Sean7174

    Sparc 5 SCSI issue with second drive and external scsii drive

    I have a Sparc 5 system with a tape drive connected to the external scsi port. When I installed a second internal harddrive (top slot), I could not get the drive to work correctly unless the tape drive was disconnected. The scsi ID's are different. (I think the 2nd hard drive is using 1 and...
  13. Sean7174

    Run-time error '1004' Unable to get xxx property of the xxx class

    How do you handle Run-time error '1004'? I ave gotten it under several different cases. There is the one I am having issues with now. I am trying to write a loop that goes trough all Series of all graphs in a workbook, and only act on ones names "Spec". I am using te following...

Part and Inventory Search

Back
Top