Search:

Type: Posts; User: BenJones

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    604

    Re: Unintaller Std

    Hi, I updated my little uninstaller again to version 1.1 here some new features.

    Icon support for 16x16 and 32x32 icons.
    Tweaked the GUI a little bit.
    Added new items to popup menu in list view....
  2. Replies
    3
    Views
    604

    Unintaller Std v1.1

    Hi here is a small uninstaller program I made over the week to remove un-needed programs from windows it works quite well as well anyway I thought I share the source code with you all in the hope, it...
  3. Replies
    0
    Views
    681

    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;...
  4. Replies
    3
    Views
    432

    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
  5. Replies
    0
    Views
    145

    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...
  6. Replies
    0
    Views
    421

    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...
  7. Replies
    3
    Views
    427

    Re: Process failing to open file

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

    [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...
  9. Replies
    0
    Views
    4,017

    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...
  10. Replies
    3
    Views
    690

    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.
  11. Replies
    3
    Views
    690

    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...
  12. Replies
    0
    Views
    277

    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...
  13. Replies
    3
    Views
    45,076

    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...
  14. Thread: Fish VM

    by BenJones
    Replies
    2
    Views
    4,844

    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...
  15. Replies
    3
    Views
    45,076

    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...
  16. Thread: Fish VM

    by BenJones
    Replies
    2
    Views
    4,844

    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...
  17. Thread: Fish VM

    by BenJones
    Replies
    2
    Views
    4,844

    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...
  18. Replies
    2
    Views
    4,380

    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...
  19. Replies
    2
    Views
    4,269

    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.
  20. Replies
    8
    Views
    3,730

    Re: Random Password Generator

    Thanks yokesee glad you like it
  21. Replies
    8
    Views
    3,730

    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...
  22. Replies
    2
    Views
    4,269

    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
  23. Replies
    0
    Views
    3,588

    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...
  24. Replies
    1
    Views
    2,151

    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...
  25. Replies
    0
    Views
    3,209

    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...
  26. Replies
    1
    Views
    22,030

    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...
  27. Replies
    0
    Views
    3,334

    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...
  28. Thread: mBox Reader

    by BenJones
    Replies
    0
    Views
    2,075

    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...
  29. Replies
    0
    Views
    10,133

    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...
  30. Replies
    0
    Views
    9,586

    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...
  31. Replies
    0
    Views
    9,841

    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...
  32. Replies
    0
    Views
    8,816

    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...
  33. Replies
    0
    Views
    9,897

    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...
  34. Replies
    0
    Views
    9,011

    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...
  35. Replies
    0
    Views
    10,070

    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.


    {
    ...
  36. Replies
    0
    Views
    9,244

    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...
  37. Replies
    1
    Views
    11,822

    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

    ...
  38. Replies
    1
    Views
    11,822

    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...
  39. Replies
    56
    Views
    39,400

    Re: VB6 - Yet Another Web Server

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

    by BenJones
    Replies
    4
    Views
    3,608

    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.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width