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

  • Users: chirpyform
  • Content: Threads
  • Order by date
  1. 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
  2. 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...
  3. 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...
  4. 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...
  5. 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
  6. 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
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. chirpyform

    ENVIRON doesn't work

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

    table indexes messed up

    Hi I have a major problem with access 2000. I have a function that imports my data from another access 2000 database. The problem is that after all the data has been imported my indexes in the tables are messed up. This means that when I create a new record the identifiant created...
  13. chirpyform

    sort stable

    Is there an option with the command sort so that the order on input rests. Ex I sort a file on the first 8 chars with sort -k 1.1,1.8 file the problem is that if there are several lines that are the same for the first 8 chars then the sort doesn't keep the order, it will sort the rest of the...
  14. chirpyform

    converting hexadecimal to string

    Has anyone got any code to convert a string of hexadecimal to a string normal. Ex 3c -> 60 -> '<' in this case I pass "3c" and I would like "<" returned to me Thanks Chris
  15. chirpyform

    Form opens with options window

    I have developed mainly with Access 97 and recently I have changed to 2000. I have 2 questions with regards to forms that I have created since : 1. I created the most straightforward form ever. Form without any buttons, simply a query with the textboxes that correspond to the fields of the...
  16. chirpyform

    sprintf to remove 0 right of decimal

    Hi, I would like to know if there exists an option with sprintf which gets rid of the insignificant zeros right of the decimal point. At the moment I have : print curKey,sprintf("%-6.6f",Sum[curKey]) but unfortunately that gives what I want left of the decimal point but always 6 numbers...
  17. chirpyform

    manual delete leaves delete

    I have overridden the delete mechanism in a form (because of complicated relationships between the tables) in the On_delete function (cancel = true) so that I can do "DELETE FROM TABLE X WHERE ...". At the end however the screen has #delete in all the areas where I had data. I have tried...
  18. chirpyform

    Problem with automatic numbering

    I am currently working with Access 2000 and have in my database the code below which imports the data from another database. However, I import 2300 lignes into the table (with the key of the table at 2300) but the automatic numbering offers me 1700 as the next number. This obviously causes...
  19. chirpyform

    repair the database DESPERATE

    I had a database in Access 97 and I converted the database to be in version 2000. This was 3 months ago. Since then I have been happily using the database in its new form on Windows NT. This week we have changed from NT to Windows 2000. Now we have the error message "Someone has closed the...
  20. chirpyform

    Locking problems

    I have a chain of 3 forms: Form1 deals with table1 in read-only mode. We double click in a record to see the details in form2. In Form2 we are in mode modify. We click a button in form2 to goto form3 which is linked to table2 which is in relation with table1. The problem is that I want to...

Part and Inventory Search

Back
Top