slinger wrote:
ImagineIt wrote:
Idk if I can do this since Lazarus is not compiling.
Ok, i'l take you off the list.
No, don't. I might find out later but still let more people on if I can't.
Offline
slinger wrote:
WindozeNT wrote:
Just wanted to stop by and see how your software development was going. WindozeNT Software just released 18 new software products, in which 6 are updates. I also came to say that I want to license part of the MacinCrash Document Format v1.3 file format to SlingDev in hopes that you can create the format so MacinCrash For Windoze 1.3 can have its own file format.
Possible program name: MacinCrash Document Format v1.3 (Container File Format)
Purpose of this program: To give Mcrsh32 1.3 its own file format.
What this program does: Stores file data for use with MacinCrash For Windoze 1.3.Ok, we will try! (downloading MacinCrash)
Actually, the version on the database is MacinCrash For Windoze 1.0.1. Version 1.3 is still in development and to receive the developer previews of it you have to be a WindozeNT Software developer.
Offline
WindozeNT wrote:
slinger wrote:
WindozeNT wrote:
Just wanted to stop by and see how your software development was going. WindozeNT Software just released 18 new software products, in which 6 are updates. I also came to say that I want to license part of the MacinCrash Document Format v1.3 file format to SlingDev in hopes that you can create the format so MacinCrash For Windoze 1.3 can have its own file format.
Possible program name: MacinCrash Document Format v1.3 (Container File Format)
Purpose of this program: To give Mcrsh32 1.3 its own file format.
What this program does: Stores file data for use with MacinCrash For Windoze 1.3.Ok, we will try! (downloading MacinCrash)
Actually, the version on the database is MacinCrash For Windoze 1.0.1. Version 1.3 is still in development and to receive the developer previews of it you have to be a WindozeNT Software developer.
All right, never made a new file type before so I may miserably fail lol
Offline
slinger wrote:
Other software companies you may like
WindozeNT
It's "WindozeNT Software", not "WindozeNT".
Last edited by WindozeNT (2011-11-27 19:57:45)
Offline
slinger wrote:
WindozeNT wrote:
slinger wrote:
Ok, we will try! (downloading MacinCrash)Actually, the version on the database is MacinCrash For Windoze 1.0.1. Version 1.3 is still in development and to receive the developer previews of it you have to be a WindozeNT Software developer.
All right, never made a new file type before so I may miserably fail lol
The structure is currently this:
Application Signature (i.e. "MCRSH32-v1.3"; if not found, it is assumed to be a Mcrsh32 1.0x file which will be used like a standard RTF file) Background Color of Text Box RTF Information
Offline
Hm. I have experience in several languages, though I'm not sure whether I'd like to learn Pascal to join (I can learn languages pretty quickly). Can I have some sample code (something pretty advanced; I find that Hello World programs make stuff look more complicated than they are because of all the extra stuff, like #include <iostream>, using namespaces std; (or std::) and int main () in C++)? Also, what kind of stuff would you make?
Offline
maxskywalker wrote:
Hm. I have experience in several languages, though I'm not sure whether I'd like to learn Pascal to join (I can learn languages pretty quickly). Can I have some sample code (something pretty advanced; I find that Hello World programs make stuff look more complicated than they are because of all the extra stuff, like #include <iostream>, using namespaces std; (or std: and int main () in C++)? Also, what kind of stuff would you make?
Well, I envy you. I've tried learning some languages and they take forever to learn. Ok you want advanced code and I'm no advanced coder (yet) Well I just whipped this up,
program Project1; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Classes { you can add units after this }; {$R *.res} var input:string; number:integer; begin write('type something here: '); // a random program off the top of my head lol readln(input); writeln('So you typed, ',input,'?'); write('type a number: '); readln(number); writeln(number * number); writeln('press <Enter> to continue'); readln; end.
You may find it of use And as for the stuff we are making its up to the team and the people that fill out the form ;D
Offline
WindozeNT wrote:
Possible program name: MacinCrash Document Format v1.3 (Container File Format)
Purpose of this program: To give Mcrsh32 1.3 its own file format.
What this program does: Stores file data for use with MacinCrash For Windoze 1.3.
Wait, is this supposed to be made in VB? If so Its probably not going to happen any time soon because I hardly know any BASIC
Offline