to join two files

Just starting out? Need help? Post your questions and find answers here.
sabater
User
User
Posts: 33
Joined: Wed Jul 13, 2005 3:40 am

to join two files

Post by sabater »

I want to join two binary files in one. More I want to make this without the command IncludeBinary.
My idea is create a program wich get a file .swf (Flash) and then put it into a executable.

Example:

The Macromedia Fash Player.
If I open it in a hex editor and copy all the bytes of a swf file and place after the bytes of the Macromedia Flash Player., The flash player is transformed in a projetor


Sorry my English :oops:
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

is it a good idea to tell you how to do that, Valter De Jesus Sabater? viewtopic.php?t=16291&start=30
sabater
User
User
Posts: 33
Joined: Wed Jul 13, 2005 3:40 am

Post by sabater »

is it a good idea to tell you how to do that, Valter De Jesus Sabater?
Any problem with my name?
:o
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

nope just wanted you to know that I KNOW EVERYTHING :shock:

:lol:

well about the flash to include in exe i dont have time till later this evening but try to search the forum!
later we can talk about it.
sabater
User
User
Posts: 33
Joined: Wed Jul 13, 2005 3:40 am

Post by sabater »

Oh! [X]
You are god, and you know all. :D
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

:D
btw where did you find that???
sabater
User
User
Posts: 33
Joined: Wed Jul 13, 2005 3:40 am

Post by sabater »

I KNOW EVERYTHING

How you find my name?


Now the source of a dangerous virus :lol:

Code: Select all

OpenConsole()
ConsoleTitle("Calculador de P.G 1.0")
ConsoleColor(15,2)
PrintN(";---------------------------------------;")
PrintN(";---------Calculador de P.G 1.0---------;")
PrintN(";---Criado por Valter de Jesus sabater--;")
PrintN(";---------------------------------------;")
PrintN(";---------------------------------------;")
PrintN("")
ConsoleColor(10,0)
Print("Primeiro termo da P.G: ")
ft1$=Input()
PrintN("")
Print("Segundo termo da P.G: ")
st1$=Input()
PrintN("")
Print("Terceiro termo da P.G: ")
tt1$=Input()
PrintN("")
val1=Val(ft1$):val2=Val(st1$):val3=Val(tt1$)
PrintN("P.G Resultante: ("+Str(val1)+","+Str(val2)+","+Str(val3)+",...)")
PrintN("")
ConsoleColor(11,0)
Print("Insira o termo a ser calculado: ")
findter$=Input()
calcter=Val(findter$)
PrintN("")
n1=Val(findter$)-1 ; este é o n - 1
rz=Val(st1$)/Val(ft1$) ; razão: a2 dividido por a1 Tá certo
multsig=Pow(rz,n1)     ;Executa A conta de razão^n-1
fignal=Val(ft1$)*multsig
PrintN("")
ConsoleColor(14,0)
PrintN("Resultado: An = "+Str(fignal))
PrintN("")
ConsoleColor(15,0)
PrintN("--------Exercicio Completo---------")
PrintN("")
PrintN("an=a1.q^n-1")
PrintN("an="+ft1$+"."+Str(rz)+"^"+Str(calcter)+"-"+"1")
PrintN("an="+ft1$+"."+Str(rz)+"^"+Str(n1))
PrintN("an="+ft1$+"."+Str(multsig))
PrintN("an="+Str(fignal)  )
Input()
Last edited by sabater on Wed Aug 17, 2005 9:12 pm, edited 1 time in total.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

hehe actually i visited the site you have @ the www button, then i reached "contacts", and searched for Sabater :) (of course your language isnt long from french so i didnt really have a big problem finding it. not that im native french-speaking but i can read it and write a bit, too)

so i guessed your name wasnt Fatima and took Valter instead :)
User avatar
griz
Enthusiast
Enthusiast
Posts: 167
Joined: Sun Jun 29, 2003 7:32 pm
Location: Canada

Post by griz »

Sabater, I see you've changed your Avatar... that might help your image a little... he he :)

Anyhow, perhaps the following post will help you ...

viewtopic.php?t=12878&highlight=
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

hey and what about adding an exe to an swf and spread the virus? :lol:
In fact you gave a bad image, lets just forget it (well one forgives but never forgets) and... dont ask for something that has potential malicius use.
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

[X]
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

@trond please dont post my personal adress and phone number here!!! :?
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Post by DoubleDutch »

TROND: I've not seen any posts as stupid as that in a long time.

Idiot.
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
Henrik
Enthusiast
Enthusiast
Posts: 404
Joined: Sat Apr 26, 2003 5:08 pm
Location: Denmark

Post by Henrik »

Trond Delete that post, you should be banned for that stunt :evil:
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

probably. however if he removes it imidiatly i wont be mad.. but hurry, please! before a search machine cache's it....
Post Reply