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 strongm 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: *

  1. javaguru007

    Automatic Startup and Shutdown in RHEL 5.0

    We are trying to setup our Weblogic Server 9.2 in Red Hat Enterprise Linux 5.0 to automatically Startup and Shutdown when RHEL is boot up and shutdown. Could anyone help us on this matter ? Thanks in advance.
  2. javaguru007

    nanosleep issues

    does anyone here had issues with using nanosleep (C language) in a Linux environment ??? like hanging ?? Thanks in advance
  3. javaguru007

    if-statement's Strange Phenomenon

    the datatypes of the variables are all int....
  4. javaguru007

    if-statement's Strange Phenomenon

    sorry for the mistype in the #define portion, #define CONSTANT_1 1 #define CONSTANT_2 0 is the correct one and the indexmax does not change as long as the application is running....
  5. javaguru007

    if-statement's Strange Phenomenon

    Thanks for the advice... to give you guys a more overview, please refer to the code below : #define IndexMax 512 #define CONSTANT_1 = 1 #define CONSTANT_2 = 0 boolean bOk = false; while (bOk == false) { // Logging Function to reflect in the Log Files that // this part is being executed...
  6. javaguru007

    if-statement's Strange Phenomenon

    thanks for the reply mikrom, sad to say but based on our log files the values in the Table[index] are all valid that is why we are having a hard time troubleshooting this. our applications is executed in Linux.....
  7. javaguru007

    if-statement's Strange Phenomenon

    hello to all, i just want to ask if any of you have experienced the following : if ((Table[index].variable1 == CONSTANT_1) && (Table[index].variable2 == CONSTANT_2) && (Table[index].variable3 == 0)) { // Do some things } At first, this if-statement was working properly, but after...
  8. javaguru007

    Memory Mapping of C Applications

    hello to all, i just want to know how to determine the memory mapping or location of certain C Application variables, tables, arrays or linked list in the Memory of a Linux System ? Because we what to determine if at certain location in memory, a certain dynamic variable or linked list is...
  9. javaguru007

    Creating a C Class Instance in VB

    Hello people. I am a newbie in VB and just want to know, how to create an instance of a Class written in C in VB ? Problem: I have created a class in C that will be called in VB. The problem is that one of the parameters in the functions that I created is a class written in C. (The class is...
  10. javaguru007

    Porting from eVC++ 3.0 to eVC++ 4.0

    I recently ported a eVC++ 3.0 dll application to eVC++ 4.0 and I encountered a "Error executing midl.exe" error message. Have any of you guys encountered this error before ?? Hope you can help me with this. Thanks.
  11. javaguru007

    Clearing memory through LPCWSTR (Memory Address)

    One thing I forgot to tell you guys, I'm using Embedded Visual C++ 3.0... here are some of the things I noticed : e.g.: LPCWSTR lpcwSource; lpcwSource[0] = 0; error C2166: l-value specifies const object (same with lpcwSource[0] = '\0';, *lpcwSource = 0;) delete[] lpcwSource; (this call also...
  12. javaguru007

    Clearing memory through LPCWSTR (Memory Address)

    LPCWSTR lpcwSource; while (1) { lpcwSource = GetValue(); } Specification of the GetValue() function : - returns LPCWSTR - waits for data from a dll every 10 secs. For example, at first run of the program, the dll returns "This is the data needed." to the GetValue() function...
  13. javaguru007

    Clearing memory through LPCWSTR (Memory Address)

    thanks for the help... but the memory still contains the previous values. wasn't able to clear it... thanks for the help...
  14. javaguru007

    Clearing memory through LPCWSTR (Memory Address)

    Given a value to a Memory Address/Location, can somebody teach me on how to clear the values in the memory ?? I was to place NULLS ('\0') values in the said locations. Thanks.
  15. javaguru007

    eMbeded C++ conectivity to database

    Yes and No... No, because PDAs and Pocket PCs has its own database format. And when you import your Microsoft Access 97 Database, the PDA or Pocket PC will convert its contents to its own format. And Yes, because after converting your Microsoft Access 97 Database to Pocket Access Format, you can...
  16. javaguru007

    Checking if Remote Service is running....

    We have a remote server that is running a certain service, we want to check remotely if the service is running or not without using rsh or ssh... thanks..
  17. javaguru007

    FTP Script login problem with £ sign

    try this.. store the ff. in a file.. lets call it ftpconfig.cfg SERVER='1.2.3.4' USERNAME=moved1234 PASSWORD=longston4£ in your ftp script do the following CONFIG_FILE=ftpconfig.cfg SERVER=`grep SERVER ${CONFIG_FILE} | cut -d= -f2` USERNAME=`grep USERNAME ${CONFIG_FILE} | cut -d= -f2`...

Part and Inventory Search

Back
Top