29 lines
709 B
C#
29 lines
709 B
C#
using FCOMMON;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace FEQ0000.Purchase
|
|
{
|
|
public partial class fInputSC : fBase
|
|
{
|
|
public fInputSC()
|
|
{
|
|
InitializeComponent();
|
|
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
|
|
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
|
|
}
|
|
protected override void OnLoad(EventArgs e)
|
|
{
|
|
base.OnLoad(e);
|
|
EnsureVisibleAndUsableSize();
|
|
}
|
|
}
|
|
}
|