Search results for query: *

  1. K

    Pattern Matching in VB.NET 2003

    I wrote this myself, not using any tools, just my head This is what I think the pattern does, and I dont understand where I am wrong, please point it out ^:b*(Public|Private) (Function|Procedure)(.(?!End (Function|Procedure))*\n)*.*End (Function|Procedure) Matches : ^ : Beginning of...
  2. K

    Pattern Matching in VB.NET 2003

    Hi, I've been trying to get a pattern to work, I'm almost at it, but still not yet. Basically what I want the pattern to do is find from all function header to the "End function" and I will later change the pattern when this one work to make it find only the functions for which i will need to...
  3. K

    Crystal Report Error

    Hello, I am currently developping a software that generates reports with Crystal Report. I use VB.net 2005. I tested the software on many computers with different OS and language, and everything was working fine, then I give it to my college for him to test it and it crashed on every report...
  4. K

    Handling events raised

    Hi, I Have a Windows Form to which I linked classes that generates reports using crystal report. I want thoses classes to be independant of the Form but I want the Form to display the progress bar to show the progress of the class in creating the Report. I though of 2 ways to do this, #1-...
  5. K

    Instancing a reference of a type

    Wow, very nice !!! I though the generic dictionnary automatically populated itself with all forms that were included in your project... it seems that you have to populate them yourself tho, and i was wondering what was the way to do this, i tried playing with the setting but i cant find how to...
  6. K

    Instancing a reference of a type

    yea, but thats an easy to resolve problem, i just need to find a way to make that form modal
  7. K

    Instancing a reference of a type

    ok Public class ChooseForm [...] Dim DlgForm1 As Frmform1 Dim DlgForm2 As Frmform2 Dim DlgForm3 As Frmform3 Dim DlgForm4 As Frmform4 Dim DlgForm5 As Frmform5 Dim DlgForm6 As Frmform6 Dim DlgForm7 As Frmform7 Dim DlgForm8 As Frmform8 Dim DlgForm9 As Frmform9 Dim DlgForm10 As Frmform10...
  8. K

    Instancing a reference of a type

    hi, i'm having a problem with a conversion and i posted the original thread on the windows form forum, i think more people are viewing this thread so i will try to post here, please go take a look at this topic http://www.vbdotnetforums.com/showthread.php?t=11845
  9. K

    Instancing a reference of a type

    I'm working in VB.NET 2005 To optimise a program, I tried to make a function that would instanciate a windows form based on what type it recieves in parameter Ex : I have a form that's called FrmForm1 ( as an example ) and theres a variable named Dlg ( as System.windows.forms.form ) my...
Back
Top