Groups | Blog | Home
all groups > vb.net upgrade > july 2004 >

vb.net upgrade : vb 2005 Express (from VB6)


Richard K Bethell
7/2/2004 3:43:11 PM
Mostly I want to thank the powers that be for a much improved upgrade engine
that finally handles printing. Now I should note that my upgrade did not
really work, on a fairly simple sample:

Private Sub btnPrint_Click()
Printer.CurrentX = 10
Printer.CurrentY = 10
Printer.FontSize = 30
Printer.Font = "Verdana"
Printer.FontBold = True
Printer.Print "Yeah Baby yeah!"
Printer.EndDoc
MsgBox "Done!"
End Sub

gives me....

Private Sub btnPrint_Click(ByVal eventSender As System.Object, ByVal
eventArgs As System.EventArgs) Handles btnPrint.Click

My.Computer.Printers(0).CurrentX = 10

My.Computer.Printers(0).CurrentY = 10

VB6.FontChangeSize(My.Computer.Printers(0).Font, 30)

My.Computer.Printers(0).Font =
VB6.FontChangeName(My.Computer.Printers(0).Font, "Verdana")

VB6.FontChangeBold(My.Computer.Printers(0).Font, True)

My.Computer.Printers(0).Write("Yeah Baby yeah!")

My.Computer.Printers(0).NewPage()

MsgBox("Done!")

End Sub



....which just hangs there and prints nothing. But it is only beta 1, and I
didn't really expect it to do anything great! I just want to say thanks for
a much needed improvement!

Richard

Herfried K. Wagner [MVP]
7/2/2004 10:24:53 PM
"Richard K Bethell" <softdev@spammingisevil.bad> schrieb:
[quoted text, click to view]

If you think that's a bug, consider posting it to Product Feedback Center:

<URL:http://lab.msdn.microsoft.com/productfeedback/>

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Cindy Winegarden
7/5/2004 2:15:42 PM
In news: uYb46zGYEHA.3480@TK2MSFTNGP11.phx.gbl,
[quoted text, click to view]

To add to what Herfried said, you can post to
microsoft.private.visualbasic.migration. Login and password information are
at http://lab.msdn.microsoft.com/vs2005/community/. Note that I see this
newsgroup in my OE list but I don't see it in the list in the web-based
newsreader.

--
Cindy Winegarden MCSD, Microsoft Visual FoxPro MVP
cindy.winegarden@mvps.org www.cindywinegarden.com


AddThis Social Bookmark Button