Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tyris
  • Order by date
  1. tyris

    Script automatically launched ?

    many thanks, that's all i wanted to know. regards, Elise (author of french .NET tutorial like http://dotnet-tech.com)
  2. tyris

    Script automatically launched ?

    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...
  3. tyris

    Script automatically launched

    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...
  4. tyris

    Excel release problem - Dr Watson error

    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)
  5. tyris

    Copy n Templates to a single new worksheet (with charts)

    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 ...
  6. tyris

    Copy n Templates to a single new worksheet (with charts)

    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...
  7. tyris

    Copy n Templates to a single new worksheet (with charts)

    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...
  8. tyris

    consume a web service

    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...
  9. tyris

    popup refresh parent window + adding value

    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) {...
  10. tyris

    Implementing an Interface

    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...
  11. tyris

    Using Web Service Tool Kit 2.0 for VBA

    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...
  12. tyris

    is it doable ?

    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 -->...
  13. tyris

    Dynamic datagrid column with an inherited ITemplate column

    forget my question i don't need an answer any more :) Best regards, Elise, XML girl X-)
  14. tyris

    Dynamic datagrid column with an inherited ITemplate column

    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...
  15. tyris

    Generate controls dynamically

    thanks it works :) Best regards, Elise, XML girl X-)
  16. tyris

    Generate controls dynamically

    well i'd like to see the code yes thanks :) elise.d@laposte.net Best regards, Elise, XML girl X-)
  17. tyris

    Generate controls dynamically

    for exemple to have a carriage return on the webpage for each control ? Best regards, Elise, XML girl X-)
  18. tyris

    Generate controls dynamically

    thanks, it works. I will use this solution if i find a way to customize the display of the place holder. thanks Best regards, Elise, XML girl X-)
  19. tyris

    Generate controls dynamically

    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...
  20. tyris

    why a button reloads the page ?

    thanks, i don't like this way asp.net works but i'll try to find a way... Best regards, Elise, XML girl X-)

Part and Inventory Search

Back
Top