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

    SMS an application to a phone

    I was wondering if it is technically possible to SMS an application (.exe) to a mobile phone or any other way by which we can have a PC/Computer send an application to a mobile phone (without the need for me to actually "download" anything). I'll really appreciate any ideas/comments/suggestions...
  2. TarunMakhija

    SMS an application (.exe) to a mobile phone

    Hi all, I was wondering if it is technically possible to SMS an application (.exe) to a mobile phone... or any other way by which we can have a PC/Computer send an application to a mobile phone (without the need for me to actually "download" anything). I'll really appreciate any...
  3. TarunMakhija

    launching Java from Excel VBA

    Thanks John. I actually managed to have it work using the Shell command.. I was making a really stupid mistake.. My next question however is... Since I am trying to launch the java application from with the same excel sheet which I am trying to "modify" using the java app.. I am going to have...
  4. TarunMakhija

    launching Java from Excel VBA

    I am trying to launch a Java application at the click of an excel button... For starters all I am trying to do is, run the following program which creates a new file on my Desktop at the click of an excel button. import java.io.File; import java.io.FileWriter; public class Test { public...
  5. TarunMakhija

    Timestamp error

    Hi, The first column in my table is of type Timestamp I am trying to execute queries of the form: insert into News values(2005-12-26 08:43:00.0,'UN','topnews') Error: Incorrect syntax near '08'. insert into News values(2005-12-26 09:43:00.0,'UN','topnews') Incorrect syntax near '09'. Can...
  6. TarunMakhija

    running perl script over all files in specified directory

    Hi, I am completely new to perl.. and I wanted to modify one code so that it runs over all the files in a directory. So instead of running the perl script over individual files [input1.txt, input2.txt, input3.txt ....] to get out files [ou1.txt, out2.txt, out3.txt ....] in the following way...
  7. TarunMakhija

    convert .py to .pyc during run time to make changes take effect

    Thanks :) .... For hitting the nail right on the head! It solves my problem I removed the import statement from all my programs which i was doing at the module level. And used them precisely where i need them :) Its working fine now. Thanks! Tarun M.
  8. TarunMakhija

    convert .py to .pyc during run time to make changes take effect

    yes i have imported it before as well
  9. TarunMakhija

    convert .py to .pyc during run time to make changes take effect

    I tried using import config.py within the program after making changes to config.py programmatically using file.write(). The problem still remained. Also, I am modifying the .py file (not .pyc). Have the rights to modify the .py file. I also tried the following using the imp and codeop...
  10. TarunMakhija

    convert .py to .pyc during run time to make changes take effect

    Hi, I need to modify some properties that I maintain in a file called config.py. How do I convert config.py to config.pyc programmatically during run time to ensure that the changes i made during a run time take effect. what is happening right now is that: after i make changes to config.py...
  11. TarunMakhija

    input parameters for python using GUI instead raw_input

    Hi, Sorry for having replied a bit late. Had a deadline to meet at office so I couldnt get back to u. I work on Python only after office hours starting at 10:00pm! I configured the Apache Web Server as per the instruction at http://www.imladris.com/Scripts/PythonForWindows.html. I started...
  12. TarunMakhija

    input parameters for python using GUI instead raw_input

    hi, thanks for your reply. while i was waiting for some guidance, i had already tried my hand at Tkinter. I did exactly the same as you have now suggested. Although I was able to invoke my application properly, Tkinter would immediately hang! ... This i cannot compromise on. Let me know if...
  13. TarunMakhija

    input parameters for python using GUI instead raw_input

    Hi all, I am a software engineer by profession working in the area of Content Management, albeit in the J2EE and FileNet platforms. I intend to make a transition to Python and at a later stage to Zope for building web based applications. Need your help for the same and it would be absolutely...

Part and Inventory Search

Back
Top