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!

Recent content by yaronb

  1. yaronb

    Making one class an applet and applicaton help

    Have you tried to use the "main" class allong with the Applet ?
  2. yaronb

    detecting memory chip's speed

    Thanks...but... it's not for pentium III 733 MHZ...(not working...) Do you know of any thing else ???
  3. yaronb

    detecting memory chip's speed

    Hi, Is there a way of knowing a memory chip's speed by it's serial number ? Thank you
  4. yaronb

    Sending email

    Hi... I want to send email from my program - a very simple one... Can any body help me ?
  5. yaronb

    String from VB to C++ ATL and backwords....

    Hi... I'm trying to pass a string (a text field) to a Property in C++. I have managed to do so with numbers by creating a property with "long" type. I have tried to add a new property with a BSTR type so I'll be able to deliver a string - but - it crashes... Can any one help me ? -...
  6. yaronb

    Tcl/Tk with C - "select" function

    Hello, I have a problem: In my C program, I'm using the "select" function, that tells me if I got data on a certain socket or got data from stdin (using file descriptors set). When ever I recieve an indication from the "select" function that the stdin in "on&quot...
  7. yaronb

    Writing TK in linux ??

    here is a simple code that creates a list and a button: proc about {w prog args} { if {[winfo exist $w]==1} { switch -- [wm state $w] { normal { raise $w } withdrawn - iconified { wm deiconify $w } } } else { toplevel $w wm title $w "About $prog&quot...
  8. yaronb

    Writing TK in linux ??

    Hi, I'm learning Tcl/Tk and wants to work on LINUX (redhat 7.0) How can I write in Tk ? each time I'm trying to write a command from the TK library (such as "frame","button") in the tcl shell, I'm getting an error ... Can any one help ?? Thanx...
  9. yaronb

    Pass the Class Please

    Hi.. As is seems to me, your dupFirst variable is a local variable (inside the constructor) and not a member of your SecondClass class - so, whenever you exit from that constructor, it's value will be gone .... does it help ? Yaron.
  10. yaronb

    Beginner question

    Hi.. To read and learn, try the tutorial in sun's site : http://java.sun.com/docs/books/tutorial/ you can read all about the things you have asked and even practice... Yaron.
  11. yaronb

    converting from char [][] to char **

    Well, thanks again... I have managed to create a nice function that translates the array into a pointer : ... #define ARGC 30 #define SIZE2 50 char matrix[ARGC][SIZE2]; char ** converted_pointer; char ** convert_array_to_pointers(int argc,char * argv); int main(void) { converted_pointer =...
  12. yaronb

    converting from char [][] to char **

    First of all - thanks for your answer... Let me try to explain a little more.. I have an array - foo[30][30] which holds a name of a runable program and some arguments. The first cell holds the program's name, and the rest holds the program's arguments I'm trying to use the execvp function...
  13. yaronb

    converting from char [][] to char **

    How can I convert an array of char [20][50] into an "array" of pointers : - char ** ? Thanks Yaron.

Part and Inventory Search

Back
Top