1
vote
3answers
24 views
Forcing Garbage Collection in VBA/Excel 2000
Is there a way to force garbage collection in VBA/Excel 2000?
This question refers to the Macro language in Excel.
Not using VB .NET to manipulate Excel. So GC.collect() won't wor …
1
vote
2answers
63 views
prime number in vba excel 2003
Hi
I'm analyzing a code from the website and I tried it on my side as well but seems it doesn't work. Could you please tell me why? would greatly appreciate your help.
Thanks
P …
0
votes
1answer
48 views
Is there much overhead involved in VBA classes?
Hello,
Is there much overhead involved in VBA classes? I noticed that on a previous workbooks I effectively did the same thing as what's currently in my classes, but it ran faste …
2
votes
6answers
78 views
Architecture Q - VBA Excel Macro or VS Tools For Office?
Hello,
I have requirements from our client where we basically have to 'parse' PDF files from various different sources.
The solution we have come with, as 'phase 1' (as we have s …
0
votes
1answer
19 views
Excel form hides behind open windows, after browsing for file, when I open from a vb.net application.
I have a vb.net program that opens up an excel workbook and runs a macro ("Report") in that workbook when a button is clicked.
//Workbook with macro and form
xlWorkbook = xlApp. …
0
votes
1answer
13 views
How to copy required rows of data from one excel sheet to another based on a condition?
hi, I have an excel sheet of some 7k rows of data, I need to segregate that data into three different sheets based on a column( group name).
So , I need to segregate the data bas …
0
votes
2answers
20 views
vba in excel 2003
Hi again:)
I'm trying to understand this code, and I still don't know why it starts with 2 on the cell A1, shouldn't it start with 1?
Private Sub CommandButton1_Click()
Dim i, j …
2
votes
2answers
46 views
How can I evaluate a string into an object in VBA?
In my previous question, How do I assign a value to a property where the property name is supplied at runtime in VBA?, I learned to use CallByName to set a property in a class at r …
2
votes
1answer
43 views
How do I assign a value to a property where the property name is supplied at runtime in VBA?
I'm trying to create a worksheet that creates a list of values that will be used to initialize the values of an instantiated class.
For example, I might have the following in my i …
0
votes
3answers
37 views
Predict text wrapping in cell, Excel 2000, using vba
The problem:
I use VBA to populate MS Excel 2000 cells with text. The column has a fixed width (should not be changed due to layout) and the wordwrap property is set to true so the …
0
votes
1answer
14 views
Excel COM Add-In dialog interrupts script
Hi all!
I have written an Excel COM Add-In in C++ for automation of Excel with VBA. It contains an own dialog showing some general informations about the Add-In.
Now i create a bu …
0
votes
3answers
32 views
Next non-blank cell in excel/visualBasic
I'm trying to script a very basic set of keystrokes in excel where I'm setting a cell to reference a cell that is 2 to the right and then the next non-blank cell down. Very easy s …
0
votes
1answer
30 views
Show a form on all worksheets in an Excel file
I am writing a little generator script (using Excel VBA) to generate a bunch of source code, given various input from users.
Currently I have one 'generator control' worksheet tha …
2
votes
3answers
75 views
How to concatenate strings in Excel
This question comes from a comment to Range.Formula= in VBA throws a strange error.
I wrote that program by trial-and-error method so I naturally tried + to concatenate strings.
…
0
votes
3answers
66 views
Excel VBA merge multiple columns into one on separate rows
Hi there!
I have an excel 2007 worksheet open with 5 colums and +/-5000 rows of data.
What I want to do is create a macro that will:
insert 3 blank rows under each record
copy …
