FrmBpm.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using CoreFS.CA06;using Pur.Entity;
  10. using Pur.Pop_upWindow;
  11. namespace Pur.configure
  12. {
  13. public partial class FrmBpm : FrmWebBase
  14. {
  15. public FrmBpm()
  16. {
  17. InitializeComponent();
  18. string bpmUrl = CoreFS.CA06.CoreCommon.coreCommon.UrlList["bpmserver"].Url;
  19. this.Url = bpmUrl + "/manager/autologin?username=" + CoreFS.SA06.CoreUserInfo.UserInfo.GetUserID();
  20. }
  21. private void FrmBpm_Shown(Object sender, EventArgs e)
  22. {
  23. //FrmWebBase test = new FrmWebBase();
  24. //test.ShowDialog();
  25. //Application.Run(test);
  26. }
  27. private void FrmBpm_Load(object sender, EventArgs e)
  28. {
  29. }
  30. }
  31. //: FrmWebBase
  32. //{
  33. // public FrmBpm_pop()
  34. // {
  35. // InitializeComponent();
  36. // string bpmUrl = CoreFS.CA06.CoreCommon.coreCommon.UrlList["bpmserver"].Url;
  37. // this.Url = bpmUrl + "/manager/autologin?username=" + CoreFS.SA06.CoreUserInfo.UserInfo.GetUserID();
  38. // }
  39. // private void FrmBpm_pop_Load(object sender, EventArgs e)
  40. // {
  41. // }
  42. //}
  43. }