hi,
i'd like to know if this is doable :
(i looked into lotus help, and saw that an agent can be launched on an event, or on a schedule)
I'd like to know if the Lotus client must be open, or not ?
in fact, i gonna take a script, that should be executed when a new email arrives in an inbox. this...
hi,
i'd like to know if this is doable :
(i looked into lotus help, and saw that an agent can be launched on an event, or on a schedule)
I'd like to know if the Lotus client must be open, or not ?
in fact, i gonna take a script, that should be executed when a new email arrives in an inbox. this...
hi, i know it's an old thread, but, do you remember the solution to your problem ?
i do have the same
thanks
regards,
Elise
(author of french .NET tutorial like http://dotnet-tech.com)
i tryed something like this...
Sub TestCopy()
For i = 2 To Worksheets.Count
Worksheets(i).Range("A1").CurrentRegion.Copy
ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial
Next i
End Sub
but with this code, this doesnt even copies the charts any more ...
I based my code on :
Sub TestCopy()
For i = 2 To Worksheets.Count
Worksheets(i).Range("A1").CurrentRegion.Copy Destination:=ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
Next i
End Sub
but i have one problem :
the charts are copied, but they keep the datasource linked...
Hi,
I have 2 templates. All templates contains charts, with a macro that takes data from a 2nd sheet and defines them as datasource for each chart.
I will make a loop, that makes 1 instance of template 1 and n instances of the template 2. And call the macro.
I want to copy (append) to a new...
hi folks,
a few years before, i used a java agent + a .jar of my own to call an external web service.
Now i have to make search for lotus 6.5 : what are the technical possibilities to consume an external web service ?
I had a look on google and found informations about SOAPConnect.
My...
Hi all,
I do have a popup, and when the user clicks the "OK" button, the popup calls a method from the window.opener.
The call works fine.
In the window.opener, i retrieve the parameter passed by the function, and assign it to a hidden input.
Here is my function :
function refresh(ID)
{...
here is a code sample of an interface i had to develop (in order to make a .NET remoting service, that absolutely needs an interface)
hope this will help you :
INTERFACE :
Public Interface IAPICoreManager
Function GetCustomerInfo(ByVal strName As String) As APILibrary.Customer
End...
hi,
i've been developping a big middleware for the past 10 months. This includes an API, served through .net webservices and .net remoting. I use a lot of complex types that include vectors of other user defnied types etc...
I made many java client for the webservice part, and many remoting...
i post a sample code. I made this many months before, i remember i had to modify the XML structre to fit a bit more with the grouping.
<!--
File: temp.xsl
Author: Elise Dupont 07/02/2002
Desc: Transform xml into quote where catagorisation is choosable
-->...
hi,
i'm making a code that generates TemplateColumns into a datagrid depending on a dataset, each column name is dynamic and not hard coded thanks to this.
I read many documentation on the net (mainly here : http://www.tripleasp.net/article.aspx?NavID=27 )
It's almost done (table is filled...
hi all,
i wanted to know if there is a way to generate controls (like a textbox) into a for loop. This means that depending on the result of a query, i will get a number X , and will have to generate X textbox.
I'm affraid not but maybe am i wrong ... Hope so.
ie :
For i=0 to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.