Spell Check doesn't work 2007 Word and Outlook
Sun, 29 Jun 2008 18:52:00 -0700
After I installed Office Standard 2007 my spell checker worked. Shortly
after it no longer works in word or outlook. I have followed all of
Microsoft's instructions to no avail. I am totally frustrated. ...
|
Need Recomendation on Best Approach to a Outlook Add-in
Fri, 27 Jun 2008 18:06:14 -0400
I am a .Net developer who generally uses C# and .Net 2.0 for to do web
applications.
I have just been handed a little "side task" to develop a Outlook 2003/2007
compatible plug-in that will basically put a button on the outlook toolbar
and on the toolbar of any open messages that when clicked will grab the ...
|
Sort Macro to VBA - failing
Fri, 27 Jun 2008 09:49:34 -0700 (PDT)
Inside my VBA code I need to sort the rows of an Excel Range based on
the content of one column of the Range.
I did record a Macro that works perfectly stand-alone. It's here
below.
But, if I cut/paste the same lines into my VBA, it does not work at
all!!
Seeking help...
Range("B2:H6").Select
...
|
Unable to writing Excel Cells
Fri, 27 Jun 2008 08:42:40 -0700 (PDT)
Would someone know why these few lines do not work?
Not even if I use Cells(r, 2).Value work.
Through VBA I simply must enter -1 in that cell and see it in Excel.
If Cells(r, 2) = "P" Or Cells(r, 2) = "p" Then
Cells(r, 2) = -1
End If
...
|
Sort method - fails
Thu, 26 Jun 2008 12:47:58 -0700 (PDT)
I need to sort a Range and place the sorted result into a Variant
matrix.
Then I must copy the matrix into same Excel worksheet, different area.
I did this and it comes out with the error msg #VALUE! in each cell:
Dim theMatrix() As Variant
theMatrix = Range("B2", "H7").Sort(Key1:=Columns(4),
Orientation:= ...
|
Word Header and Footer Issue
Thu, 26 Jun 2008 09:48:03 -0700
Hello!
I originally posted this on the Office Automation forum, being that I am
attempting to automate this entire process. But my issue is regarding
sections and the header footer size.
I am attempting to automate a Word document merge. I am using Visual Studio
2005 and Word 2007, although I tested it w ...
|
Problem with Office 2003 Web Services Toolkit
Wed, 25 Jun 2008 18:08:20 -0500
Copying and pasting this from someone else who had teh exact same
problem, but he was never answered, I would appreciate any feedback at
all on this:
I am trying to reference a web service from Excel using Office 2003 Web
Service Toolkit and I have the following objects defined:
[Serializable()]
public ...
|
|
|
Export to Excel - Excel Not Opening
Wed, 25 Jun 2008 13:10:01 -0700
Hello, I am using Microsoft.Office.Interop.Excel to export numerous gridview
data to Excel. The ASP.NET app is working fine on my laptop but when I
publish the code to our dev server it doesn't work. I get no error messages
to help me out with diagnosing.
When I click the link to do the export, the page ...
|
Scaling images in vba with WIA
Wed, 25 Jun 2008 20:20:28 +0300
Hello world,
I am using MS WIA (Image acquisition automation library) v2.0 to scale
some jpg images with vba. However, the quality of the scaled down image
is not satisfying at all, especially when resizing to small sizes, eg
100x100pixels (maintaining the aspect ration). They seem like they have
been a l ...
|
Function Arguments
Tue, 24 Jun 2008 18:27:25 -0700
Hi Everyone:
In VB or VBA, is there anyway to send the name of a function as an argument
into a sub, and have that sub execute the function. For example
Private Sub Main()
call MySub(2,y,"F") 'or call MySub(2,y,F)
cells(1,1).value=y
End sub
Private sub MySub(x,y,FName)
y = 2*FName(x)
...
|