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

    Replaced bad disk - cannot mirror onto replacement

    We have a simple setup on one server where we had a software mirror. When we recieved a message that the mirror disk had failed, we replaced the hard drive and restarted. The original disk is now set as Disk 1 in the Disk Manager, and the new mirror disk is set as Disk 0. This is despite the...
  2. StuartJones

    Excel VBA and Charts

    i think the problem was because i did not complete the wizard properly. my colleague has given me a recorded macro of the entire process which now works. thanks for your help guys - sorry that i've been so dense
  3. StuartJones

    Excel VBA and Charts

    it's a chart that I created in the worksheet from the wizard.
  4. StuartJones

    Excel VBA and Charts

    same problem - i'm pretty sure I've tried it already, but I did it again and same '1004' error.
  5. StuartJones

    Excel VBA and Charts

    I still get the '1004' error with this code: Worksheets(1).Activate ActiveSheet.ChartObjects("Chart 3").Activate With ActiveChart .Type = xlLine .HasTitle = True .ChartTitle.Text = "Historical Data" With .SeriesCollection .Add Source = Worksheets(2).Range("C:C")...
  6. StuartJones

    Excel VBA and Charts

    I'm still getting a '1004' error message "Unable to set the HasTitle property of the Chart class'
  7. StuartJones

    Excel VBA and Charts

    actually - i just tried that, and it failed... ActiveSheet.ChartObjects("Chart 3").Activate With ActiveChart.Chart .Type = xlLine .HasTitle = True .ChartTitle.Text = "January Sales" numRows = Worksheets(2).Rows.Count With .SeriesCollection...
  8. StuartJones

    Excel VBA and Charts

    thanks. I just saw my mistake.... I had ActiveWorksheet, instead of ActiveSheet. But now the .HasTitle doesn't want to work.. :(
  9. StuartJones

    Excel VBA and Charts

    Geoff, I did that and the macro recorded was: ActiveSheet.ChartObjects("Chart 3").Activate I then put the following code in my vb script: Worksheets(1).Activate ActiveWorksheet.ChartObjects("Chart 3").Activate and now I'm getting an "object required" error on the second line instead...
  10. StuartJones

    Excel VBA and Charts

    I getting a "subscript out of range" error when i try and specify my chart as: ActiveWorkbook.Charts(1).Activate I only have one chart in the workbook, and cannot find any other way of referencing it. TIA, Stuart
  11. StuartJones

    Excel - Select all columns error

    Thanks Skip, As I said in my other question today, I'm not too well-up on VBA, so I'm kinda throwing things from the on-line help together and hoping it sticks :) Cheers for your help - I got the code working again.
  12. StuartJones

    Excel - Select all columns error

    Hi, I'm having a bit more trouble now. This code was working about an hour ago, and now it isn't. I didn't change anything (simply closed the workbook and then re-opened it). I keep getting errors on the Worksheets(2).Columns("A:A").Select command TIA - Stuart Private Sub...
  13. StuartJones

    Variable length recordset for GET statement in Excel

    Thanks, I'm afraid I don't know VBA that well, and the on-line hindrance isn't very good in Excel. Line Input worked - so thanks again.
  14. StuartJones

    Variable length recordset for GET statement in Excel

    Hi - I'm getting a "bad recordlength" error message when I use the GET statement to read from a csv file. Problem is, I don't know what the length of the line is until I read it. Any help would be appreciated. Stuart
  15. StuartJones

    ODBC Target File Locked

    I realise that this is a bit of a newbie question, but I haven't much experience with ODBC. I have an ODBC connection from a third party software package to an Excel file. When the connection is active, I cannot open the Excel table. Is there a reason for this?
  16. StuartJones

    Security Problem from 95/97 to XP

    I had opened the file in Access 97 to check the access rights, and the "Admin" owned the database and had complete access to it. I was hoping for a better answer than just "corruption" because I would like a preventative measure. I had already imported all the tables into a...
  17. StuartJones

    Security Problem from 95/97 to XP

    I am experiencing an interesting problem. I have two Access database files that were created using the 95/97 file format (not too sure, but probably 95). When I try and open these in Access 2002 I recieve a message saying that the current user does not have access rights to the database, and...
  18. StuartJones

    W2K PATH setting

    thanks.
  19. StuartJones

    W2K PATH setting

    Where is the PATH setting for Windows 2000 Professional? I have tried several .ini files and search the whole registry, but cannot find anyplace where the PATH parameter is set.

Part and Inventory Search

Back
Top