User Name
Remember Me?
Password
Home
Register
Calendar
Today's Posts
FAQ
Free Publications
Search
Page 1 of 20
1
2
3
4
5
6
11
>
Last
»
Showing results 1 to 25 of 500
Search took
4.89
seconds.
Search:
Posts Made By:
RoofRabbit
Forum:
File I/O and Registry
06-04-2011, 02:08 PM
Replies:
3
Splitting Text
Views:
2,791
Posted By
RoofRabbit
You might be able to use the InStr function...
You might be able to use the InStr function counting the "."'s since that seems to be the difference.
Forum:
Tech Discussions
11-08-2007, 06:38 PM
Replies:
15
NTFS and FAT32 Problem
Views:
816
Posted By
RoofRabbit
Take the 3rd HD and put Win2kPro on it, it CAN...
Take the 3rd HD and put Win2kPro on it, it CAN read both NTFS and FAT32.
Forum:
General
11-04-2007, 02:33 AM
Replies:
8
MP3 Encryption
Views:
1,003
Posted By
RoofRabbit
I agree with LaVolpe, if a hacker is determined,...
I agree with LaVolpe, if a hacker is determined, he can eventually get the music.
Encrypting it and having the game decrypt it to a temp file would slow down some. The only real solution is to use...
Forum:
General
11-04-2007, 02:28 AM
Replies:
2
ASCII art and VB6
Views:
322
Posted By
RoofRabbit
I once done a program on a C64 that did that. I...
I once done a program on a C64 that did that. I just used arrays of characters for each letter.
Forum:
File I/O and Registry
11-02-2007, 05:11 AM
Replies:
5
saving data to a text file
Views:
550
Posted By
RoofRabbit
I see a lot of people confused on this. If it is...
I see a lot of people confused on this. If it is "binary", "hex", "decimal" or "text" doesn't matter. ALL data is stored onto a hard disk as binary data, it is read and written one bit at a time. It...
Forum:
General
11-02-2007, 04:57 AM
Replies:
2
trying to format a decimal with no luck
Views:
209
Posted By
RoofRabbit
Or picTrainingHeartRate.Print...
Or
picTrainingHeartRate.Print Format$(dblTrainingHeartRate, "###,##0.00")
Forum:
General
11-02-2007, 04:54 AM
Replies:
6
Changing Program Code from Program...???
Views:
310
Posted By
RoofRabbit
I would just save the values to a custom binary...
I would just save the values to a custom binary file using Double vars. It makes reading the files with a text editor impossible and no need for a huge database program just to store a table of...
Forum:
General
10-22-2007, 09:24 PM
Replies:
31
Print a PDF file to specific printers
Views:
1,727
Posted By
RoofRabbit
The problem may be related to "Chris J Locke"'s...
The problem may be related to "Chris J Locke"'s post. The printer selection code I posted doesn't actually do the printing, it only allows multiple printers to be selected.
Forum:
General
10-19-2007, 05:56 PM
Replies:
17
Can't get VB to obey If statement
Views:
443
Posted By
RoofRabbit
That's the most memory efficient way of doing it....
That's the most memory efficient way of doing it. I've made a couple of apps that had to work with an unknown number of records and that's the way I did it.
Forum:
General
10-17-2007, 08:01 PM
Replies:
1
Elevate Code in Vista using VB6
Views:
643
Posted By
RoofRabbit
I'd like to try it but I had to remove vista from...
I'd like to try it but I had to remove vista from mine. I just don't a fast enough pc to run Vista (3.2G 512M Ram).
Forum:
General
10-17-2007, 07:59 PM
Replies:
31
Print a PDF file to specific printers
Views:
1,727
Posted By
RoofRabbit
The code I gave a link to allows multiple printer...
The code I gave a link to allows multiple printer selections, if you already know the printer names, you can use just the code part that sets the current printing printer. The code uses a loop to...
Forum:
File I/O and Registry
10-16-2007, 05:38 PM
Replies:
4
set value in registry
Views:
496
Posted By
RoofRabbit
Did you declare the "OpenSubKey" routine? Most of...
Did you declare the "OpenSubKey" routine? Most of the guys in here work with the registery, I never do since I work with custom data files and just don't need reg access. I do know the routines you...
Forum:
General
10-16-2007, 05:33 PM
Replies:
31
Print a PDF file to specific printers
Views:
1,727
Posted By
RoofRabbit
Replace the commondialog1.ShowPrinter with the...
Replace the commondialog1.ShowPrinter with the code on this page:
http://roofrabbit.com/testprinter.html
Forum:
General
10-16-2007, 05:25 PM
Replies:
5
editing specific text
Views:
229
Posted By
RoofRabbit
Read the file in line by line into an array. Once...
Read the file in line by line into an array. Once read in, link the desired lines (array index) to the desired textboxes. After doing your editing, write all the lines from the array back to the file...
Forum:
General
10-14-2007, 02:07 PM
Replies:
3
Print function
Views:
186
Posted By
RoofRabbit
The font name is one word like the FontSize you...
The font name is one word like the FontSize you already have entered.
Printer.FontName
Forum:
General
10-06-2007, 06:14 PM
Replies:
7
How to make a tool window "stick" to your main application
Views:
358
Posted By
RoofRabbit
Right. If you want one "outside", I'd just set...
Right. If you want one "outside", I'd just set it's top and left properties with the main window's properties (adding in the width of course) and have it executed with the main form's resize event.
...
Forum:
General
09-26-2007, 12:06 PM
Replies:
1
Need help scrolling PictureBox with dynamic Textboxes (using cScrollBar)?
Views:
202
Posted By
RoofRabbit
Take a look at this example project where...
Take a look at this example project where textboxes are "scrolled" when more than 16 "dummy" records are put in. It might help.
http://roofrabbit.com/vbdemogrid.html
Forum:
General
09-25-2007, 12:36 PM
Replies:
10
Really need help until thursday...
Views:
344
Posted By
RoofRabbit
I agree, the old days of worrying with freeing...
I agree, the old days of worrying with freeing memory is basically over. But in those times, many pcs only had 640K or 4Meg at the most. Since 512Meg is about the smallest you can get in a new pc...
Forum:
File I/O and Registry
09-21-2007, 09:29 AM
Replies:
14
read file, only first line
Views:
930
Posted By
RoofRabbit
Thanks for the info, I wasn't quite 100% sure.
Thanks for the info, I wasn't quite 100% sure.
Forum:
General
09-21-2007, 09:26 AM
Replies:
9
Shell Issue?
Views:
290
Posted By
RoofRabbit
Could you attach the msg.com and the msg.txt...
Could you attach the msg.com and the msg.txt files? I'd like to have a look at it and see what happens on my system.
Forum:
General
09-20-2007, 07:07 PM
Replies:
9
Shell Issue?
Views:
290
Posted By
RoofRabbit
Try (don't forget the space after command.com): ...
Try (don't forget the space after command.com):
Shell "command.com " & App.Path & "\MSG.COM"
Forum:
File I/O and Registry
09-19-2007, 06:38 PM
Replies:
2
Help! I'm making a version of the 'who wants to be a millionaire game'...
Views:
371
Posted By
RoofRabbit
Have the text filenames in a string array and...
Have the text filenames in a string array and simply index each one as needed.
Forum:
File I/O and Registry
09-18-2007, 09:10 PM
Replies:
14
read file, only first line
Views:
930
Posted By
RoofRabbit
I thought the limit was 255. I did a quick test...
I thought the limit was 255. I did a quick test with a long path/name that was 72 chrs and works.
Forum:
General
09-16-2007, 09:54 PM
Replies:
2
Adding more than one project to your program
Views:
217
Posted By
RoofRabbit
Cerian Knight is right, however you can have...
Cerian Knight is right, however you can have modules in a common directory that different projects use. For example, one project I did used a module called Records.bas. The same file was used in the...
Forum:
General
09-16-2007, 09:49 PM
Replies:
9
Backup files in use
Views:
410
Posted By
RoofRabbit
I didn't know that. Even though I've done a lot...
I didn't know that. Even though I've done a lot of multiuser network software, I've always used my own custom database programming so I only had to contend with the server's file settings (Netware or...
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
4
5
6
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
Announcements
Announcements
Visual Basic .NET (2002/2003/2005/2008, including Express editions)
.NET Knowledge Base
Tutors' Corner
Code Library
ASP.Net
.NET Communications
.NET Game Programming
Managed DirectX
.NET Office Automation
.NET File I/O and Registry
.NET Database and Reporting
.NET Interface and Graphics
.NET Installation / Documentation
.NET General
Xtreme .NET Talk
Legacy Visual Basic (VB 4/5/6)
Knowledge Base
Tutors' Corner
Code Library
Communications
Game Programming
DirectX
VBA / Office Integration
Excel
Word, PowerPoint, Outlook, and Other Office Products
API
File I/O and Registry
Database and Reporting
Interface and Graphics
Installation / Documentation
General
Other Languages
Web Programming
Miscellaneous Languages
General Discussion
Tech Discussions
Random Thoughts
Forum Questions / Concerns / Comments
Advertisement:
Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
Home
Register
Calendar
Today's Posts
FAQ
Archive
© Xtremevbtalk.com 2001 - 2013. All Rights Reserved.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.