You are not logged in.

Dear visitor, welcome to Jabaco - Community. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

axtens

Trainee

  • "axtens" is male
  • "axtens" started this thread

Posts: 37

Date of registration: Mar 16th 2009

Location: Perth, WA, Australia

Occupation: Software/Test Engineer

Hobbies: be a husband and a dad, play ukulele, sing

  • Send private message

1

Saturday, October 24th 2009, 4:41am

Inconsistency in import of VB6 project

G'day everyone

The form below imported okay, except for the

Source code

1
  	Alignment   	=   2
which fell back to left-justified. Not a big deal on a small project but likely a bigger deal on larger projects.

Kind regards,
Bruce.

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
VERSION 5.00
Begin VB.Form Form1 
   Caption     	=   "Form1"
   ClientHeight	=   3090
   ClientLeft  	=   60
   ClientTop   	=   450
   ClientWidth 	=   4680
   LinkTopic   	=   "Form1"
   ScaleHeight 	=   3090
   ScaleWidth  	=   4680
   StartUpPosition =   3  'Windows Default
   Begin VB.Label Label1 
  	Alignment   	=   2  'Center
  	Caption     	=   "Label1"
  	BeginProperty Font 
     	Name        	=   "MS Sans Serif"
     	Size        	=   24
     	Charset     	=   0
     	Weight      	=   400
     	Underline   	=   0   'False
     	Italic      	=   0   'False
     	Strikethrough   =   0   'False
  	EndProperty
  	Height      	=   2895
  	Left        	=   120
  	TabIndex    	=   0
  	Top         	=   120
  	Width       	=   4455
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
	Label1.Caption = "my" & vbNewLine & "dog's" & vbNewLine & "got fleas"
End Sub

Rate this thread
WoltLab Burning Board