Advertisement
4_2005-2006 Files/ File Controls/ Input/ Output #168623

Print-It

This code will open a Print Dialog using nothing but JavaScript and HTML. It should work with most newer browsers (Netscape 6+, IE 6+)

AI

Shrnutí AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Zdrojový kód
original-source
Upload
	Private Sub ShowForm(ByVal fForm As Form)
		Dim objForms As Form
		For Each objForms In fMain.MdiChildren
			If objForms.Name = fForm.Name Then
				fForm.Dispose()
				fForm = Nothing
				objForms.Show()
				objForms.Visible = True
				objForms.Focus()
				Return
			End If
		Next
		With fForm
			.MdiParent = fMain
			.Show()
		End With
	End Sub
Původní komentáře (3)
Obnoveno z Wayback Machine