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: *

  1. deulyd

    System.TimersTimer trigger

    Hi, I am trying to write a Service application that will have a list of events like that : 2007-08-08 11:00:03 Event 01 2007-08-08 11:00:15 Event 02 2007-08-08 11:00:35 Event 03 2007-08-08 11:00:48 Event 04 ... (can have up to a 1000 entries) I want to raise a MessageBox on the exact...
  2. deulyd

    static void Main(string[] Args)

    Thank you sooo much... I never realized that! :) Daniel
  3. deulyd

    static void Main(string[] Args)

    Hi, I am trying to pass the Args variable of the Main to another method in the class like that : static void Main(string[] Args) { ParseArguments(Args); } private void ParseArguments(string[] aArgs) { MessageBox.Show("parse"); } But I'm getting that error when compiling : "An object...
  4. deulyd

    9.2.0.1 RDBMS Upgrade - OUI

    Thanks all, I found what was the problem. Windows program for unzip. It was a new server and winrar wasn't installed yet. Cant believe that, windows unzipper filters the exe files!!!! Deulyd
  5. deulyd

    9.2.0.1 RDBMS Upgrade - OUI

    Hi Mufasa, thanks for the quick answer... In the readme file its written : "Start Oracle Universal Installer release 10.1.0.4 located in the unzipped area of the patch set. For example, Oracle_patch\setup.exe." There is absolutely no exe file in the unzipped 238Mb zip file downloaded. I...
  6. deulyd

    9.2.0.1 RDBMS Upgrade - OUI

    Hi all, I am trying to updgrade our 9.2.0.1 Oracle Database to 9.2.0.7 on a Windows Server 2003 OS. I downloaded the Patch "p4163445_92070_WINNT" from Metalink. When I read the readme.html it says that I need to use "Oracle Universal Installer 10.1.0.4" that is included in the package. It is...
  7. deulyd

    :NEW.variable

    Again, that's not it... :/ lets say you got the FieldName inside a variable (sFldName) and you want to access the :NEW value for that field. Is there any way to call something like : x := :NEW.sFldName Thanks Daniel
  8. deulyd

    :NEW.variable

    Hi Mufasa, Its not what I meant... Its just that I need to store new values in an XML string when updating, so I want to check every field values in the :NEW to exclude NULLS. So I create a cursor to get all fields names of the table then I want to access :NEW.sFieldName to verify if null­...
  9. deulyd

    :NEW.variable

    Hi, In a trigger using the :NEW, is there a way to access the value of :NEW with a variable instead of a fieldName. Ex : x := 'FLD1'; :NEW.x -- instead of doing this :NEW.FLD1; Thanks Daniel
  10. deulyd

    Advanced file properties

    Hi, I'm trying to extract the advanced properties of a file to get jpg information such as IsoSpeed, Camera Model, Date Picture Taken, etc. I tried with the fileSystemObject and the dsofile.dll but cannot get them. Anyone has a hint? Thanks Deulyd
  11. deulyd

    Delete Statement

    Hi guys, thanks to try but those are still too slow! :/ What I did finally is I created a vb app that gets all VERSIONID to delete into a recordset. Then I group all the VERSIONID by group of 20 in an array Then I just run this the amount of time we got 20 versions : delete from LIMSVERSIONS...
  12. deulyd

    Delete Statement

    Thanks for the lighning quick answer! :D - The already tried the EXIST statement before, but seems to take FOREVER!!! :p - forget about the "MYVERSIONS" table, it supposed to be "LIMSVERSIONS" (typo error, it was its previous name) - What I exactly need is to clear data in LIMSVERSIONS where...
  13. deulyd

    Delete Statement

    Hi, I have a table named LIMSVERSIONS which links to 5 other table with the VERSIONID field. There is a lot of data in LIMSVERSIONS table (about 20000 rows) and I need to remove all the orphan rows in that table. I tried this way : delete from MYVERSIONS where VERSIONID in ( select...
  14. deulyd

    Deserialize XML String

    It works... Thanks!!!
  15. deulyd

    Deserialize XML String

    Ok, I've managed to find a way to make the XMLTextReader work and I can now read the data. But within parameters of the XMLTextReader I can get the values and the Elements. But how can I get the lenght of the complex type elements? Thanks Daniel
  16. deulyd

    Deserialize XML String

    Thanks! But would you give me an example on how to do that, I'm really new to the .NET world. Also is it possible to read it from a string instead of a file, because My XML is stored in a string. Daniel
  17. deulyd

    Deserialize XML String

    It's created by an external application that I can't manage. Here's my XML String I need to deserialize : <?xml version="1.0" ?> - <complexType length="5"> - <complexType length="2"> <string xml:space="preserve">Daniel</string> <string xml:space="preserve">Bordeleau</string>...
  18. deulyd

    Deserialize XML String

    Hi, I have an XML array stored into a string variable. I juste need to deserialize it to retrieve the array. I tried the System.Xml.Serialization.XmlSerializer object to Deserialize it but that method only takes stream, textReader or XMLReader; no string! :( Please help Thanks Daniel
  19. deulyd

    use VB.Net component in vb6

    Hi I created a simple stupid Class Library dll in VB.Net but I can't find the way to use it with VB6. I checked the "Register for COM Interop" in the project properties. I run the project and it creates the dll in my \bin folder. With VB6, I tried the following : - Add a reference to the dll...
  20. deulyd

    binary parsing

    Thanks you all guys, great tips! :D Dan

Part and Inventory Search

Back
Top