Results 1 to 22 of 22

Thread: I need projects(not really advanced by idea's to keep me programming!)

Hybrid View

  1. #1

    Thread Starter
    Registered User struntz's Avatar
    Join Date
    Aug 1999
    Location
    Brockway,Pa,USA
    Posts
    199

    Post

    Hello everyone!
    I'm running out of idea's for programs! The way i learn is if someone gives me an assignment and tells me what they want and then i can see if i really did learn anything from reading these books! So if anyone has any idea's of programs to make, Please list them so i may see if i can do it! But i mean not really hard ones, i'm only a starter, even though don't give me easy stuff like the "hello program or blah blah click this and see a picture"
    Thanks For listening! just got done learning array's so stuff with that would be cool too! but not multi-demsional please


  2. #2
    Hyperactive Member
    Join Date
    Mar 2000
    Posts
    461
    How about a program that automatically changes the wallpaper of your desktop from time to time?

  3. #3
    Lively Member
    Join Date
    May 1999
    Posts
    89
    Program a game, like tic tac toe, that is pretty challenging.

  4. #4
    Lively Member
    Join Date
    May 1999
    Location
    India
    Posts
    97

    Here's an idea

    hiya,
    Here's something i've always wanted to do myself... but never found the time to do the same

    Check it out.. if u like... i could provide input as and when needed... Be warned this borders on the "Advanced VB" stage...

    Here we go... I keep needing to mail stuff home from office... now this maybe 10MB in size, so mailing it becomes difficult due to the various mailbox size limits n all... so what i do is split the file into say 10 pieces of 1 MB each then mail every one of those 10 pieces home...

    Now this can be REALLY irritating, cause first i gotta split the file then i gotta load 10 instances of Outlook's New mail window attach the split piece .. enter the destination email id 10 times then mail 10 mails... phew!!!

    so how about getting together an application that does all this for me in 2 steps... splits the file in x - pieces defined by a Max size that i input... then send that to the destination address that i enter... so your interface should at the max have 3 text boxes ... 1 for the Target Filename, 1 for the Max split size... and finally the destination address for the split pieces...

    whaddya say???

    Cheers
    Gaurav
    [email protected]
    " Programming today is a race between software-engineers striving to build bigger and
    better idiot-proof programs and the universe trying to produce bigger and better idiots.
    So far the universe is winning".
    :-)

  5. #5
    Fanatic Member
    Join Date
    Mar 2000
    Location
    That posh bit of England known as Buckinghamshire
    Posts
    658
    Gaurav

    Out of sheer boredom, and someone else asking a similar sort of question, i have already programmed a File Splitter / Joiner.

    I can mail it to you if you like. It is in the form of an ActiveX Dll so it is easy to use.
    Iain, thats with an i by the way!

  6. #6
    Fanatic Member Dim's Avatar
    Join Date
    Jul 2000
    Posts
    620
    Heh, i was also bored and looked up the info on making some thing like that Gaurav, and it's not as hard as it sounds, esp when the splitter is already out there. Heh anyways...struntz, i have almost the same problems as you, i have the skill but no creativity whatsoever so i can't help, sowwy.

    Laterz,
    D!m
    Dim

  7. #7
    Addicted Member
    Join Date
    Apr 2000
    Posts
    215
    a file splitter probably wouldn't be that hard to do (just open the file in binary, mid the file from certain points and save the data to 10 different files sort of thing like file.file1 file.file2 etc) but I am too lazy to do that any chance you could send me a copy of that dll Iain17 and an example how to use it?.

  8. #8
    Fanatic Member Dim's Avatar
    Join Date
    Jul 2000
    Posts
    620
    Crypt:
    I think that this is one of the best examples i've seen,
    http://www.planetsourcecode.com/vb/s...txtCodeId=3582
    Try it out.

    Laterz,
    D!m
    Dim

  9. #9
    Addicted Member
    Join Date
    Apr 2000
    Posts
    215
    thanx for the url dim I appreciate it, the code looks good, but still if Iain17 wouldn't mind I would like to have a copy of his dll if possible, as I would rather call on a dll (if I ever actually have a need for it) than insert someone elses project into part of one of mine.

  10. #10
    Fanatic Member Dim's Avatar
    Join Date
    Jul 2000
    Posts
    620
    Good call Crypt, i wouldn't mind having that around also.
    Dim

  11. #11
    Fanatic Member
    Join Date
    Mar 2000
    Location
    That posh bit of England known as Buckinghamshire
    Posts
    658
    Sure thing Lads. I am at work, and the Dll is at home, so i will send it tonight.
    Iain, thats with an i by the way!

  12. #12
    Guest

    Lightbulb

    I have a need for a program for one of my projects. It's borderline Mid to Advanced. I'll take care of the graphic interface, all I need is someone to make the basic program. I need a NON-Internet Explorer Web Browser. It needs to be VERY simple with no extras. All I need it to do is read HTM/HTML files and to be able to interpret the tags and be able to put the pictures where they need to be.. No extras are needed. No Java, nothing extra needed. Why you ask? Well I hate I.E. and I need a base program to read JUST my HTML files that have pics in them. If you don't want to do it, is there anyone else who can? Please let me know. Thanks.


  13. #13
    Fanatic Member Dim's Avatar
    Join Date
    Jul 2000
    Posts
    620
    VERY simple:
    Code:
    'write the code in a text box, then
    Open "index.html" for Output As #1
        Print #1, Text1.Text
    Close #1
    'You might want to use Append istead of Output.
    'Then add a webbrowser control to your form and...
    WebBrowser1.Navigate "C:\index.html"
    I think that's it.
    Hope that helps,
    D!m
    Dim

  14. #14
    Lively Member
    Join Date
    May 1999
    Location
    India
    Posts
    97

    Non IE Browser

    Hey Dim,
    I thought he said NON IE browser... so u canna use the Web Browser control mate!!!

    Also hey Lain yeah do send over the Splitter code n DLL.. I hope u can send the code too would like to take a look as to how its done!!!

    AS for the project i had in mind.. people its NOT really that simple.. true i had given the easy step#1 part ... where u have this nice little UI with the text boxes where u accept the Target filename and Path... but how about if we up the ante a wee bit... n i askk u to do it using a Shell Extension use the standard windows context menu...

    So if i'm in a folder n i right click on a file ... then the Contextmenu should have my "Split n Upload" customised option which when clicked upon then automatically fires off the stuff i previously spoke about using the selected file name as its Target filename/path as input....

    whaddya say...

    Cheers
    Gaurav
    [email protected]
    " Programming today is a race between software-engineers striving to build bigger and
    better idiot-proof programs and the universe trying to produce bigger and better idiots.
    So far the universe is winning".
    :-)

  15. #15
    Fanatic Member Dim's Avatar
    Join Date
    Jul 2000
    Posts
    620
    Heh yeah i just realized that. Sorry Knight...but i don't really see a problem with using the webbrowser control.
    Gaurav's idea sounds pretty cool...give it a shot struntz.
    Laterz,
    D!m
    Dim

  16. #16
    Guest
    Well I had my reasons why I don't want the web control used. I want that control redone so I can see the code. But if no one wants to do it, no prob...

    Knight Vision

  17. #17
    Frenzied Member
    Join Date
    Jul 1999
    Posts
    1,800
    3D Tic Tac Toe using arrays. I love that game

  18. #18
    Junior Member
    Join Date
    Jul 2000
    Location
    Atlanta
    Posts
    16

    Hey Gaurav...

    That sound exactly like something I've been looking for. If yoiu get a hold on one, could you let me know?

    thx,
    tainc


    [email protected]

    Full Contact Coding-
    The greatest way of life!

  19. #19
    Hyperactive Member theman32x's Avatar
    Join Date
    May 2000
    Location
    New Jersey, USA
    Posts
    305
    how about you do a conversion program ...

    like having inches, feet, yards, miles

    and you type in something for one of those and it will give you the answer for the rest of them ...

    or cm, dm, km, - the same as above but with a different system ...

    or a temperature conversion from Celsius - Fahrenheit - Kelvin


  20. #20
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    Make a snake game - like nibbles back in qbasic
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  21. #21
    Frenzied Member
    Join Date
    Jul 1999
    Posts
    1,800
    Where can I get qbasic. Sounds fun

  22. #22
    Fanatic Member
    Join Date
    Mar 2000
    Location
    That posh bit of England known as Buckinghamshire
    Posts
    658
    QBasic is on the Windows CD. Do a search for it.
    Iain, thats with an i by the way!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width