I have few lines of code, for which I am really confused to find way out and convert it to VB.NET. The following code is in VB6 and giving error for ScaleY, vbPixels, vbTwips as nt defined.
Thanx....
Sharing the best from my side...
--Prashant--
Code:
Private Sub DisplayDlvDiffDlg_Resize(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Resize
CancelButton_Renamed.Top = VB6.TwipsToPixelsY(VB6.PixelsToTwipsY(Me.Height) - VB6.PixelsToTwipsY(CancelButton_Renamed.Height) - ScaleY(30, vbPixels, vbTwips))
CancelButton_Renamed.Left = VB6.TwipsToPixelsX(VB6.PixelsToTwipsX(Me.Width) - VB6.PixelsToTwipsX(CancelButton_Renamed.Width) - ScaleX(13, vbPixels, vbTwips))
OKButton.Top = CancelButton_Renamed.Top
OKButton.Left = VB6.TwipsToPixelsX(VB6.PixelsToTwipsX(CancelButton_Renamed.Left) - VB6.PixelsToTwipsX(OKButton.Width) - ScaleX(10, vbPixels, vbTwips))
DlvDiffText.Height = VB6.TwipsToPixelsY(VB6.PixelsToTwipsY(Me.Height) - VB6.PixelsToTwipsY(OKButton.Height) - ScaleY(45, vbPixels, vbTwips))
DlvDiffText.Width = VB6.TwipsToPixelsX(VB6.PixelsToTwipsX(Me.Width) - ScaleX(22, vbPixels, vbTwips))
End Sub
Sharing the best from my side...
--Prashant--