Guest User

Untitled

a guest
Nov 21st, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function SitesComboBox_SelectedIndexChanged(sender : System.Object, e : System.EventArgs)
  2. {
  3. var wfCtl : Ico.Gwx.GwxWindowsFormsControl;
  4. var combo : System.Windows.Forms.ComboBox;
  5.  
  6. wfCtl = Ico.Gwx.GwxWindowsFormsControl(ThisConfiguration.GetObjectByName("SitesComboBox"));
  7. combo = System.Windows.Forms.ComboBox(wfCtl.Control);
  8.  
  9. ThisWindow.SetGlobalAliases("#P18ReportSite="+combo.SelectedValue+";");
  10. ThisWindow.SetGlobalAliases("#propertyID="+combo.SelectedValue+";");
  11.  
  12.  
  13. //MessageBox.Show(combo.SelectedValue);
  14.  
  15.  
  16.  
  17. }
Add Comment
Please, Sign In to add comment