Rachel Hettinger

less info
2,201 reputation
310
bio website
location California
age 43
visits member for 1 year, 7 months
seen 7 hours ago
stats profile views 511

Jun
6
answered Aspose.Tasks. Microsoft Project. Get the resource usage by day
Jun
6
answered Custom Microsoft Project Add-In disappears randomly
May
22
awarded  Informed
May
15
answered How can I set the calendar property on my MSProject project?
May
15
answered VSTO: MS Project - Activate the project window
Apr
10
comment Edit and Continue: “Changes are not allowed when the debugger has been attached to an already running process or the code being debugged was optimized at build or run time”
This worked for me. Thanks!
Apr
4
comment VB.NET - Given a date, how can I get the date of the following friday?
+1 for the clean solution... made even cleaner by @Stefan's suggestion to make it an extension to the date object.
Mar
20
comment SQL IErrorInfo.GetDescription error.Brackets not working
thanks for the solution. Apparently 'diagnostics' is also table name that doesn't work.
Mar
7
comment VS 2010: How can I change the order of the Project Properties>Settings?
Thanks for finding that... I looked and looked for an answer before I posted this question.
Mar
7
comment VS 2010: How can I change the order of the Project Properties>Settings?
Thanks @JeremyThompson, that's just the file I need to edit.
Mar
7
accepted VS 2010: How can I change the order of the Project Properties>Settings?
Mar
7
comment VS 2010: How can I change the order of the Project Properties>Settings?
I have more than 100 settings. Sometimes new ones are required that are related to others, so I'd like to see them together. Editing app.config did not result in any change.
Mar
7
asked VS 2010: How can I change the order of the Project Properties>Settings?
Jan
30
awarded  Civic Duty
Dec
18
comment Increase Range dimensions
The Resize and Offset methods are often used together for this purpose. These methods give you a Range object that you can use inline, or you can declare a new variable for the resized/offset range.
Dec
16
comment Bad data selection using VBScript , on date field values
In order to check each row, you actually have to check each row, this is done with a loop. If you don't understand this then perhaps you would be wise to read an intro to Excel VBA book.
Dec
16
comment Bad data selection using VBScript , on date field values
@VBSlover I suggest you start with the code I provided for your last question--it contains the framework you need to loop through the rows and task columns. If you get stuck, post the code you have written with details about what is not working correctly and perhaps you will get assistance here. FWIW, manipulating Excel worksheets is usually done with Excel macros, not VBScript. It is hard to imagine what you need to do that Excel VBA "couldn't handle".
Dec
16
comment Data partition in an excel row
Even if you are looking to do this with VBScript, I suggest you debug it in Excel VBA. Are you getting the error when running as an Excel macro?
Dec
15
comment Data partition in an excel row
Yes. That is what it does.
Dec
15
comment Data partition in an excel row
1) only cells are deleted, not entire columns. 2) yes, that is the line that does the delete. 3) the And is correct--data is only deleted if all 4 cells are blank.