Search results for query: *

  1. C

    Data Adapter / Datagridview basics

    Hi Doja, Usually I will return a dataset from a class function and then bind that dataset to the datagridview. Form Code Public Class frmTestForm Dim _inventory As New Inventory Private Sub frmTestForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  2. C

    Problem with Crystal Reports and Click Once Deployment

    I figured it out. I had to set each report's properties: Build action to Content and Copy to Output directory to Copy Always. Your sarcasm pointed me in the right direction, Jim. :) Thanks for the help I appreciate it. -Car
  3. C

    Problem with Crystal Reports and Click Once Deployment

    lol, I have clicked that button and I have seen the list of files included but there is no way to add more files to the list that I can seen. Can you tell me how to get files added to that list. I have tried adding resources using the resource tab but that isn't working either.
  4. C

    Problem with Crystal Reports and Click Once Deployment

    I've never seen any publishing options that should the include files. Unless you are talking about the Project properties-> publish tab there is an options button there but that doesn't show the included files. I did add a reference path to the folder containing the reports but that didn't seem...
  5. C

    Problem with Crystal Reports and Click Once Deployment

    Hello everyone, I have written an application using VS 2008 Visual Basic, that uses a couple of Crystal Reports and I'm having issue with the reports not being found when the app is deployed. When I create an msi file using the setup project the application works as intended, but when I...
  6. C

    Fatal Error when inserting data into a Mysql DB

    Hello everyone, I need some assistance with some of my code for inserting data into a mysql database. My submit form stores the field values in an array and passes the array to a public sub that creates a dataset and datatable. The array is than used to fill at datarow which is then pushed...
  7. C

    Question Problem with refreshing data in a datagridview

    I can't believe there isn't one person on this forum who can help me. Should I post my question on every sub-forum to get some kind of response?
  8. C

    Question how to display child forms using menustip in MDI Parent form....??

    Here is the code I use on my MDI form to open child forms. Private Sub CurrentMaint_TSMI_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CurrentMaint_TSMI.Click Dim mdiChild As frmTaskWork = frmTaskWork.Instance() With mdiChild...
  9. C

    Question Problem with refreshing data in a datagridview

    Could someone please help me with this problem or at least point me in the right direction. -Fred
  10. C

    Question Problem with refreshing data in a datagridview

    Is there no one out there that can help me or point me in the right direction? Is my post confusing or poorly written making it difficult to understand. I would really appreciate any help in fixing this problem. -Fred
  11. C

    Question Problem with refreshing data in a datagridview

    Hello everyone, I am working on a MDI Application to track machine maintenance schedule and I have run into a problem with a datagridview. When i launch my application (mdiMain) the load event triggers the opening of a form (frmTaskWork) with a datagridview. The load event of the frmTaskWork...
  12. C

    Filtering a Dataset?

    Well, I decided to just change my SQL statement to only retrieve the require data and fill my dataset. Here is the SQL statement I used to get the required data SELECT taskId, TaskName, EquipmentId, Description, Interval, LastCompleted" _ & " FROM TaskInfo WHERE (LastCompleted <=...
  13. C

    Filtering a Dataset?

    Could someone at least point me in the right direction. I really need to get this problem resolved. Thanks in advance -Fred
  14. C

    Filtering a Dataset?

    Hello everyone, I've been working on this problem for a couple days but I am making no progress so I decided to check here and see if I could get some help. I am filling my dataset with the following query. SELECT TaskInfo.taskId, TaskInfo.TaskName, TaskInfo.EquipmentId...
  15. C

    How to avoid child forms overlapping in MDI?

    How to only show one instance of a child form gegirl, I use the singleton design approarch for MDI applications. This code I put on the MDI Form under the button used to launch the child form. Private Sub NewToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As...
  16. C

    Visual Studio 2010 ISO image

    MagicDisk Magicdisc is what I use to mount iso and other file type to a virtual cdrom drive. -Car
  17. C

    Question How to hardcode a connection to a MySQL DB and code a Datatable? I need help

    Mysql Connection Tgf-47, First you need to make sure that you have the mysql connector for .Net which allows VB Studios to connect to MySQL database. Here is the link.MySQL :: Download Connector/Net Once you have that installed you need to add the following line to the top of your code...
  18. C

    How to create shortcut for program?

    Had same problem Aspfun, I had the same problem what I had to do was go to the file system for your set project and right click on the Primary outfile which is located in your application folder and select create shortcut. Then move the shortcut to the user's desktop folder and you are all...
  19. C

    Question Problem with Updating related tables

    Hello everyone, I have watch the Beth Massi video called saving related tables so that I could update two tables with a parent child relationship. I followed her video but I have run into a problem that I can resolve on my own so I need some help from you guys. I am using a MySQL database...
Back
Top