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 Mike Lewis 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. Arainxius

    dynamic multidimensional array

    This is perfect. thanks. However by using vectors the performance is very poor. Code takes too much to execute.
  2. Arainxius

    dynamic multidimensional array

    I just tried to compile the above code and it gives the following error 10 .typedef vector <int> intVector_t; 11. typedef vector<intVector_t> intVector2D_t; 12. typedef vector<intVector2D_t> intVector3D_t; 1>c:\temp\testarry\testarry\testarry.cpp(10) : error C2143: syntax error ...
  3. Arainxius

    dynamic multidimensional array

    I need to read from the file and depending upon the three values I need a dynamic array that is something like int array3D [frame][height][width] I don't know the three parameters(frame, height, width) at compile time. Then i want to read the datafile frame by frame fread(df, sizeof(int)...
  4. Arainxius

    VB6 : Accessing Toolbars of MS Office on Windows Brazilian version.

    Thank you so much Frederico: I can loop in and find out the particular CommandBar. There is another issue for example On the Menu bar the fifth item is "Tools" and first is "File". Now I want to add a button to the Tools Tools is of type Office.CommandBarPopup In English XP version I am...
  5. Arainxius

    VB6 : Accessing Toolbars of MS Office on Windows Brazilian version.

    Thanks for your help. "For a built-in command bar, the Name property returns the command bar's U.S. English name. Use the NameLocal property to return the localized name" If the desktop is running Windows Portugese multilanguage version then will the ".Name" property still return the US...
  6. Arainxius

    VB6 : Accessing Toolbars of MS Office on Windows Brazilian version.

    I have a COM ADD-in to the MS Outlook 2003 and it needs to run on Windows XP English and Brazilian version. It works fine on English version but not on Brazilian. Following is the code. ' m_OutlookCmdBars is declared and initializes as 1. Dim m_toolbar As Office.CommandBar 2. Set m_toolbar...
  7. Arainxius

    .pl cgi scripts executes multiple times ??

    Hi Paul: I am following the approach that you mentioned..thanks... There is one issue. If the client is on the local network NAT then the client IP address will be of gateway. That will limit the service to only one client in one local network.. again thanks for your help.. Arainxius
  8. Arainxius

    .pl cgi scripts executes multiple times ??

    Paul: Thats really good idea.. there is one drawback .. that at one time only one client can be serviced... thanks arainxius
  9. Arainxius

    .pl cgi scripts executes multiple times ??

    Paul: Thats good idea... but i guess there is problem with that... as i generate the name of the result.htm randomly such as result_timestamp.htm so that the output of client request is stored in a specific file. So when the run.pl script is invoked by clicking "reload" on the IE it...
  10. Arainxius

    .pl cgi scripts executes multiple times ??

    Thanks Paul: I have redirected to the results.htm. In my .pl script file I am executing an external application e.g system("clustalw.exe $alignment "); Now I am redirected to the results.htm page when the clustalw.exe application returns. It takes around 8-10 minutes depending upton the...
  11. Arainxius

    .pl cgi scripts executes multiple times ??

    Hi Paul: generate a page and redirect to that ? Does it means !! that the run.pl writes to a file such as result.html rather than outputin directly using print statements. Once the result.html file is generated then redirect to that page !! If so then where this redirect part will be...
  12. Arainxius

    .pl cgi scripts executes multiple times ??

    Hi: I am new to PERL-CGI programming. i have a simple CGI application. There is a form localhost/form.html which invokes the run.pl script at localhost/cgi-bin/run.pl This perl-cgi scripts parses the form paramters and executess an application. and displays the message that produced results...
  13. Arainxius

    run an application over the LAN

    Hello: I have two PCs having W2K prof connected over the LAN at office. THere is one program X installed on the first machine. I do not want to install it on the second machine. What i need to do to run the program X from machine 2 ???. I had shared the folder the on machine 1 where i...
  14. Arainxius

    oracle instance running ??

    i have tried both of the following ps -ef|grep smon and ps -ef|grep pmon and ps -ef|grep oracle its doesnt' return anything... But the interesting part Oracle server is running on this machine... i can connect to it... there was some problem in my .cshrc file... But still how can i found out...
  15. Arainxius

    oracle instance running ??

    Hi : Lets assume Oracle 9i is installed on a Sun OS... How can i find out if oracle server is running on this particular machine ?? and which instance of SID is running ?? The problem is i am unable to connect to the Oracle via sqlplus and i get this message : ERROR: ORA-01034: ORACLE not...
  16. Arainxius

    oracle instance running ??

    Hi : Lets assume Oracle 9i is installed on a Sun OS... How can i find out if oracle server is running on this particular machine ?? and which instance of SID is running ?? The problem is i am unable to connect to the Oracle via sqlplus and i get this message : ERROR: ORA-01034: ORACLE not...

Part and Inventory Search

Back
Top