Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Axien
  • Order by date
  1. Axien

    problems with 9i forms SSO configuration

    I have done step by step SSO (single sign on) onfigurations to oracle forms 9i on 9IAS.v2 by oracle documentation, but still it shows standard DB login form. Could somebody help me to find correct solution, or maybe someone had that problem too and could share experience on fixing it. I use...
  2. Axien

    How many pixels???

    thanks, it realy helped me.
  3. Axien

    How many pixels???

    Does anybody knows how to count string lenght of pixels??? The problem is that I need to draw string witch is right aligned to one of my reports table's cell. axien
  4. Axien

    How to access to components from MDI parent to Mdi child forms..

    Meybe I'm wrong, but I always do in this way: b.ShowDialog(); a.richText = b.richText; or somthing like this
  5. Axien

    Change printDocument paper size

    Thanks Camel, it realy works :), but paper A4 Width = 826, Heigth = 1169. I just checked it with pageSetupDialog object: pageSetupDialog.ShowDialog(); // then I set paper format to A4 // txtWidth.Text = pageSetupDialog1.Document.DefaultPageSettings.PaperSize.Width.ToString()...
  6. Axien

    Change printDocument paper size

    Hi all, I want to change paper size to A4, but I don't know how to do it. I tried to do in this way: printDocument.DefaultPageSettings.PaperSize.PaperName = "PaperA4"; but got an exception "Can't change a PaperSize unless its Kind is Custom", then I tried to...
  7. Axien

    INSERT INTO with ADO.NET

    Try this one: System.Data.OleDb.OleDbCommand oleCmd = new System.Data.OleDb.OleDbCommand(); oleCmd.Connection = oleDbConnection; // oleDbConnection you must decleare yourself oleCmd.CommandText = "INSERT INTO Users (UserId, UserName) VALUES (1, 'Test')"; try{...

Part and Inventory Search

Back
Top