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

    How to execute a batch included more than one piece of "Create Proc"?

    I want to place the SQL script maked by SQL Server Analyser into a c program, but a SQL statement can not include more than one statement as "Create Procedure", is there any way to execute a SQL batch include more than one "Create Procedure" statement?
  2. smilife

    Which table should use for Tag vlan?

    For Tag vlan management, which table should use? I have read RFC2674, but I can not find it.
  3. smilife

    why exit when call SQLFetch?

    code: rc = SQLFreeStmt(odbcHandle.hStmt, SQL_CLOSE); rc = SQLExecDirect(odbcHandle.hStmt, (unsigned char*) sqlCommand,SQL_NTS); if(HasSqlError(odbcHandle, rc, ExecDirect, sqlCommand)) { DebugMsg("SQLExecDirect fail when get all vlan record"); return false; }...
  4. smilife

    How to place TCheckBox in Column of TListView? or similar way?

    how to place TCheckBox in TListView? In a ListView of vsReport, I want a column implemented by TCheckBox? Is it possible? If not, which other is good way to implement this?
  5. smilife

    how to read field of Binary[n] in SQL Server Table by TQuery?

    How to access the Binary[n] field of SQL Server Table using TQuery?When n is enough large. Use the AsString? If the Binary[m] or Binary[k](m,k <n) equal #13, can the Field be access completely?
  6. smilife

    why msoffice outlook cannt send mail but can receive?

    my ms outlook cannt send mail, each time it tell &quot;timeout when wait SMTP server's response 0x8004210B&quot; or &quot;unkown error 0x800CCC0B&quot;,but the send/receive progress show 1/1 task have been successfully completed. I try restore office xp, but no use. how can i do?
  7. smilife

    why msoffice outlook cannt send mail but can receive?

    my ms outlook cannt send mail, each time it tell &quot;timeout when wait SMTP server's response 0x800&quot; or &quot;unkown error 0x800CCC0B&quot;,but the send/receive progress show 1/1 task have been successfully completed. I try restore office xp, but no use. how can i do?
  8. smilife

    why cannt find file 'dbgheap.c' while debug on program error?

    Program execute error and show a error dialog. I click the 'retry' button to debug, but vc tell cannt find 'dbgheap.c' file. i search the file in my computer,but cannt find. how can i do?
  9. smilife

    how to give control to main after free a modal form?

    example: procedure TForm1.Button1Click(Sender: TObject); begin form2 := TForm2.Create(Self); form2.ShowModal; end; procedure TForm1.Timer1Timer(Sender: TObject); begin FreeAndNil(Form2); //i want to give control to main window here, but i cannt. end; I want to give control to main...

Part and Inventory Search

Back
Top