Search:

Type: Posts; User: BenJones

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    528

    Reverse Polish notation

    //Simple RPN (Reverse Polish notation) Engine
    //This has 4 basic operators and I added a few functions.
    //Play around and add other stuff it's very easy to add new fatures to it

    using System;...
  2. Replies
    3
    Views
    379

    Re: Problem with two Values

    Don't know if this is any good for you.



    int neg = -5;
    if(neg < 0)
    {
    neg = (-neg);
    }
    MessageBox.Show
  3. Replies
    0
    Views
    102

    Special Folder Jump

    SpecialFolderJump is a small project I made to make it easier to open a system folder on your computer without the need to type it in the run box. With this app you can open as many selected folders...
  4. Replies
    0
    Views
    380

    Q Start Menu Finder

    Hi, this is a little project I made that allows you to search your start menu for programs, simply by typing the name and the results popup instantly, you also have options in the right click menu...
  5. Replies
    3
    Views
    364

    Re: Process failing to open file

    Thanks Both for the answers I switched the project platform to 64bit and it now works thanks again.
  6. Replies
    3
    Views
    364

    [RESOLVED] Process failing to open file

    Hi I am makeing a program to start the programs in the start menu how ever I come accross a few programs that throw an error saying the file is not found when it is any idea what is wrong for example...
  7. Replies
    0
    Views
    3,527

    Simple Text file Statistics

    hi, this is a little example I made in java to count the letters, uppcase and lowercase spaces, digits in a string.
    anyway hope you like it, note I am still learning java so there maybe things I can...
  8. Replies
    3
    Views
    666

    Re: UK lotto numbers

    Never knew about the Durstenfeld-Algorithm thanks for the info should come in handy if I ever need to do something like this agian.
  9. Replies
    3
    Views
    666

    UK lotto numbers

    Hi this shows are to shuffle the contents of an array list so I made a little program to show it's usage hope you like it.


    import java.util.ArrayList;
    import java.util.Collections;

    public...
  10. Replies
    0
    Views
    257

    Reverse Polish notation

    Hi I just started to use java from using other programming languages and decided to convert one of my old projects' it a Reverse Polish notation class to do calculations very basic but works hope you...
  11. Replies
    3
    Views
    45,049

    Re: Simple rpn calculator

    Here is a new update of my RPN calulator a lot of chnages now supports Functions and Variables hope you like the update.



    // RPN Calculator with mathematical functions and variables
    // By Ben...
  12. Thread: Fish VM

    by BenJones
    Replies
    2
    Views
    4,824

    Re: Fish VM Beta 1.1

    I have updated my Virtual machine to include an assembler I also added a few examples to show how the VM works no more hard coded examples. anyway hope you like the update.

    177859

    To assemble...
  13. Replies
    3
    Views
    45,049

    Simple rpn calculator

    Hi, this is a simple reverse polish notation calulator in C it takes the input as postfix and and shows the result. this is very basic code I not added any functions but I may do in time. One rule of...
  14. Thread: Fish VM

    by BenJones
    Replies
    2
    Views
    4,824

    Re: Fish VM

    I have updated my Virtual Machine added some more examples and op-codes you can now do simple logic if's and jumps, I am now currently working on an assembler that I will upload as soon as I have...
  15. Thread: Fish VM

    by BenJones
    Replies
    2
    Views
    4,824

    Fish VM

    hi,
    The last few weeks I been reading about virtual machines and how they work as I always wanted to write my own little language. I have read many books on the subject but never really sat down and...
  16. Replies
    2
    Views
    4,363

    UK Lotto Generator

    hi, This is a small lotto generator I made it simple it makes 59 numbers stores them into a array and then suffle the array and then I pick the first 6 numbers. There is more than likey a better way...
  17. Replies
    2
    Views
    4,252

    Re: Merge two or more text files into one

    Thanks for the info passel will come in handy when I need to use it to copy files from folders.
  18. Replies
    8
    Views
    3,712

    Re: Random Password Generator

    Thanks yokesee glad you like it
  19. Replies
    8
    Views
    3,712

    Random Password Generator

    Hi,
    This is a password generator I made a few months back with the help of a friend who added a few featires. it contains many options skins and more hope you like it.

    177607

    Download Source...
  20. Replies
    2
    Views
    4,252

    Merge two or more text files into one

    Hi,

    This is a small file merger to join many text files into a final output file.
    Hope you find it usfull.



    // File : merge.c
    // By : Ben a.k.a DreamVB
    // Date : 21:15 16/06/2020
  21. Replies
    0
    Views
    3,569

    Remove Blank Lines From A Text File

    Hi,

    This is some simple project I made in C that removes blank lines from text files. I needed this tool as I was working with a source files that contained a lot of blank lines So I made this...
  22. Replies
    1
    Views
    2,148

    Text To Picture

    Hi
    This is a project I made sometime ago, it allows you to encrypt text and save as a bitmap, You can then load the bitmap and with the right encrypt key you used you can decrypt the text.
    Hope...
  23. Replies
    0
    Views
    3,188

    Programming Language Comment Remover Beta

    Hi,

    This is a small project I made today it allows you to remove comments from C/C++ , Python and Basic.
    At the moment it only removes single comments, and I hope to add more features soon hope...
  24. Replies
    1
    Views
    21,555

    Good Random Password Generator

    Strong Password Generator

    Bpwsgen is a program that enables you to create secure passwords or lists of passwords. All that is required is a length and the count to be created, You also have nine...
  25. Replies
    0
    Views
    3,320

    Text Frequency V1.0

    This is a little tool to count the Lines, Digts Words, Chars, UpperCase and LowerCase chars in a file.



    // File : ts.c
    // By : Ben a.k.a DreamVB
    // Date : 20:50 26/05/2020
    // Info : Little...
  26. Thread: mBox Reader

    by BenJones
    Replies
    0
    Views
    2,070

    mBox Reader

    Hi this is a mail message box reader I made to read old usenet message box files. if you want any mail box files you can find a load on wayback machine. with this little app it makes it easyer to...
  27. Replies
    0
    Views
    10,116

    Reverse Polish Notation calc

    hi this is a small pice of code I made in delphi I put together that can calculate RPN expressions.
    at the moment it only works with basic operators, no function support as of yet also all operators...
  28. Replies
    0
    Views
    9,571

    My Favorites Backup Helper Ver 1.0

    hi this is a small project I am working on that will backup my internet favorite to a folder and also add to a log so I know when it was backed up. it very basic at the moment and is made in just...
  29. Replies
    0
    Views
    9,818

    DM My Folder Organizer

    DM My Folder Organizer v1.0

    This is a small program I made to keep track of reccent folder I access, easy editing of the folder using a text file, Find feature, List view with different style view...
  30. Replies
    0
    Views
    8,799

    DM Usfull Folder Paths

    hi,
    This is a small tool I made that will allow you to open many of the windows special folder paths, you also have the option to find a folder just by typeing part of it's name. Very simple program...
  31. Replies
    0
    Views
    9,876

    DM Text to Image Beta 1a

    hi this is a small project I been working on over the weekend. This will allow you to tyoe text into a text box choose a font, size color, optional textuire and show the output as an image. you can...
  32. Replies
    0
    Views
    8,990

    DM Start Menu Launcher

    Here is a small cool app I made in Delphi that allows you to find and run programs found in the start menu. makeing serach results instant. saves a lot of time looking tho the start menu.

    Hiope...
  33. Replies
    0
    Views
    10,050

    CSV Class for Delphi, Lazarus

    hi here is an almost compleate CSV class I made in Delphi, to easy allow reading and writeing CSV files. Very easy to use just include in your project and your away to go.
    Hope you like it.


    {
    ...
  34. Replies
    0
    Views
    9,227

    DM Text Book Reader Help System

    DM TextBook Reader is a simple viewer I made to view a custom text file with pages into, you just need one file and place all your pages into it, I made this cos I wanted to make my own help system...
  35. Replies
    1
    Views
    11,803

    Re: DM CSS code un-packer Version 1.0

    I made a little error I fogot to include the packed css example I included the un-packed one. anyway here is the packed css file that was ment to be included that you can test.

    example.css

    ...
  36. Replies
    1
    Views
    11,803

    DM CSS code un-packer Version 1.0

    Hi,

    Here is a program I made in Delphi to unpack a css file makeing it easyer to read see more info below:

    Inofrmation

    DM CSS un-packer is a piece of software to convert a CSS file that has...
  37. Replies
    56
    Views
    39,308

    Re: VB6 - Yet Another Web Server

    nise project thank you for shareing, i shall learn a lot from this.
  38. Thread: dm Simple VM

    by BenJones
    Replies
    4
    Views
    3,599

    Re: dm Simple VM

    Glad you like it check back for updates. I am going to try and keep on this project. I seem to start things and never finish them, hopfully I can finish this one.
  39. Thread: dm Simple VM

    by BenJones
    Replies
    4
    Views
    3,599

    Re: dm Simple VM

    Here is a new update of DM++ Virtual Machine. I now created the assembler. This allows you to take a source file in the DM++ language and then convert to byte code that can be run with the virtual...
  40. Thread: dm Simple VM

    by BenJones
    Replies
    4
    Views
    3,599

    dm Simple VM

    hi, This is my little Toy VM I try to made tonight it a little basic at the moment since it my first real try at something like this. I try and add more stuff as I go along anyway hope you like the...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width