Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: meinhunna
  • Order by date
  1. meinhunna

    Count Panels in StatusBar?

    StatusBar1.Panels.Count did work. Could not find anything in IntelliSense though.
  2. meinhunna

    Count Panels in StatusBar?

    How can I count number of panels in a StatusBar control?
  3. meinhunna

    Typed DataSet Vs Un-Typed DataSet

    I. Could some please throw some light on Typed and Un-Typed DataSet. Have gone through couple of articles but still confused. Also, which one is better to use? II. Also I going through a form developed by a team member. Apparently he has created couple of DataSet’s at design time. I am not...
  4. meinhunna

    Help with custom DataGrid control

    It doesn't like the part ((MyCustomDataGrid) Me.DataGridTableStyle.DataGrid).HighlightRow I believe this is incorrect VB.NET syntax. Are you trying to convert DataGridTableStyle.DataGrid to MyCustomDataGrid?
  5. meinhunna

    Help with custom DataGrid control

    ((MyCustomDataGrid) Me.DataGridTableStyle.DataGrid).HighlightRow gives me syntax error. how would i check the type of the DataGrid?
  6. meinhunna

    Help with custom DataGrid control

    I have created a custom DataGrid control which implements a custom property HighlightRow of type Boolean. I have another custom DataGridTextBoxColumn class, which Overrides the Paint method in order to facilitate row highlighting. My question is how I can access the HighlightRow property of...
  7. meinhunna

    Changing Custom Control Property

    How can I make a property change value of another property at design time? I have added HighlightRow property to custom DataGrid control. Now I want to assign this property similar to DataGrid’s ReadOnly property. For instance, when in property window ReadOnly property is set to True, the...
  8. meinhunna

    Customizing DataGridTextBoxColumn

    I am customizing DataGridTextBoxColumn. How can I access properties in DataGrid to which custom DataGridTextBoxColumn will be added. Say for instance, how I would access SelectionBackColor property of the DataGrid to which this custom column is added? Do I have to get to the table style as...
  9. meinhunna

    Highlighting row in DataGrid

    have gone through couple of articles and confused now. What is the most efficient way of highlighting row in Windows Forms DataGrid so that it takes into account both mouse click and keyboard up/down arrow keys.
  10. meinhunna

    Halting and Debugging thread?

    What about debug in thread. When I place breakpoint in the procedure which is called by a thread it does not break into debug mode ???
  11. meinhunna

    Halting and Debugging thread?

    Thanks everyone. I'll try Thread.Join method. chiph what is Monitor Class for System.Threading though?
  12. meinhunna

    Halting and Debugging thread?

    I have three data processing routines which I want to run in threads so that they don’t clog up the UI. How can I halt execution of thread until prior thread completes successfully. Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click...
  13. meinhunna

    Reading text file, bottom up???

    I have tab delimited text file which gets populated on daily basis via automated process. New entry is written at the bottom. I need to create a utility which makes a copy of this file with 10 most recent entries. When I read line using StreamReader object it starts from the top, so looping...
  14. meinhunna

    Comparing Dates in Access Query

    #2004-09-01# AND #2004-12-01# does this always ensures yyyy-MM-dd
  15. meinhunna

    Comparing Dates in Access Query

    PHV this did work??? Is this to do something with formats???
  16. meinhunna

    Comparing Dates in Access Query

    okay i tried this query on a different table and still no results SELECT DPS FROM tblDividend WHERE CompanyKey =1582 AND Period BETWEEN #1/09/2004# AND #1/12/2004#; Following is the data in tblDividend CompanyKey DividendType PeriodEndDate DPS PaymentDate ExDividendDate Period 1582 Interim...
  17. meinhunna

    Comparing Dates in Access Query

    GingerR i do have data in the table where JoinDate is b/w those 2 dates and column name was just a typo
  18. meinhunna

    Comparing Dates in Access Query

    nops :( still no result

Part and Inventory Search

Back
Top