Search results for query: *

  • Users: mmb
  • Order by date
  1. M

    class vs functions...

    Class Or Functions There are gr8 amount of advantages of using class rather then a function in a module. For simple applicaton when encapsulation is not required...you can write functions in a Moudule giving it a Global access. Or Function within the Form class Talking abt C#.net where...
  2. M

    Crystal Report Problem

    hi While adding Crystal report in my Dotnet project, registration window poped up. By Mistake I entered wrong Registration Code and Key. Now when I try to add Crystal report in my Project a msg pops up WRONG KEY CODE. I need the Regitration window to come again on adding the Crystal Report...
  3. M

    Windows application DATAGIRD

    Hi I am making a Windows Application I am using a third party code available on net for bringing Combobox and DateTimePicker Comtrol om DATAGRID. How can I do the following things in my DataGrid: Locking KeyPress in DataGrid-Combobox-ColumnStyle Generating Event on ENTER key in...
  4. M

    Max Value from DataColum

    I have a Staff table in my dataset. I want to fetch Max value from ID column. How to do this? Need Code
  5. M

    EventHandler and Binding?

    This is now I have binded my texbox.. named Name_txt with the dataset table "Staff " and column "Name" Code: Name_txt.DataBindings.Add(New Binding("Text", ds.Tables("Staff"), "Name")) Now I have a field in my table IsStaff which is boolean type. On my windows form I have used a GroupBox which...
  6. M

    dataset

    Thanks Pazt U r rite. I did it without using the wizard from MSDN online. Thanks for the help. Its like brothers helping in difficult situation. Regards.
  7. M

    EventHandler and Binding?

    Q.1) I am calling a single function on all the textbox control KeyPress Event, my code has increased alot in the signature of eventhandler. What I want to raise a single KeyPress Event on all textbox control. I know this is possible but dont know how. Pls Help me out Q.2) How...
  8. M

    dataset

    How to get the index of the rows that has been modified(insert,Update,delete) in the Dataset datatable, rather then Using the dataset1.AcceptChanges and save the whole table which is not at all efficient way. Help Me out
  9. M

    GroupBox and dataset.update()

    1) HOW TO bind a GroupBox containing Radio Buttons ? 2) How to know the number of rows affected when dataset1.update() method is uesd and its row index ? Help required. Code will be preferred.
  10. M

    A simple Que

    When I disable the button control, its font color wipes out. What I want is that, it s font color remains black. I tried out few ways but didnt work out. Help me out. MMB
  11. M

    Same Name Columns

    Can WindowsApplication DataGrid can have 2 columns of same NAME? If this is not possible then pls let me know how this is possible in any other control , like for example in LISTBOX multi-columns can be added. Pls explain how this can be done. Code will be preferred.
  12. M

    How to Use Regular Expression?

    Pls anyone pass me on a simply example using Regular Expression.
  13. M

    Funtion taking n number of args

    I have made a generic class for making DataGrid Functionality(Load,Insert,Update,delete). In one of the functions of the class ,tables name is to be passed. Table can be one or it can be 5 or so on. For this the number of args of the function should be dynamic. If there s any way out here...
  14. M

    To know Table name in Join Query

    by metadata u mean like selecting the tables of the join query individually and then comparing/finding the column names ?
  15. M

    Funtion taking n number of args

    Sir JuggaloBrotha, The code u have written above is still accepting maximum 2 args and minimum zero args. I want that the arguments of a Function to be set at run time. Is this possible?
  16. M

    Funtion taking n number of args

    Do anybody know how can a Function can take n number of arguments. Help required. Bye
  17. M

    To know Table name in Join Query

    I Want To Know The Table Names Of Each Column Thanks for the reply. But this is not I am looking for. I WANT TO KNOW THE TABLE NAMES OF EACH COLUMN from the Result the join query has put forward. Help me out pls
  18. M

    To know Table name in Join Query

    I have called a Join Query from MS-Access. Now I want to know the Table name of each column. If this is possible then HOW? Urgent help needed.
  19. M

    DataGrid Help

    Hello, I am making a Datagrid in which a table is displayed through JOIN query. Now I want an additional ComboBox column in the Grid and its value r coming from other other Table. I want this functionality in the Grid plus Insert, Update and delete functionality. If anyone have this...
  20. M

    On Pressing Enter key

    I want On Pressing ENTER key in a Textbox1 , Button1 get Press. pls Help
Back
Top