Modeless Windows form with ilogic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone,
I created a form with visual studio where certain data is generated automaticly and others must be chosen/filled. It's made based upon a example from KETIV and works great. But i would like to open the form in modeless so we can, for instance measure somethng in inventor and use that value in the form. My problem is that outside of ilogic i can use .show instead of .showdialog but it's not working within ilogic.
This is a part of the code i use to use the form.
Using inputForm As New Data_Form.Form1
'----Data naar form sturen----------------
inputForm.Klantnaam = Klantnaam
'----Form laten zien------------------
Dim formResult As System.Windows.Forms.DialogResult = inputForm.ShowDialog()
'----Data uit form ophalen----------------
Bew0010 = inputForm.WaardeBewerking_0010
If formResult = vbOK Then
dialogResultOK = True
End If
End Using
Does anyone know a solutions or another way to do this? Any tips are appreciated.
Thanks in advance
Wouter