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 TouchToneTommy 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: SonicChen
  • Content: Threads
  • Order by date
  1. SonicChen

    Is there any class reference in c#?

    i know there is a kind of class reference type in delphi. anything in c# counterpart? way to gold shines more than gold
  2. SonicChen

    How to export erwin's attribute name to sql server

    i use "erwin" to design tables and their relationship for "sql server". all table's column has it's attribute name which in fact is a column's description. so i need to export these attribute name into column's description in sql server 2000. how can i do? any response is appriciated. way to...
  3. SonicChen

    How to implement the event handle in office?

    I saw a word document that can constraint the user's input area. I know only macro can imlement the complicated operation in office. But macro need keyboard shortcut event. So how does this document do that? way to gold shines more than gold
  4. SonicChen

    Oracle Empty String Problem

    i use adodataset to access oralce table "csn.test" F1 F2 a 1 b 2 c 3 connection and dataset open is all ok. i add the following code: procedure TForm1.Button1Click(Sender: TObject); begin ADODataSet1.Edit; ADODataSet1.FieldByName('F2').AsString := ''; ADODataSet1.Post; end; and...
  5. SonicChen

    management server service start problem

    i install oracle 9i and config OEM successfully in mostly default mode in win2000 family server. i can start OEM service manually but can't start it automaticaly each time. i dont' know what's the problem? way to gold shines more than gold
  6. SonicChen

    A VERY BIG PROBLEM

    I have one table with 1 million records and some memo fields in VFP6. But i found some of the memo's content was the table's whole memo file's content. The length exceed 3M. I think it's the vfp's bug. How can i read the exact content of these memo or can only ignore it? anybody else encounter...
  7. SonicChen

    how to get each column value in one record

    i know one function curval() but i received an error message indicate that curval() must run in row or table buffering mode way to gold shines more than gold
  8. SonicChen

    Data Transport

    i'm transporting a database in foxpro to oracle. if (they can transport directoryly) { help me about it; } else if (export from foxpro and import to oracle) { help me about exporing from foxpro; } else if (read foxpro DB data file and import to oracle myself) { help me about the db file format...
  9. SonicChen

    some basic but no mannul problem

    1. default modifier in class memeber without apparent declation is public or puhlished? 2. i see the declaration like this procedure A(var B); B has no type indentity. what's the B or any type? 3. i see the definition of one class method class procedure A.B(P: A); begin if Self<>P then ...
  10. SonicChen

    about asm

    I'm reading some source code like system.pas of delphi and find some asm statement. Where can i get the knowledge about delphi assembly code. example: PUSH EBX PUSH ESI PUSH EDI MOV EDI,ECX XOR EBX,EBX XOR ECX,ECX...
  11. SonicChen

    About Message Handle

    TCMDockClient = packed record Msg: Cardinal; DockSource: TDragDockObject; MousePos: TSmallPoint; Result: Integer; end; TMyClass = class procedure CMDockClient(Message: TCMDockClient) :message CM_DOCKCLIENT; end; here is 3 questions: 1. whether CM_***** message...
  12. SonicChen

    About Regular Expression

    i know there is RegEx in C#, but it doesn't exist in Delphi any body write this code? or any help for my writing. thanks a lot way to gold shines more than gold
  13. SonicChen

    How to Get Current KeyBorard''s State?

    i need to know run time Key State such as Shift and Ctrl and Alt. way to gold shines more than gold
  14. SonicChen

    Timer problem

    i write my own Timer TMyTimer = class ... procedure TimerCallBack(Handle:THandle, Msg:LongWord,TimerID:LongWord,Time:LongWord); stdcall;export; end; constructor TMyTimer.Create(ACon: TWinControl); begin FTimerID := SetTimer(Handle,GetNewTimerID, Interval...
  15. SonicChen

    where to get message mannul

    i see many underlying message such as CM_DOCKCLIENT but i can't find any mannul of these messages in Delphi. i really need it when i write docking window. where to get? thanks a lot. way to gold shines more than gold
  16. SonicChen

    what knowledge should i have?

    i joined a project about system of house management base on oracle and C/S model. i take the delphi interface development part. so what knowledge should i prepare? my idea: 1. vcl 2. db interface of delphi 3. SQL 4. c/s model and??? i really not very clear and appreciate to every body ACK. way...
  17. SonicChen

    about mouse message handle

    in delphi 7 TWinControl i can't find OnMousIn, OnMouseLeave, OnMouseHover Event, so i want to create myself. i have some idea about the solution but not very clear especially in MouseIn and MouseLeave, for i can only find WM_MOUSEMOVE and WM_MOUSEDOWN AND UP message. any example or direction...
  18. SonicChen

    How to encapsulate the COM to VCL?

    yesterday i see some tech about it but not in detail. anyexample given by anybody would be appreciated. way to gold shines more than gold
  19. SonicChen

    How to get system date and time

    as the titile. thanks for any answers.
  20. SonicChen

    How to Add Item in Explorer's context menu

    as the title appreciated for any answer. way to gold shines more than gold

Part and Inventory Search

Back
Top