Vain Skrevet 3. desember 2004 Del Skrevet 3. desember 2004 Skal tegne en strek med line-funksjonen, men husker ikke hvordan man gjør det. Prøvde å google litt, men det kommer ganske mange treff på "line vb6" Hvordan gjør man det? Lenke til kommentar
Jonas Skrevet 3. desember 2004 Del Skrevet 3. desember 2004 Sånn gjør man det: Private Sub Form_Load() Me.AutoRedraw = True Me.ScaleMode = 3 Me.Line (0, Me.ScaleHeight / 2)-(Me.ScaleWidth, Me.ScaleHeight / 2) End Sub Lenke til kommentar
GeirGrusom Skrevet 4. desember 2004 Del Skrevet 4. desember 2004 MSDN: Draws lines and rectangles on an object. Syntax object.Line [step] (x1, y1) [step] - (x2, y2), , [F] The Line method syntax has the following object qualifier and parts: Part Description object Optional.Object expression that evaluates to an object in the Applies To list. If object is omitted, the Form with thefocus is assumed to be object. Step Optional.Keyword specifying that the starting point coordinates are relative to the current graphics position given by the CurrentX and CurrentY properties. (x1, y1) Optional. Single values indicating the coordinates of the starting point for the line or rectangle. The ScaleMode property determines the unit of measure used. If omitted, the line begins at the position indicated by CurrentX and CurrentY. Step Optional. Keyword specifying that the end point coordinates are relative to the line starting point. (x2, y2) Required. Single values indicating the coordinates of the end point for the line being drawn. color Optional. Long integer value indicating the RGB color used to draw the line. If omitted, the ForeColor property setting is used. You can use the RGB function or QBColor function to specify the color. B Optional. If included, causes a box to be drawn using the coordinates to specify opposite corners of the box. F Optional. If the B option is used, the F option specifies that the box is filled with the same color used to draw the box. You cannot use F without B. If B is used without F, the box is filled with the current FillColor and FillStyle. The default value for FillStyle is transparent. Remarks To draw connected lines, begin a subsequent line at the end point of the previous line. The width of the line drawn depends on the setting of the DrawWidth property. The way a line or box is drawn on the background depends on the setting of the DrawMode and DrawStyle properties. When Line executes, the CurrentX and CurrentY properties are set to the end point specified by the arguments. This method cannot be used in an With…End With block. Lenke til kommentar
Anbefalte innlegg
Opprett en konto eller logg inn for å kommentere
Du må være et medlem for å kunne skrive en kommentar
Opprett konto
Det er enkelt å melde seg inn for å starte en ny konto!
Start en kontoLogg inn
Har du allerede en konto? Logg inn her.
Logg inn nå