rejetto forum
May 23, 2012, 10:45:07 AM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: This forum is free, you do NOT need to register to post. But you may.
PROBLEMS? QUESTIONS? CLICK HERE!
Fill the survey!
 
   Home   Help Search Login Register  
Pages: [1] 2  All
  Print  
Author Topic: FileBuilder is out!  (Read 17828 times)
0 Members and 1 Guest are viewing this topic.
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11824


View Profile
« on: January 06, 2005, 08:04:07 AM »

i made this new utility: FileBuilder
i need it sometimes
you can find it at www.rejetto.com/sw
Logged
Sk8er_Bender
Occasional poster
*
Offline Offline

Posts: 8

284031427 sk8erbender@hotmail.com
View Profile Email
« Reply #1 on: January 17, 2005, 11:47:31 AM »

nice!
Logged
Kevin
Guest
« Reply #2 on: May 29, 2005, 02:36:03 AM »

Hi there,

I tried to run fb, there's only a dos window poped up and vanished quickly. Then nothing happened? Is that some spyware?

Regards,
Kevin
Logged
Alexey
Insane poster
*****
Offline Offline

Posts: 363


156858425 alexeyslav@ua.fm
View Profile WWW
« Reply #3 on: June 13, 2005, 02:38:35 AM »

Some BUGs in FileBuilder.

strToByte will be now: (what it work without modify?)

old function return negative without use trailing "K" "M" and "G".

Code:
function strToByte(s:string):int64;
  begin
  result:=-1;
  if s = '' then exit;
  case upcase(s[length(s)]) of
    'K': result:=1024;
    'M': result:=1024*1024;
    'G': result:=1024*1024*1024;
    end;
  if result > 1 then setlength(s, length(s)-1)
                else result := 1;                              // INSERTED HERE !!!
  result:=result*strToInt64(s);
  end; // strToByte

AND

where TO_ absent, system return error - TO_  = -1 => TO_ < FROM_  !!! It`s error.
(sample: copy|some file|10-  halted with error "Bad sequence format" )

strToRange will be now: (what it work without modify?)
Code:
 function strToRange(s:string; var from_,to_:int64):boolean;
  begin
  result:=TRUE;
  try
    from_:=strToByte(chop('-',s));
    if from_ < 0 then result:=FALSE;
    if s = '' then to_:=-1
    else to_:=strToByte(s);
    if to_ <> -1 then                                          // INSERTED HERE !!!
     if to_ < from_ then result:=FALSE;
  except
    result:=FALSE;
    end;
  end; // strToRange
Logged
Alexey
Insane poster
*****
Offline Offline

Posts: 363


156858425 alexeyslav@ua.fm
View Profile WWW
« Reply #4 on: June 13, 2005, 02:42:18 AM »

Kevin, it`s console application, read help.txt in arhive.
This program runs script files. How it build (script) ? - READ HELP.TXT !!!
Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11824


View Profile
« Reply #5 on: June 22, 2005, 04:00:17 AM »

i saw both bugs were already fixed in beta2, but beta2 has not been published... i just forgot it on my HD   8O

thank you anyway, i'm happy to see someone is digging my sources Smiley
Logged
rejetto forum
« Reply #5 on: June 22, 2005, 04:00:17 AM »

Do you like this software? Consider even $2
 Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11824


View Profile
« Reply #6 on: June 22, 2005, 04:08:42 AM »

ok, published
Logged
ELEVENNNN
Tireless poster
****
Offline Offline

United States United States

Posts: 257


havent been here lately, still wont be here?

kwondra917@hotmail.com kurteatsdirt
View Profile
« Reply #7 on: October 23, 2007, 09:32:57 PM »

your a busy man, even though this was a long time ago, i got bored with my all day shift at night, on a day where I have nothing to do. scavaging the old forums posts and I have a good use for this!
Logged

This is going to take a long time
.................+...........................................
...................+.............+.................+.........
......................................
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11824


View Profile
« Reply #8 on: October 23, 2007, 09:42:05 PM »

working only by script files is unhandy
it will be able to work just command line
i was doing it some days ago, then had to stop for other jobs
Logged
ELEVENNNN
Tireless poster
****
Offline Offline

United States United States

Posts: 257


havent been here lately, still wont be here?

kwondra917@hotmail.com kurteatsdirt
View Profile
« Reply #9 on: October 23, 2007, 09:44:04 PM »

i'm all about command line Massimo (do I call you that or Rejetto?).. been doing unix for awhile and its just becoming native to me, plus its a challenge.. so many GUI based things arent right now.. yay for command line, I already like this and its been what ive been looking for for quite awhile. Why doesnt windows have a touch-like command??

-Kurt
Logged

This is going to take a long time
.................+...........................................
...................+.............+.................+.........
......................................
ELEVENNNN
Tireless poster
****
Offline Offline

United States United States

Posts: 257


havent been here lately, still wont be here?

kwondra917@hotmail.com kurteatsdirt
View Profile
« Reply #10 on: October 23, 2007, 09:50:10 PM »

Kevin, I doubt you'll read this but just in case anyone else needs help, you want to pull up cmd and change directory to where fb is located, dont just double click it. Example would be. (Assuming you extract it to C:/fb)

start, run, type cmd (hit enter)
at the command line do the following
cd C:\fb
and then run the command with the syntax after:

fb <script syntax or whatever>

you could also put it in /windows/system32 and then do start, run, fb <script syntax or whatever>

-Kurt
Logged

This is going to take a long time
.................+...........................................
...................+.............+.................+.........
......................................
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11824


View Profile
« Reply #11 on: October 23, 2007, 09:51:57 PM »

massimo or rejetto is the same

enjoy this
http://sourceforge.net/project/downloading.php?group_id=9328&use_mirror=superb-east&filename=UnxUtils.zip&17897217
Logged
ELEVENNNN
Tireless poster
****
Offline Offline

United States United States

Posts: 257


havent been here lately, still wont be here?

kwondra917@hotmail.com kurteatsdirt
View Profile
« Reply #12 on: October 24, 2007, 11:32:57 AM »

Your my hero, been looking for something that is native to my new unix-based thinking, keep pulling up cmd and typing linux commands, now i can for some! throwing in /system32 as lcmd Cheesy

Thanks Rejetto, heard your song by the way on richards site, sounds suprisingly good. (Not just saying that, if it was bad I just wouldnt comment Smiley

-Kurt
Logged

This is going to take a long time
.................+...........................................
...................+.............+.................+.........
......................................
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11824


View Profile
« Reply #13 on: October 24, 2007, 12:04:26 PM »

thanks
it's my first (and only) guitar song
i am/was a keyboardist
and i like Tool
Logged
ELEVENNNN
Tireless poster
****
Offline Offline

United States United States

Posts: 257


havent been here lately, still wont be here?

kwondra917@hotmail.com kurteatsdirt
View Profile
« Reply #14 on: October 27, 2007, 08:24:34 PM »

when did i ask about tool? or did you get it from the screenname?

favorite band by the way

-Kurt
Logged

This is going to take a long time
.................+...........................................
...................+.............+.................+.........
......................................
Pages: [1] 2  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!


Google visited last this page Today at 04:06:03 AM
anything