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. chirpyform

    Canvas covers all

    thanks for the replies but in the end i chose to use a JPanel instead of the Canvas class. However I did lose the focuslistener options and now i must use a popup menu to keep the same level of functionality. Thanks again Chris
  2. chirpyform

    Canvas covers all

    Hi, I've got a serious canvas problem. When I change the size of my window or use a pupup menu the canvas covers everything else. is there anyway of sending the canvas to the background or sending the other components to the foreground ? Thanks for any help Chris
  3. chirpyform

    Executing a script from java appli

    I tried to connect using rsh but it doesn't seem to work. I changed the .rhosts file on the machine linux and then tried "rsh address_IP -l user "pwd"" unfortunately i get an error message saying that the connection is refused. Is it a problem linked to the way my computer creates my address IP...
  4. chirpyform

    Executing a script from java appli

    Hi, I am developing a java application that runs scripts and follows the progress of the production. The problem is that the java appli is to be used with windows and the scripts are on a linux server. I have all the information necessary (user, password, directory, script, ...) but i need to...
  5. chirpyform

    Executing scripts from Access

    Hi, I have created an Access database and i need to be able to execute scripts (ksh) on a linux server from Access. This means that i have the address IP, user, password, directory and the name of the script already and i need to be able execute this script without any interaction with the...
  6. chirpyform

    return codes from oracle

    Hi, I am in great urgence to find a solution to the following problem : I have several sql scripts that create / drop sequencers, index and constraints. It's imperitive that i can test the return code from these sql scripts to know whether I continue with the rest. Unfortunately the function...
  7. chirpyform

    How to get code?

    Hi, I want to stock code of module named strModuleName in a variable or in a table field . Have you any idea for that? Sincerly
  8. chirpyform

    How to collect code of module????

    Hi, I have collected all procedure names of all modules but i can't collect the code of the module (CODE VBA), so whish solution can you suggest to me. Sincerly leila
  9. chirpyform

    Getting names of functions from modules ?

    Hi, I can get the different modules, but is there a way of getting a list of the functions within the module. ex mdl as Module mdl = AppAccess.Modules(moduleName) At this point i would like to be able to do something along the lines : list = mdl.getListOfFunctionNames is it possible ? or do...
  10. chirpyform

    A table in an object

    Thanks for the reply but this part is not the part that is difficult. My problem in fact is to get back the value that i stored in the table. ie sub new { my ($class,$line,$sep) = @_; my $this = {}; bless($this, $class); print "sep : $sep \n line : $line"; $this->{sep} = $sep...
  11. chirpyform

    A table in an object

    Hi, I want to have a class perl that takes a line with a seperator ";" and stocks the result in a table that i can use later with getter and setter methodes. ex 12;3;rrr; would be stored in a table as table[0]=12 table[1]=3 table[2]=rrr I tried : sub new { my ($class,$line,$sep) = @_; my...
  12. chirpyform

    access with oracle database

    We are trying to link an access database to an oracle database whilst keeping the access code and forms the same. In fact we want to recreate the same tables in oracle and map them using the linking tables option. Does this work ? What are the impacts in the code, the forms, queries, etc. ? Any...
  13. chirpyform

    ENVIRON doesn't work

    In the end I used /usr/xpg4/bin/awk -v FSortie1=$FSORTIE1 'awk code' thanks everyone Chris
  14. chirpyform

    /dev/null restricted

    thanks for the reply In fact the line is ( test_chaine RMC_FONCTION_SYNC1INIT 0 flp 4 $? RMC_FONCTION_INIT_PAI.ksh wait ) & ----- this line but i figure that this means that there is an error in the block. So i posted the functions test_chaine and flp The file that is restricted is $FICLOG...
  15. chirpyform

    /dev/null restricted

    Hello I wasn't really sure which forum to post the question in. I have a script that works perfectly well with Solaris ksh. When I changed to Linux and tried the same script I got the following error : ./rmc_ramses_fullinit.ksh[320]: /rmc/G2R1C0_java/log/20050216.090658.ramsesinit.log1...
  16. chirpyform

    ENVIRON doesn't work

    what do i need to do to have the version nawk ? Chris
  17. chirpyform

    ENVIRON doesn't work

    I have the following code in a script ksh: step1() { #//*- CREATION DES FICHIERS POUR DIFFERENTES LOCALITES ------------------ #//*--------------------------------------------------------------------- #//*--------------------------------------------------------------------- export...
  18. chirpyform

    table indexes messed up

    It's strange because we have used this functionality (same code, same database) with Access 1997 without any problems. It is only since we have converted the database to Access 2000 that it doesn't work. Chris
  19. chirpyform

    table indexes messed up

    I tried the replica and after the numero auto was completely lost. Instead of 5081 I got -354180457!!!! Now the database is lost.(It was a copy) Thanks for your help Chris
  20. chirpyform

    table indexes messed up

    I can't because there are about 100 tables that have relationships between themselves which means that it must stay coherent. Thanks for the help I think the problem comes from the fact that the tables have relationships. Chris

Part and Inventory Search

Back
Top