|
-
Jul 31st, 2000, 10:44 PM
#1
Thread Starter
Registered User
-
Jul 31st, 2000, 10:54 PM
#2
Hyperactive Member
How about a program that automatically changes the wallpaper of your desktop from time to time?
-
Jul 31st, 2000, 11:52 PM
#3
Lively Member
Program a game, like tic tac toe, that is pretty challenging.
-
Aug 1st, 2000, 03:04 AM
#4
Lively Member
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". :-)
-
Aug 1st, 2000, 05:05 AM
#5
Fanatic Member
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!
-
Aug 1st, 2000, 05:30 AM
#6
Fanatic Member
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
-
Aug 1st, 2000, 06:17 AM
#7
Addicted Member
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?.
-
Aug 1st, 2000, 07:38 AM
#8
Fanatic Member
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
-
Aug 1st, 2000, 07:52 AM
#9
Addicted Member
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.
-
Aug 1st, 2000, 07:55 AM
#10
Fanatic Member
Good call Crypt, i wouldn't mind having that around also.
-
Aug 1st, 2000, 07:59 AM
#11
Fanatic Member
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!
-
Aug 1st, 2000, 10:17 PM
#12
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.
-
Aug 2nd, 2000, 12:05 AM
#13
Fanatic Member
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
-
Aug 2nd, 2000, 12:48 AM
#14
Lively Member
-
Aug 2nd, 2000, 12:55 AM
#15
Fanatic Member
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
-
Aug 2nd, 2000, 08:51 AM
#16
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
-
Aug 2nd, 2000, 10:32 AM
#17
Frenzied Member
3D Tic Tac Toe using arrays. I love that game
-
Aug 2nd, 2000, 10:51 AM
#18
Junior Member
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!
-
Aug 2nd, 2000, 03:49 PM
#19
Hyperactive Member
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
-
Aug 2nd, 2000, 04:32 PM
#20
transcendental analytic
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.
-
Aug 2nd, 2000, 04:38 PM
#21
Frenzied Member
Where can I get qbasic. Sounds fun
-
Aug 2nd, 2000, 05:31 PM
#22
Fanatic Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|