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 SkipVought 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. blundellp

    J2ME - NoClassDefFoundError: Expected an initialized class

    If only i'd checked my emulator version. Sony erikson v.7 doesnt support location api, version 8+ does. problem solved!!!
  2. blundellp

    J2ME - NoClassDefFoundError: Expected an initialized class

    Hey guys trying to create a GPS application that tracks your movement as you walk, i've successfully created this as a free standing midlet, however when i'm now trying to port it into another one of my midlets i'm getting this error: java.lang.NoClassDefFoundError: Expected an initialized...
  3. blundellp

    J2ME Bluetooth UUID Help

    With Bluetooth connections the port number is the UUID, I found the error I had a rogue semi colon on the end of my string and it also doesn't like the blank spaces, thanks for your time and effort
  4. blundellp

    Bluetooth UUID and Service Creation J2ME

    Can I post J2ME questions here? I was just wondering can someone help me with my problem. I'm trying to create my own Bluetooth service, the code is:- public class createBluetoothService extends Thread { public void run() { try {...
  5. blundellp

    J2ME Bluetooth UUID Help

    Ah yeah thats just my slack eye missing the capital letter :-) thanks Ah I see about hte microsoft GUID, i'll keep looking, I also found http://www.famkruithof.net/uuid/uuidgen and it fails with this UUID aswell, annoying I'll keep looking for some more information on this and find a...
  6. blundellp

    J2ME Bluetooth UUID Help

    Can I post J2ME questions here? I was just wondering can someone help me with my problem. I'm trying to create my own Bluetooth service, the code is:- public class createBluetoothService extends Thread { public void run() { try {...
  7. blundellp

    Prolog Heuristics

    Hey i'm currently fiddling with Prolog to complete the tower of hanoi puzzle game. I've managed to be able to represent the search space like this: % Initial State: % -8 | | % ---7 | | % -----6...
  8. blundellp

    Running Hourly

    Thanks mate i've been lookin so long how to run hourly and all i needed was while(1) { sleep 3600; } thanks !! x x
  9. blundellp

    Running Hourly

    I know but i can write further program to if statement for different OS's to choose task schedular or cron etc, i am total admin so permissions is not a problem. So is there a way to install if the PPM website fails? Is there another mirror or something i'm not suite sure
  10. blundellp

    Running Hourly

    But if i want to cross platform my application i would have to invoke the task schedular from within the perl code
  11. blundellp

    Running Hourly

    http://ppm.activestate.com/BuildStatus/5.8-W.html Win32-TaskScheduler 2.0.3 FAIL It won't download/work , thats the PPM check
  12. blundellp

    Running Hourly

    Yeah, the module i am showing you uses the windows task scheduler but arranges the task through my perl program. I just can't seem to install the module correctly.
  13. blundellp

    Running Hourly

    Ah yes i have found win32::TaskScheduler to run this program for me from within perl. http://search.cpan.org/~unicolet/Win32-TaskScheduler2.0.3/TaskScheduler.pm However when i normally install my modules I do it myself putting the folders where there supposed to go. The helpfile says to run...
  14. blundellp

    Running Hourly

    Can anyone tell me how to make my program run hourly, i am useing windows so i cannot use the 'cron' program. Shall i use an outside windows program or is there a hourly loop command built into pearl? I don't really want to use another cpan pearl module unless its absolutely neccessary. This is...
  15. blundellp

    Moving Files In Perl

    Oh and by the way, window's does not support chmod you have to use "system hooks.</
  16. blundellp

    Moving Files In Perl

    Hey i found the error, I was getting permission denied, because i was attempting to open a directory as a file My readdir was pulling in all the entries in my /perl/ass folder including subdirectories. And i was then attempting to open one of those subdirectories as a file. Soon to be fixed :D
  17. blundellp

    Moving Files In Perl

    I have the code i've put the permissions in but it stills says permission error :S if ( $date >= $historyformer && $date <= $history ) #if the log equals greater than a week ago but less than 2 weeks ago { $hour = $hour - 1;print "hangs up on loop number:- $hour...
  18. blundellp

    Moving Files In Perl

    Well i've searched the internet an certain books, i can work out that i need to do something like; $mode = 0700; chmod $mode, "/perl/ass/$folder[$N]"; if ( $date == $month) #if the first line of the log equals the date { $oldlocation...
  19. blundellp

    Moving Files In Perl

    Ah yes its a permission's error, thanks i didnt no about the '$!' File cannot be moved: Permission denied at temp.pl line 54, <CURRENTLOG> line 1. hmmm i'm sure i have full access rights on this computer, i'll have to read up on this Paul
  20. blundellp

    Moving Files In Perl

    The print line returns >> old = /perl/ass/03pm01Dec.txt -- new = /perl/ass/1-month-ago/03pm01Dec.txt did you want to see this or shall i put it in my code? Becuase it stills says the error :(

Part and Inventory Search

Back
Top