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 Chriss Miller 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: deulyd
  • Content: Threads
  • Order by date
  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)

    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...
  3. 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...
  4. 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
  5. 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
  6. 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...
  7. 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
  8. 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...
  9. deulyd

    binary parsing

    Hi, I have a property of a control that contains a decimal value for allowing Rights on something... Example : 4 = Can Open 8 = Can Save 16 = Can Modify 32 = Can Copy 64 = Can Paste 128 = Can Rotate etc... So for example if I can Open, Modify and Paste the value of the property...
  10. deulyd

    BLOB select

    Hi, I have a the folowing table : FOLDERSATTACH ---------------------------------------------- ORIGREC NUMBER (8) PK DESC VARCHAR2 (255) FILENAME VARCHAR2 (255) FOLDERNO NUMBER (8) ATTACH BLOB (4000) It contains around 200 records with files in the BLOB...
  11. deulyd

    CRAXDRT.Report get Select statement

    Hi, I have a report object and I need to update the Select Statement but I really don't know how to do that... I tried with the "SQLQueryString" but its always empty and is also read only. Here my code : '-------------------------------------------------- Dim crApp As New CRAXDRT.Application...
  12. deulyd

    help files???

    Hi, I have an official copy of Crystal 8.5. But I can't find any help file about using the crystal dlls; neither on the installed directory or the CD. Can anyone give me a hint on where to get the developer help files? (particulary documentation on craxdrt.dll). Thanks Daniel
  13. deulyd

    Start Stop Search

    Hi, I have a VB6 application that has a "Search" button. The function behind the Search button may be heavy and long. So I'd like to have a "Stop Search" button that my end user would be able to use to stop the "Search" Code. And I dont have a clue on how to do that Thanks Daniel
  14. deulyd

    Runtime dll Reference

    Hi, I'm starting using vb.net. I used to program with vb6. I created an application that uses ADODB in reference. When I launch my application everything is fine, everything works. But when I distribute my exe file that is in the bin directory, I need to copy the "Interop.ADODB.dll" file in...
  15. deulyd

    CreateObject Class ID

    Hi, I'm trying to use the CreateObject to instantiate an OCX control. But I dont know where can I find the Class ID of the OCX. Can someone give me a clue where to look? Thanks Daniel
  16. deulyd

    Execute script

    Hi, This is a simple question... I create the following script : c:\MYSCRIPTS\SCRIPT3.SQL I just want to run that script in SQLPlus... How do I do that in SQLPlus? thanks Daniel
  17. deulyd

    Sum condition

    Hi, I need to do a conditional sum on a numeric field but I can't find the way to do it... I'm in a {WORKTYPE} group and I need the sum of {HOURS} field for records that {STATUS} = "CLOSED". The folowing works, but does the sum for all the status : sum({FOLDERS.HOURS}, {FOLDERS.STATUS})...
  18. deulyd

    SQL Select text replace

    Hi, I'd like to know if there is a way to do that in an SQL query : I have a table with the following fields and data ID TYPE ------- ---------- 1 CALL 2 CALL 3 INTERNAL 4 EMAIL 5 CALL I'd like to have an SQL statement that would...
  19. deulyd

    Treeview Search

    Hi, does anyone has an algorythm to search in a treeview using a recursive proc. I can't use the nodes collection of the treeview with a "for...next" because the nodes in the collection are not ordered as in the treeview. Thanks Deulyd
  20. deulyd

    link 2 combo box

    Hi, I have 2 combo box in a form. One containing countries and the second contains the provinces. I populate data by setting their datasource property to a table in my dataset. My dataset contains the appropriate relations. Now, How can I link those 2 combo box in the form? With...

Part and Inventory Search

Back
Top