Jump to content
Xtreme .Net Talk

greeky

Members
  • Posts

    5
  • Joined

  • Last visited

About greeky

  • Birthday 08/04/1981

greeky's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. at the end i solved my line raw data printing problem . i checked all in (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/prntspol_7mgj.asp[^]) but there is no information about formatting data in raw data printing.i wanna change font at least the font size of string printing. what can i do? Thanks a lot. NOTE: if u have raw data printing problem, check site at http://support.microsoft.com/default.aspx?scid=kb;en-us;322090[^]
  2. I have to make print some vb forms from dotmatrix printer. When i use a laserjet or deskjet, there is no problem. But when i try to use an dotmatrix printer doesnt work. What is probleM?
  3. thanks a lot .
  4. Why dateFormat Formatting doesnt work? what is absent in code? First i try to set a specific culture's patterns but it doesnt work. If i set my Current culture to "tr-TR", then i cant set numberformatting. What can i do? --- NOTE : I tried to set current cultures properties but it is readonly System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortTimePattern = "dd/MM/yyyy" it doesnt affect also doesnt throw any exception --- Dim separatorFormat As New System.Globalization.NumberFormatInfo Dim dateFormat As New System.Globalization.DateTimeFormatInfo 'If separatorFormat.CurrentInfo.NumberDecimalSeparator = "," Then System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("en-US") separatorFormat.NumberDecimalSeparator = "." separatorFormat.NumberGroupSeparator = "," 'Dim ci As New System.Globalization.CultureInfo("tr-TR") dateFormat.LongDatePattern = "dddd, dd MMMM yyyy" ' ci.DateTimeFormat.LongDatePattern" dateFormat.ShortDatePattern = "dd/MM/yyyy" 'ci.DateTimeFormat.ShortDatePattern dateFormat.LongTimePattern = "HH:mm:ss" 'ci.DateTimeFormat.LongTimePattern dateFormat.ShortTimePattern = "HH:mm" 'ci.DateTimeFormat.ShortTimePattern 'End If
  5. hi all, my problem is about placing an image to a MDI Container. I have a main Form that its isMDIContaine property is set to True. I set its BackgroundImage property to an jpg File. But Form doesnt show image , but i can see part of image in Toolbox. What can i do? Thnx
×
×
  • Create New...