Search results for query: *

  1. PatelNehal4u

    Question Confusion in TableAdapter Configuration Wizard?

    Hello Everyone, I am new to ADO.net and still learning vb.net. Right now i am learning ado.net and use of it with windows forms. But now i am confused with one method in tableadapter configuration wizard, which is created at second last step of wizard. In wizard it create two methods : 1. Fill...
  2. PatelNehal4u

    Question Correct me if i am wrong in Data Insert

    I had written a code for data insertion in asp.net form. Code work fine but Please correct me if i am wrong somewhere. Imports System.Data Imports System.Data.OleDb Partial Class InsertPage Inherits System.Web.UI.Page Dim connectionstring As String = "Provider =...
  3. PatelNehal4u

    Question How to print Gridview

    Hello Everyone. I had created a form which display all the record of Employees in a DataGridView control, now i want to print that gridview as it looks on form. I mean if i put any column in ascending or descending order that it should be applied on printing form. I don't want to create any...
  4. PatelNehal4u

    Dynamic Contrl Generation Problem

    Hello Everyone, I am new to asp.net and i had created a form with a button, which create a new button dynamically, i bind that button with an event but when i press newly created button it again got deleted and no response from it. Here is the coding. Protected Sub Button1_Click(ByVal sender...
  5. PatelNehal4u

    How to get report path.

    Hello Everyone, I had created an application named "WindowsApplication1" and created forms in it "Form1" & "Form2", now from just call the form2 and form2 contain a crystalreportviewer1 tool. Now my application also contain a crystalreport which i want to load in crystalreportviewer1 from...
  6. PatelNehal4u

    Parent Child Form

    I have two form, Form1 and Form2. Form1 have a button button1 which call the Form2 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim frm2 As New Form2 frm2.Show() End Sub Now if i close Form1 it will also close...
  7. PatelNehal4u

    Print File by using printing tools

    Hello Friends, I am new to this, so i installed visual studio 2008, i am learning use of dialog boxes. I created a form which maintain a .rtf file, now i want to print that file on printer using visual studio's various tools like, printdocument, printdialog and pagesetupdialog. Now i code the...
  8. PatelNehal4u

    Question Passing Parameter between forms

    :confused:I had two forms, first forms shows all the task details in a list and user select any task and the second form shows the details of that task in edit mode so user can edit the record, now i don't know how to pass the Task_ID of selected item from form1 to form2.
  9. PatelNehal4u

    How to handle form load.

    I had created a form(MDI Child) which have 3 to 4 dataset on it. They all are loaded from the database at the form load event and therefore takes too much time to load and show some part of form during that time. When it load completely it shows the whole form. Is there any way that user will...
  10. PatelNehal4u

    Question listview in Panel Problem

    I am using a textbox which handle the name of the employee and when it get focus i am using a listview with detail view which shows all available employees and user have to select any of them. I am using all this control in a panel, unfortunately listview need more size then panel, and i cannot...
  11. PatelNehal4u

    Question Crystal Report for Visual Studio 2008 Standard Edition

    Hello Friends, I am having Visual Studio 2008 Standard Edition and using VB.NET as my preferred language. But there is no option to insert crystal report in it. I found on google that Crystal report is not installed with Standard Edition, so is there any way that i can install it or i should...
  12. PatelNehal4u

    Crystal Report for .NET 2008 Standard Edition

    Hello Friends, I am having Visual Studio 2008 Standard Edition and using VB.NET as my preferred language. But there is no option to insert crystal report in it. I found on google that Crystal report is not installed with Standard Edition, so is there any way that i can install it or i should...
  13. PatelNehal4u

    Master - Transaction Form Problem.

    I am creating a master form of CITY and another form is AREA, now when i add any record in AREA form i select the CITY from the listview, which are entered in CITY master form, but if the city is not available the user click a small button for CITY form which bring the CITY form, now both forms...
  14. PatelNehal4u

    How to handle ValueMember

    i m using visual basic 2008 and in winform lstCity is the listbox which handle the city names as Displaymember and id as value member, now when i select any city from the lstcity by keypress(enter) i m getting the maximum valuemember everytime so is there any way to retrieve the valuemember of...
Back
Top