Tuesday, November 08, 2005

Adding PageBreak in Excel using VBA

To add page Break by using Visualbasic for Application in Excel using following code

ActiveWindow.SelectedSheets.HPageBreaks.Add Before:=Cells(R,W)

where
R - Row & C-Column

the page break will be added to Activewindows selected sheet before the specific Cell

Cheers
Renugopal D

Saturday, March 26, 2005

Programming

Programming

Sending Fax From ASP Page

Sending Fax From ASP Page
 
    this articles explain how to send fax from ASP page
u need faxcom.dll to creat an instance fro Faxserver.
 
 
1) First Create an intance for FaxServer   
        Set FaxServer = CreateObject("FaxServer.FaxServer")
 
2) Specify the Fax Machine
        FaxServer.Connect ("\\" & FaxMachine)
 
3)Select the input document you want to send as Fax
        Set FaxDoc = FaxServer.CreateDocument(FileName)
 
4) Specify Fax Number 
        FaxDoc.FaxNumber = FaxNumber
 
5) Send Fax
        FaxDoc.Send
 
6) Initialize to nothig
        Set FaxDoc = Nothing
        Set FaxServer = Nothing
 
 
References:   MSDN

Friday, March 25, 2005

Renugopal - Programming Task

Renugopal - Programming Task

Interface between C# and asm

Hi,
anyone can tell me , is there any way to call an subroutine in asm
from C# program..
if possible, can u expalin to me?
thanks
-Renugopal
http://renugopal.rediffblogs.com/

Thursday, February 03, 2005

Studies on .Net

Planned to study 10 class each from Jan 01 2005