Search Result

Collapse
11 results in 0.0038 seconds.
Keywords
Members
Tags
ole
  •  

  • Marina Salles
    started a topic OLE Object documentation?
    in IIS

    OLE Object documentation?

    I'm updating scripts that manage some standart tasks with ftp sites within IIS, through it's OLE interface, but I can't find documentation about that. I need to know what each attribute refers to, so I can understand what is going on on the script. Can anyone point me to some reference? Does anyone know what the 'ServerComment' attribute in IisFtpSvc object mean?

    Here's a snipet of the script I'm working on, for clarification:
    ...
    See more | Go to post

  • Prasanna CRN
    started a topic Perl OLE Excel Strange Problem
    in Perl

    Perl OLE Excel Strange Problem

    Hi Friends,
    I am facing a strange problem while using WIN32::OLE for Excel Operations.

    I am searching a string in log file & if string matches in excel, i am asigining values to certain cells from log file further parsing with certain conditions!

    Everything goes fine except with Numbers.

    Code:
    if(m/.*\|TEST PARAM\|:: (.*) ::/){
    $Sheet -> Range("$TestParam$j") -> {Value}
    ...
    See more | Go to post

  • Prasanna CRN
    started a topic Perl OLE Open Existing Workbook & Worksheet
    in Perl

    Perl OLE Open Existing Workbook & Worksheet

    Hi Friends,
    I am trying to open particular Worksheet from MS Excel workbook (WIN32 :: OLE).

    I cannot able to work on particular sheet. Please help me on this :

    Code:
    $Excel = Win32::OLE->GetActiveObject('Excel.Application');
    $Excel->{'Visible'} = 0;	
    $Excel->{DisplayAlerts}=0;	
    					
    # Open File and WorkSheet	
    $Book = $Excel->Workbooks->Open("d:\test.xls");
    ...
    See more | Go to post
    Last edited by miller; Apr 13 '11, 06:28 PM. Reason: code tags

  • Prasanna CRN
    started a topic Perl - Win32::OLE - Excel Formulas
    in Perl

    Perl - Win32::OLE - Excel Formulas

    I am a Perl Programmer & i am using WIN32::OLE for Excel operations.

    I wanted to use conditional formulas like 'if' in excel via Perl.

    Thanks in Advance.
    See more | Go to post

  • How to move image on report using Detail OnFormat Event?

    I have a problem of changing the placement of an embedded image for a report/print. The initial left measurement of the image format is set to 0. I desire to move the image to the right during a Detail section On Format Event.
    Starting with a simple command to move the embedded OLE field 1 inch to the right I have set up a Detail On Format Event of:

    Code:
    Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
    ...
    See more | Go to post
    Last edited by MMcCarthy; Nov 25 '10, 06:29 PM.

  • matt753
    started a topic Save an embedded worksheet from a bound object

    Save an embedded worksheet from a bound object

    I have a bound object on a form that is "embedded" to an OLE field on the table.

    If I have it linked, when I double click a field on the spreadsheet it opens excel, I can type text in a field, then save and close. When I refresh the form it will show up there, and it saves to the original file.

    If I have it embedded, I can double click and edit the field right inside access, but when I save it it doesn't save...
    See more | Go to post

  • How to use a DLL which has complex optional parameters

    Hello

    I'm trying to use this OLE DLL interface in a C# program:
    Code:
     [id(0x60030016), helpstring("Adds a new Data Value to the recordset"), helpcontext(0x00000c1d)]
    HRESULT Add(
                    [in, out] BSTR* Tagname, 
                    [in, out] DATE* TimeStamp, 
                    [in, out, optional, defaultvalue(<unprintable IDispatch*>)] _DataValue** InValue,
    ...
    See more | Go to post

  • NDayave
    started a topic Relative addressing of ActiveX control

    Relative addressing of ActiveX control

    Hey,

    I was wondering if there was a way to relatively address the location of a .ocx activeX plugin that is embedded in a form.

    I want to have the plugin embedded on a form, in a database that is going to be moved around very frequently on different computers- The details of this are inconsequential , there is no way for it to not move - so everything it needs has to travel with it.
    For example, pictures are stored...
    See more | Go to post

  • bharris
    started a topic Print files stored as OLE objects

    Print files stored as OLE objects

    Is there a simple way to print files stored in an OLE field using the Windows associated programs? So if it is a .doc, it will open Word, print it and close. PDF opens Acrobat Reader, prints and closes, etc.

    It would just like right clicking on a file in Windows Explorer & hitting Print. I just need to do it programmaticall y on files stored in an OLE field.

    Is it possible?
    See more | Go to post

  • jay123987
    started a topic Attaching files in access 2003

    Attaching files in access 2003

    Morning / Afternoon / Goodday All,
    I was hoping someone can help me in understanding the best way to attach files to a access 2003 form.
    I have a database which is used to log phone calls and emails frm customers.
    When a customer emails and we make a record of this in the database using a form,we then need to attach the email to the record created in the database.
    I have been searching the net and found many methods but...
    See more | Go to post

  • Jollywg
    started a topic OLE object wav

    OLE object wav

    I have a OLE object that is a wav file and it plays whenever a form is opened. The only catch is that I need it to stop playing when the form is closed. Right now I am having to press the 'esc' key. I've tried using sendkeys, but it doesn't work. Any ideas?
    Code:
    Private Sub Form_Load()
    Me.txtoffer.SetFocus
    phone.Action = acOLEActivate
    End Sub
    
    Private Sub Form_Timer()
    Me.TimerInterval = 0
    thinking.Action
    ...
    See more | Go to post
    Last edited by NeoPa; Oct 7 '09, 07:57 PM. Reason: Please use the [CODE] tags provided.
Working...