Hi all, i am looking for ppl who are experts in Rational Rose Application, specially who know how to work with Rose Automation... any1 who can refer me even to Rational Rose forum will be appreciated. please email me at ynir@legacy2web.com or at n_yaron@netvision.net.il tnx a lot
Yaron
Posts
-
Rational Rose Experts -
Is there any CodeWright forum??? i really need helpHi Geert, tnx a lot for your reply, happy that an other person is looking for codewright help/forums...... let me specify my problem : I've wrote a console application using win32 API, I want to add it to codewright. I've added an icon in the tool-bar, now what I want is , when pressing the icon , a text box will be opened, and the user will be able to type in several arguments.then I want to run my console application in output->shell window using these arguments. I don't know how to do the above, I've tried to look in help with no success. can you help??? tnx again, Yaron
-
Is there any CodeWright forum??? i really need helpHi, looking for CodeWright forum.........can any1 help? tnx Yaron
-
select function (sockets) helphi, can some please show me/refer me to code on how to use the select function (Winsock api) ....... please i really need help here........ tnx a lot yaron
-
Setup Q: How to install a DSNhi, see in the registery how the DSN is registered and in your install application, add the registery entries to your install application....... hope this helps ya, yaron
-
How to check a socket is disconnectedhi, i really need help in windows sockets, here is a function i wrote to connect to server: //----------- Function Implementation -------------------------------- bool ConnectToSocket() { if (WSAVERNOTSUPPORTED == WSAStartup(MAKEWORD(2,0),&WSAData)) { printf("WSAStartup Failed!\r\n"); return FALSE; }//end if else { printf("WSAStartup Success\r\n"); }//end else // construct socket sock = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP); if (sock == INVALID_SOCKET) { printf("Failed to construct socket!\r\n"); WSACleanup(); return FALSE; }//end if else { printf("Socket construction....Success\r\n"); }//end else // fill in socket address struct and connect to server sa.sin_family = AF_INET; sa.sin_port = 23; sa.sin_addr.S_un.S_addr = inet_addr("147.234.12.233"); int iErr = connect( sock,(SOCKADDR *)&sa,sizeof(sa)); return TRUE; } it doesn't seem to work ,i dont know why..... also how do i receive and send data???? please help me i am desperate! tnx a lot yaron