Hi, you can check 'Enterprise Automated Tape Library' from IBM - or any other storage solution offered by IBM Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
Orbital
Posts
-
Archival Methods (TAPE, IDE DISK DVD-R)... -
Software outsourcingYes,it is: The school system in Romania is based on the thoretical part of software so after finishing college, we have a very strong base in computer science fundamentals. Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
Software outsourcing... do we need visa's to move in China? :) Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
Software outsourcingHi guys! What do you think about the increasing outsourcing trend to India and China? What's the future of the software industry? Bye, Orbital^ Thanks you all for participating to this (84 messages to this moment). It is very interesting to see how the world market is affecting our way of life. ...the night is long ... but not long enought to do some real coding ...
-
VS Enterprise Architect INSTALL FOLDERHi, can anyone tell me how to change the destination folder of VSEA( I found in 'readme' that the required space on system disk is 600MB but I can not find a way to install some other component on another disk) - I don't get the select option when I'm on 'Visual Studio Enteprise Architect' in the 'Select Items to Install' pane Thanck for your answers! Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
UNIX frameworkWhat about an oficial MS release ? Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
UNIX frameworkHi! any idea when a .NET Framework will be available on UNIX/LINUX platform? Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
Sorting items in CListCtrl ? Sample from MSDN..You will never call by youself MyCompareProc().It is called by SortItem which internaly implement some kind of sorting algoritm witch need to have a way to compare 2 elements. So your list may have any number of elements ... Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
Declaring function that throw exceptionsIn ANSI C++ the program will be terminated but as Visual C++ documentation say : "A function is declared using exception specification, which Visual C++ accepts but does not implement". If you want to write compatible code you should respect ANSI specification. MS say : "Code with exception specifications that are ignored during compilation may need to be recompiled and linked to be reused in future versions supporting exception specifications." Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
Outlook 2000 AutomationSee Q241287 and Q220600 in Microsoft KnoledgeBase Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
Declaring function that throw exceptionsThe function my thow any other exception, but if it do so your aplication will be terminated because the 'unexpected' handler will be called witch by default call 'terminate'. To set your own handler you can call 'set_unexpected()'. For a more deep perspectiv on exception you can see "Deep C++" in MSDN Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
Open OUTLOOK *.pstHi! Anyone know the structure of a *.pst file generated by MS Outlook? I want to modify contact information. Thanks Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
MSDN Integration with Visual C++.NETThanx ... I've just activate my subscription a few days ago ... do you hapen to know if they will send my the new MSDN Library as an update??? Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
MSDN Integration with Visual C++.NET:) I know that ... but it open 'Microsoft Document explorer' with "MSDN Library - Visual Studio .NET" open. I want to open " MSDN Library - October 2001" with "MS HTML Help" Thanx Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
MSDN Integration with Visual C++.NET -
pointer to an array... "char"Hi! The char *pID[11] declare an array of 11 pointers to char The char SSID[11] declare an array of 11 char So I think you mean char (*pID)[11] Anyway you can not do *pID=SID because *pID is not a l-value so you have to use a function like memcopy ... or strcopy if it is a string Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
CExceptionIf you get a reference to an CException object you should call Delete() to prevent memory loss. Vezi ca e important cum construiesti obiectul ala CException( BOOL b_AutoDelete ); ... asa pe romaneste :) Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
unresolved external problems (again...sigh)"Linking code compiled with /MT with the library LIBC.LIB causes LNK2001 on _beginthread, _beginthreadex, _endthread, and _endthreadex" - MSDN Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
STL programI've compiled with gcc programs in C++ ... but it seams that gcc dosen't know templates Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...
-
incloming socket addressIt goes like this : if((new_fd = accept(sockfd, (struct sockaddr *)&their_addr, &sin_size)) == -1) { perror("accept"); } printf("server: got connection from %s\n", inet_ntoa(their_addr.sin_addr)); The remote adrese is returned by the secondn parameter of 'accept' function Bye, Orbital^ ...the night is long ... but not long enought to do some real coding ...