crlf is a 2 character set 13 and 10. using len(a)-1 only takes out the line feed but leaves in the carrage return. So use len(a)-2 to remove both the carrage return and the line feed. When you write...
lIt's only a guess but the Join is adding a crlf to the end of your string and a crlf is added when saving the file. After your join statement try this.
It is a function of the print statement. Whether you are printing to a file or to a form each time you use a <,> in the statement a tab is sent out. However when printing to a file you need one <,>...
In the menu editor highlight the name (Yahoo in your example) and press the insert button. In the Caption box enter a single hyphen (-). Name it hyp1. Do same thing for each name you want a bar...
If you are running it from the IDE then goto File:AddProject to add a new project. In the window that lists the projects, forms, etc. right click on the new project name and select "Set as start up"....
To stop a running app look at this site:
http://support.microsoft.com/kb/q153463/
Unless you are doing some kind of system stuff (I don't like to put anything in the registery) put your program in...
Sorry about that. I didn't read your post right.
If I get what you want to do is put text in a file that is on the disk.
The only way to do that is create a second file. Read data in and put in...
The flickering is caused by painting to the screen while the screen is being refreshed. So you need to paint the picture very fast. The fastest way is using API BitBlt. Check out this tutorial at...
The 75000 is not pixels. It is Twips. Click on your picturebox and look in properties for ScaleMode and click on the down arrow and choose 3-Pixels. This will give you your 5000 pixels.
Wayne
I'm new at database programing but don't you need the database name in:
"Data Source=N:/PERSONAL/awilliams/basic/;"
i.e.
"Data Source=N:/PERSONAL/awilliams/basic/MYDATABASE.DBF;"
Wayne
I already tried that but didn't work. I get a sql syntax error. I found out that if I made the primary key a long then it worked. Don't know why but it does.
Thanks for your reply,
Wayne
Hi,
I am new to database programing and have this problem I can't find an answer to. This is the code I am using.
[CODE]
Set conData = New ADODB.Connection
conData.Open...
Hey Guys,
I can't figure this out. I'm using a textbox (multiline). When I press the tab the focus changes to the next control. I know I can get the keypress but I have to insert it into the text....