Search results for query: *

  • Users: Stoffel
  • Content: Threads
  • Order by date
  1. S

    [Crystal Reports] Change database location

    Hi, How can I change the database location in my report? I tried this: Dim rpt As New CrystalReport1 For Each crTable As Table In rpt.Database.Tables crTable.Location = Directory.GetCurrentDirectory & "\database.mdb" Next But I couldn't use that because my Visual Studio doesn't...
  2. S

    Code gets executed but won't show

    Hi, I have this weird problem, and I don't have a clue how to solve it. I have an mdi Form that loads the childs via a menu, it works fine for all the forms except one. There it won't do one step, whatever I do. If I look into it by doing everything step by step, I see the code being executed...
  3. S

    [Crystal Reports] Adding fields of linked table

    Hi My Tables: tblPerson ID Name Story OtherStuff .... tblHobbyPerson ID PersonID HobbyID tblHobby ID HobbyName First of all, these are fictive tables to illustrate what I want Lets suggest that a person can chose between a few hobbies The hobbies of that person are stored in tblHobbyPerson...
  4. S

    Update from datatable

    Hiya, I want to update from a datatable I have, but when I use the code below, I will get an error Object reference not set to an instance of an object Anyone has an idea? This I use for loading the data Public Sub New() Dim i As Integer Try categorie = New bsCategorie...
  5. S

    Disable MDIchildren moving outside MDIparent client area

    Hi, Is there a way that you cannot move the MDIchildren outside the MDIparent's client area (visible area)?
  6. S

    How to prevent people to maximize window

    Hiya, I was wondering if there was a solution for this problem. I can disable the maximize button, but if i double click on the "blue bar" (or however it is called :)) it still get maximized
  7. S

    Detecting if a form is open

    Hi I am making a program with a MDI form and a menu In the menu you can open a form but with different options (one to add data, one to just view data) How can I detect if the form is still open so it won't be opened for a second time? Thanks
Back
Top