It suffers from the #1 Problem on Bob's GDI FAQ:
http://www.bobpowell.net/picturebox.htm
- the drawing disapears when the picturebox.paint method is called. This will happen if you drag your form off screen and back on, or if another form moves across your form. It happens because the areas of...
The structure is passed as a blob of memory. Your program and the dll have to map out where the structures variables lie in that memory in the same way - otherwise things go astray. Lets say you have a structure:
Structure Blah
value1 as integer
value2 as integer
End Structure
But in the dll...
Friend Class ProjectConstants
Private Shared m_numerOfBeersInASixPack = 6
Public Shared ReadOnly Property NumerOfBeersInASixPack() As Integer
Get
Return m_numerOfBeersInASixPack
End Get
End Property
End Class
I don't understand what encryption you mean. If you need to encrypt something then an obfuscator will encrypt the constants too.
If you don't want to use a constant, then at least use a readonly porperty. Your Public Shared variable just ignores the whole reason for using a constant in the first...
Here's a vb 2005 only tip:
Dim iVal As Double
If Double.TryParse(TextBox1.Text, iVal) Then
Me.Text = iVal.ToString
Else
Me.Text = "Enter a double you fool!!"
End If
This is recommended as using try..catch is slow when the catch block is...
You could try getting the results another way, see the vb.net 101 examples
http://www.microsoft.com/downloads/details.aspx?FamilyId=08E3D5F8-033D-420B-A3B1-3074505C03F3&displaylang=en
framework - using wmi
use
imports System.ComponentModel
and then:
<Browsable(True), Category("Appearance"), DefaultValue(GetType(Image), "Nothing")> _
Public Property MyImage() As Image
Get
Return m_MyImage
End Get
Set(ByVal Value As Image)
m_MyImage = Value...
It works with a small tweak - you need withevents for the objPrintDocument
Private WithEvents objPrintDocument As New PrintDocument
Private objStreamToPrint As StreamReader
Private objPrintFont As Font
Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.