CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: saktya

Page 1 of 5 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    2,391

    Re: Datagridview refresh contents

    Don't fill the the tableadapter after every update, Just acceptchanges the dataset.
  2. Replies
    8
    Views
    1,823

    Re: Any good Build Machines for C# projects?

    CruiseControl.Net
  3. Replies
    1
    Views
    1,328

    Programmatically set handler [WPF]

    [CODE]

    <TreeView Name="_treeViewMain" TreeViewItem.Selected = "TreeViewItem_Selected">

    /CODE]

    How I can set the Handler of TreeViewItem.Selected programmatically not using the xaml....
  4. Replies
    2
    Views
    12,086

    GridSplitter resize problem[WPF]

    I have a grid with two columns (one with "*" width and the other is auto) and a gridsplitter between the columns.

    I have expander in my top-right corner (they open left-to-right). the columns...
  5. Replies
    0
    Views
    2,034

    Custom ComboBox can't resize [WPF]

    I have an customcontrol that I derive from ComboBox.

    But when I add the control to the grid it cannot stretch... And In my class I just override the OnKeyUp and OnSelectionChanged, no UI...
  6. Replies
    0
    Views
    4,607

    Data Template in Resource Dictionary [WPF]

    Hi all....

    I want to add a data template in resource dictionary...


    <DataTemplate x:Key="SizeTextTemplate" x:Name="SizeTextTemplate">
    <TextBlock Text="{Binding...
  7. Re: representing dataset after receiving from webservice

    You must have the xmlschema of that dataset in your client...

    the xmlSchema is DTD to parse your dataset
  8. Replies
    5
    Views
    1,307

    Re: TextBox that cache the previous Text.

    No database...

    It just a textBox that remember the previous Text that type in it...
    just like the textBox in Windows search...
  9. Replies
    5
    Views
    1,307

    Re: TextBox that cache the previous Text.

    Is there any link that explain about best approach for this problem??
  10. Replies
    5
    Views
    1,307

    TextBox that cache the previous Text.

    I want to make text box control that cache the previous type Text in the text box.

    It's just like the Text box in Search Function that belongs to Windows OS.

    When I type something in that text...
  11. Replies
    9
    Views
    1,407

    Re: Managing threads

    Use the Dispatch.Invoke method...

    I use recursive method like this:


    public void AddText( string text )
    {
    if( Dispatcher.CurrentDispatcher != this.Dispatcher )
    ...
  12. Re: How to create/write a web service using a WSDL file

    Hope this can help:
    http://www.codeproject.com/KB/cpp/soapUddiPack.aspx
  13. Re: Trace messages to a control based on filtering..how???

    Yes we need to add this to Listener list. I can't post whole project :p. Here the way I put in the listener list


    _traceListener = new MinTraceListener( _tracerList );...
  14. Re: Trace messages to a control based on filtering..how???

    Yes the point is Override the write method...
    Do already done this???

    Here my code for write a trace to the list box.



    internal class MinTraceListener : TraceListener
    {
    ...
  15. Re: Trace messages to a control based on filtering..how???

    Try to inherit from abstract class TraceListener and overwrite the write method...
  16. Thread: UI Thread [WPF]

    by saktya
    Replies
    2
    Views
    1,151

    Re: UI Thread [WPF]

    Thanks arjay...

    I already read that article before, my problem is How I can get the UI Dispatcher, Is there any static method in .Net to get the UI dispather... because with my software...
  17. Replies
    0
    Views
    2,186

    Filtering tree view item [wpf]

    Hi all,

    I have an CollectionViewSource binded to a treeview...

    And I want to re-filtering the items in collectionViewSource without REFRESH it.
    because now I use
    ...
  18. Thread: UI Thread [WPF]

    by saktya
    Replies
    2
    Views
    1,151

    UI Thread [WPF]

    Hi all...

    Is there any method to get the UI dispatcher? I need to update my UI from the object that run in the background thread...
  19. Replies
    2
    Views
    1,273

    Re: OnDocumentCompleted went through 6 cycles?

    Debug how many time you attach the handler..
    I'm sure you attach it more than once
  20. Replies
    4
    Views
    1,134

    Re: Working with mssql stored procedures

    Use the data adapter with store procedure command type...

    MSDN can help
    http://msdn.microsoft.com/en-us/library/59x02y99.aspx
  21. Replies
    5
    Views
    5,948

    Re: Get domain name of current user belongs to?

    Environment.UserDomainName
  22. Replies
    2
    Views
    931

    Re: Listview - what row was clicked??

    Listview is not a row based control, it is item base control so I think it is not necessary to get a row in a Listview. And I found Listview is very helpful to find the selected item inside it by...
  23. Re: MenuItems - Unknowingly Handle Multiple OnClick Events

    This is a link that explain about event, delegate, and event handler.
    Hope this can help, its help me to understand about event.

    http://www.codeproject.com/csharp/event_fundamentals.asp
  24. Replies
    3
    Views
    6,913

    Re: Bindingsource add row

    May be you should try to binding only one tables...
  25. Replies
    3
    Views
    6,913

    Re: Bindingsource add row

    what is the data source of "horariosBindingSource"?
Results 1 to 25 of 104
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured