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

    ebook and assembler

    i need a good ebook with a free assembler . i need to start coding in assembly language. i have a compiler project with a target language of assembly.
  2. adekunleadekoya

    connect from sql server management studio to a remote ms sql server

    i want to know how to configure ms sql server management studio to connect to a ms sql server 2005 database on the internet. i have the ip address of the ms sql server machine, the databse name, the login user name and password. my web application uses the above parameters to connect to the...
  3. adekunleadekoya

    asp.net reading http post data

    hello can anyone show me an asp.net code that reads an http post data. the point is dat the data was posted without a field name which means method such as request("name_of_field") cannot be used to read the posted data. any other means of reading http post data in asp.net?
  4. adekunleadekoya

    win32 api

    how can i access win32 api from tcl/tk ?
  5. adekunleadekoya

    convert ascii value to corresponding character

    i need sample code that converts ascii value (e.g. 48 ) to corresponding character (e.g. '0') tanks
  6. adekunleadekoya

    read/write binary files in tcl

    i need sample code that will read from a binary file like gif and store what is read into a variable and later - supposedly after preprocessing - write back d bytes of data stored in the variable into another binary file. while the bytes are stored inside the variable i may want to access them...
  7. adekunleadekoya

    multi line comment in tcl/tk?

    can i write a multi line comment in tcl/tk ?
  8. adekunleadekoya

    getting the error code

    How do i get the error code and error message associated with a catch block like the one below? Assuming the remote machine is never existing /********************************** catch { set s [socket 192.168.0.200 1110] } ************************************/
  9. adekunleadekoya

    tcl/tk odbc database commands

    i need sample tcl/tk code/commads that work(s) with an odbc database like ms sql server 2005/ms access any ?
  10. adekunleadekoya

    package tk is not loaded statically

    /*********************** socket -server Accept 7000 proc Accept { sock addr port} { server_delete_interp $sock interp create interp_$sock load {} tk interp_$sock } *************************/ I run the above tcl/tk code. I effected a telnet connection to the server...
  11. adekunleadekoya

    multi threading in tcl/tk

    proc {} { puts "hello world" } how can i run the above procedure from a tcl/tk thread. i simply need a no nonsense approach to multi-threading in tcl/tk tanks
  12. adekunleadekoya

    multi column listbox

    i need a sample code that can show a multi column list of items for example showing dis as follows names age sex score kunle lola male 40 kunle lola male 40 kunle lola male 40 kunle lola male 40 kunle lola male 40 Sample codes will...
  13. adekunleadekoya

    "couldn't open socket: address already in use " socket programming

    I have this error "couldn't open socket: address already in use " whenever i close my wish windows running this code below and i try to source the program again. Does it mean that the socket was not gracefully closed ? How could i do dat ? Am just learning tcl/tk with a plan to develop a...
  14. adekunleadekoya

    getting ascii value of a charater

    how can i get d ascii value of a character in tcl/tk?
  15. adekunleadekoya

    ebook on tcl/tk programming

    can anyone show me an free ebook on tcl/tk programming ? an ebook treating much current version of the language will be appreciated
  16. adekunleadekoya

    passing parameter by reference to a procedure

    What is wrong with this code ? /******************************* set i 30; proc test {x} { upvar 1 $x xy; set x 4; set xy 2; return $xy; } test $i; puts $i; **************************************/
  17. adekunleadekoya

    print hello world at intervals

    i need a sample tcl code that prints hello world every 5 seconds

Part and Inventory Search

Back
Top