Forum: VB.NET 14 Days Ago |
| Replies: 2 Views: 150 |
Forum: VB.NET 15 Days Ago |
| Replies: 3 Views: 190 Re: Using Graphics Your problem is your numbers are pixels and you need to set them to the right scale.
If each pixel is one foot then you are starting at pixel 2 and 1759 and going to pixel 103 and 1768. Depending on... |
Forum: VB.NET 15 Days Ago |
| Replies: 5 Views: 211 |
Forum: VB.NET 16 Days Ago |
| Replies: 4 Views: 211 Re: Image Library Thanks for your input, I appreciate it but that is the way I was doing it.
After more thought i came up with an image that holds all the images (thanks to person that gave me the idea).
For anyone... |
Forum: VB.NET 16 Days Ago |
| Replies: 4 Views: 211 Re: Image Library I am using a picturebox for the image. My images are jpeg. I had thought about the imagelist but the images are pretty big. Isn't the image list limited to about 128x128 pixels.
Thanks for your quick... |
Forum: VB.NET 16 Days Ago |
| Replies: 2 Views: 114 Re: Closest match Well, heres one way. Your numbers must be in an array. Sort the array desending and pick the number above your chosen number, |
Forum: VB.NET 16 Days Ago |
| Replies: 2 Views: 153 Re: One Silly Doubt! Each tab page has a name. The default is TabPage1, TabPage2, ..., etc.
use:
TabControl1.SelectTab(TabPage2) |
Forum: VB.NET 16 Days Ago |
| Replies: 4 Views: 211 Image Library I am writing a slide show. The slide show itself is not bad.
My problem:
I can put the pictures in the resource area. This would require recompiling and sending the viewer each time I want to send... |
Forum: VB.NET 17 Days Ago |
| Replies: 1 Views: 288 |
Forum: VB.NET 18 Days Ago |
| Replies: 4 Views: 270 |
Forum: VB.NET 20 Days Ago |
| Replies: 3 Views: 184 |
Forum: VB.NET 20 Days Ago |
| Replies: 3 Views: 169 Re: How to print contents inVB.Net Use the vb net power packs at:
http://msdn.microsoft.com/en-us/vbasic/bb735936.aspx
Then look at the video at:
http://msdn.microsoft.com/en-us/vbasic/bb643800.aspx |
Forum: VB.NET 25 Days Ago |
| Replies: 3 Views: 205 |
Forum: VB.NET 30 Days Ago |
| Replies: 2 Views: 616 Re: VB 2008 Countdown Timer Help Try this:
Public Class Form1
Private CountDownTime As DateTime
Private span As Integer = 1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles... |
Forum: VB.NET Aug 27th, 2008 |
| Replies: 7 Views: 558 |
Forum: VB.NET Aug 26th, 2008 |
| Replies: 7 Views: 558 |
Forum: VB.NET Aug 24th, 2008 |
| Replies: 1 Views: 284 |
Forum: VB.NET Aug 22nd, 2008 |
| Replies: 4 Views: 321 Re: Help with FTP Follow this tutorial.
http://www.example-code.com/vbdotnet/default.asp |
Forum: VB.NET Aug 22nd, 2008 |
| Replies: 4 Views: 321 |
Forum: VB.NET Aug 21st, 2008 |
| Replies: 11 Views: 527 Re: word flash reader in vb.net You have too many loops, you only need one. You also have to refresh your textbox. Try this:
Public Class Form1
Dim readcontents As String = "The quick brown fox jumps over the lazy dog"
Dim... |
Forum: VB.NET Aug 19th, 2008 |
| Replies: 11 Views: 527 Re: word flash reader in vb.net What is happening is you don't have a delay in your loop. All the words are going there but is happening so fast you don't see it. After the "Label1.Text = splitout(i)" put in a Sleep(1000). |
Forum: VB.NET Aug 18th, 2008 |
| Replies: 3 Views: 325 |
Forum: VB.NET Aug 13th, 2008 |
| Replies: 7 Views: 554 Re: Variable declaration!!! The first just declares a variable as the class. The second creates an instance of it.
Without seeing your code I would say you need to put in "Exit Sub" after your If statement.
If it is a... |
Forum: VB.NET Aug 12th, 2008 |
| Replies: 1 Views: 158 |
Forum: VB.NET Aug 11th, 2008 |
| Replies: 3 Views: 233 Re: Problem With Form To be truthful with you I have never used TopMost before. I tried this code:
Child1.MdiParent = Me
Child1.Text = "Top Most"
Child1.TopMost = True
Child1.Show()
... |
Forum: VB.NET Aug 9th, 2008 |
| Replies: 1 Views: 247 |
Forum: VB.NET Aug 9th, 2008 |
| Replies: 3 Views: 233 |
Forum: VB.NET Aug 6th, 2008 |
| Replies: 1 Views: 509 Re: picture box Rather than a picturebox try a panel.
Create a class and call it Circ.
Imports System.Drawing.Drawing2D
Public Class Circ
Inherits UserControl
Private mLineColor As Color
Public... |
Forum: VB.NET Aug 6th, 2008 |
| Replies: 2 Views: 163 Re: Forms and loading In the Solution Explorer double click on the MyProject. Under the Application tab you will see "Startup Form:". Select your form here. |
Forum: VB.NET Aug 5th, 2008 |
| Replies: 2 Views: 231 |
Forum: VB.NET Aug 4th, 2008 |
| Replies: 5 Views: 546 |
Forum: VB.NET Aug 4th, 2008 |
| Replies: 2 Views: 583 |
Forum: VB.NET Aug 4th, 2008 |
| Replies: 3 Views: 212 Re: Book? VB.net Book? Mastering Visual Basic 2008 by Evangelos Petroutsos
I have been using his books since vb6. They are very good. |
Forum: VB.NET Aug 2nd, 2008 |
| Replies: 1 Views: 266 |
Forum: VB.NET Jul 31st, 2008 |
| Replies: 5 Views: 321 Re: Automatically type...?! I don't know about your game but this works for my game of Casino Empire.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim... |
Forum: VB.NET Jul 30th, 2008 |
| Replies: 5 Views: 321 Re: Automatically type...?! Well if you want a wild guess.
How about using process with RedirectStandardInput
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardinput.aspx
or maybe SendKeys. |
Forum: VB.NET Jul 30th, 2008 |
| Replies: 1 Views: 478 |
Forum: VB.NET Jul 26th, 2008 |
| Replies: 1 Views: 151 |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 1 Views: 188 Re: cookies I think you have to make this change in the internet options on the control panel. |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 12 Views: 427 |