2011 ജൂലൈ 11, തിങ്കളാഴ്‌ച

Vb6 CommonDialog

Vb6 CommonDialog
CommonDialog1.ShowColor CommonDialog1.ShowFont CommonDialog1.ShowHelp CommonDialog1.ShowOpen CommonDialog1.ShowPrinter CommonDialog1.ShowSave
കോമൻ ഡയലോഗ്
കോമൻഹ് ഡയലോഗ് സാധാരണയായി ഫോമിൽ ഫയൽ ഓപെൺ ചെയ്യുക
ഫയൽ സെവ് ചെയ്യുക ,കലർ തിര്ഞ്ഞ്ടുക്കുക എന്നിവക്ക് ഇത് ഉപയോഗിക്കുന്നു.
ചില അവസരങ്ങളിൽ ഫോന്ട് ഹെൽപ്പ് എന്നിവക്കും ഇതിന്ടെ സഹായം തേടും
On Error Resume Next

With
CommonDialog1
.DialogTitle = "Open File"
.Filter = "Web page (*.htm;*.html) | *.htm;*.html|" & _
"All Supported Picture formats|*.gif;*.tif;*.pcd;*.jpg;*.wmf;" & _
"*.tga;*.jpeg;*.ras;*.png;*.eps;*.bmp;*.pcx|" & _
"Text formats (*.txt;*.doc)|*.txt;*.doc|" & _
"All files (*.*)|*.*|"
.ShowOpen
.Flags = 5
WebBrowser1.Navigate2 .FileName

End With

അഭിപ്രായങ്ങളൊന്നുമില്ല:

ഒരു അഭിപ്രായം പോസ്റ്റ് ചെയ്യൂ