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. honchung

    Dual hard drive, both XP?

    Hi, I already have a hard drive connected to IDE1 primary and running XP Pro (drive C:). Everything runs fine. Then I have installed another hard drive connected to IDE2 primary (drive E:). Also an external USB DVD burner (I tried to install the DVD burner internally using IDE but could not...
  2. honchung

    EXE to MSI?

    Sorry I really am not sure where should I post this question. I use Inno Setup freeware to write and compile an EXE setup package. Then our IT person said our Windows Server 2003 SMS cannot remotely deploy my EXE package on individuals' computers and my file needs to be MSI. Is there any free...
  3. honchung

    Excel 11 or 12 Object Library in VB6

    Thanks for the tips. Another question here: A VB application cannot run Excel population feature with without Excel application installed (even with Excel Viewer installed still cannot run Excel feature). However, how come a VB application can access data in a MS Access database file (.mdb)...
  4. honchung

    Excel 11 or 12 Object Library in VB6

    Hi, I use VB6 to read data from Access and populate data on Excel Worksheets. Currently I have Office 2003 installed on my development computer so in VB6, I use Microsoft Excel 11.0 Object Library reference. In some cases, my customers may install Office 2007 on their own and use my VB...
  5. honchung

    VB6 exports to Excel chart gets error

    Hi all, FYI: I finally fixed the problem. There is something different in MS Office 2000 to the other versions. When I have my code: Set chDistance = objSheetDistance.ChartObjects.Add(30, 95, 630, 315) chDistance.Chart.ChartType = xlXYScatterSmoothNoMarkers chDistance.Chart.DisplayBlanksAs =...
  6. honchung

    Another VB to Excel question

    Hi all, By using VB6 to export data to Excel worksheet, if I have error during exporting or if I did not save the Excel file when closing it, how can I clear the "memory" or "buffer" leftover on the computer. I always got "End Program" prompts and "Save Excel Workbook File?" questions when...
  7. honchung

    VB6 exports to Excel chart gets error

    Hello, Tried a couple of things and still have no luck. I got an error on: chDistance.Chart.DisplayBlanksAs = xlInterpolated Error message is: Method 'DisplayBlanksAs' of object '_Chart' failed The purpose of this statement is to continue plotting the curve even with missing data in...
  8. honchung

    VB6 exports to Excel chart gets error

    I got some progress. 1) I put chDistance.Chart.ChartType = 73 and it works. 2) chDistance.Chart.DisplayBlanksAs = xlInterpolated Or chDistance.Chart.DisplayBlanksAs = 3 Both do not work (same error as before) 3) chDistance.Chart.ChartTitle.Font.Bold = True Do not work Any idea?
  9. honchung

    VB6 exports to Excel chart gets error

    Sorry I forgot to mention. Starting from chDistance.Chart.ChartType = xlXYScatterSmoothNoMarkers Everything after chDistance.Chart. gets error.
  10. honchung

    VB6 exports to Excel chart gets error

    Hi, By using VB6 code, I have data populated to Excel (2000 version) worksheet and then generate a chart as follow: Set chDistance = objSheetDistance.ChartObjects.Add(30, 95, 630, 315) With chDistance.Chart .ChartType = xlXYScatterSmoothNoMarkers .DisplayBlanksAs = xlInterpolated...
  11. honchung

    Windows 2000 keeps restarting

    Our customer's 7-year old computer cannot boot up to Windows 2000. It ran through BIOS and always restarts before running Windows. The hardware is Pentium 233 CPU, 256 MB RAM. Seagate 40 GB hard drive. We tried replacing a new hard drive with Windows 2000 professional installed. The problem...
  12. honchung

    Offline files cannot sync for 1 user

    Very concise determination, any suggestions?
  13. honchung

    Offline files cannot sync for 1 user

    We are having an issue with SBS 2003 and a client that cannot sync offline files. The Offline file status states dialog states the Server is Online and 1 file (modified offline) needs to be sync'd, choosing OK synchronizes the file but the taskbar icon continues to flash: "Offline Files -...
  14. honchung

    Can I run a file while the computer starts up?

    The computer was put inside an industrial machine. I am trying to use the computer I/O to turn on some electronic devices as soon as possible, as long as the whole machine powers up. Is there other ways to do the same purpose, such as batch file instead of exe file, or any other file type?
  15. honchung

    Can I run a file while the computer starts up?

    Hi, I have an executable (.exe) file that I want the computer to run at the very beginning of starting up, just like BIOS even before Windows starts up. I need to do it on both Windows 2000 Pro and XP Pro systems. Any way to do it? Hon Chung

Part and Inventory Search

Back
Top