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

Search:

Type: Posts; User: Nightfall

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Re: Databinding interface property - Expert challange!

    Problem solved! (At least workaround found...)

    If you are interested in the solution, take a look at http://www.devexpress.com/Support/Center/p/Q182427.aspx
  2. Re: Databinding interface property - Expert challange!

    Thank you for your time, but I am afraid you are getting this a bit wrong. The example above is just illustrating my problem. The "CurrentPerson" is actually a (lot of) property in my data-layer, and...
  3. Databinding interface property - Expert challange!

    Hi!

    I was recommended by a friend to try this site, since there were a lot of expert programmers here, so I am crossing my fingers that some of you have a clue of what I am doing wrong here.

    I...
  4. Replies
    4
    Views
    1,500

    Re: Empty cell in datagrid

    Thank a lot! Just wath i needed :thumb:

    Now the grid looks nice and pro.
  5. Replies
    4
    Views
    1,500

    Empty cell in datagrid

    I have a problem with my datagrid. I need to leave some of the cells without content, at least for the user. (It's OK if it's data in the cell, as long as the user doesn't see it, if this is easier...
  6. Replies
    3
    Views
    862

    Re: Calling fortran95 from C#

    Think I solved the problem by making a dll out of the fortran files, and calling the dll from c#. Maybe that's what he ment....
  7. Replies
    3
    Views
    862

    Calling fortran95 from C#

    Hi

    I have been trying to call some functions written in Fortran95 from my GUI in C#, but can't make it work. I have been reading some exsamplecode that does exactly what I need, but the file that...
  8. Replies
    5
    Views
    8,543

    Re: request.GetResponse() timeout

    Problem solved...

    Forgot to close the response-object...
  9. Replies
    5
    Views
    8,543

    Re: request.GetResponse() timeout

    Come on... I can't beleave I am the only one with this problem! The code is simple... Can someone else plz test it, and tell me if they get the same problem?

    I am in a little hurry, so today would...
  10. Replies
    4
    Views
    13,729

    Re: Access outlook contacts from C#

    Thanks a lot! :thumb:
  11. Replies
    5
    Views
    8,543

    Re: request.GetResponse() timeout

    How do I find out? I have tried refreshing the page multiple times, but no timeouts... (means that everything seems to be working fine in explorer, opera and firefox)

    This is not the only page,...
  12. Replies
    5
    Views
    8,543

    request.GetResponse() timeout

    Hi

    I have a button that runs this code:

    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(new Uri("http://www.vg.no"));
    HttpWebResponse response =...
  13. Replies
    4
    Views
    13,729

    Access outlook contacts from C#

    Hi

    I want to get phonenumbers from my outlook contacts. Anyone have any idea how to do this in C#? If you have any tips at all, plz post... I am really stuck here.

    Thanks in advance!
  14. Replies
    0
    Views
    1,180

    Translate Python-code into C#

    Hi

    I have had a problem for some time now, and it's beginning to annoy me! I started a tread (http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=29192) trying to find a solution in C#, but...
  15. Replies
    3
    Views
    3,140

    plz! I am really stuck here. If anyone have any...

    plz! I am really stuck here. If anyone have any idea, that might solve my problem, or you have seen this problem before, plz tell me!
  16. Replies
    3
    Views
    3,140

    DataGrid Column header height

    I just want to know if it's possible to change the height of the column header in a DataGrid. I have found options for bouth height and width og the row header, but only width option for the column...
  17. Replies
    1
    Views
    793

    Try something like this (where list is your...

    Try something like this (where list is your ArrayList):

    DataTable dt = new DataTable();

    for(int i = 0; i < list.Count; i++) {
    dt.Columns.Add("" + i);
    }


    (""+ i) is an example for...
  18. Datagrid / Datatable gets slower and slower when refilling / resizing?!?

    I am importing data from files into datagrids/tables and then I have some selection oppertunities on the datatable. But if I import over 5 files after eachother that are supposed to overwrite...
  19. Plz???

    Plz???
  20. Replies
    0
    Views
    568

    Localize windows language

    I need to find out windows' language from inside a C# app. I've been looking at CultureInfo class, but I cant find any way to get the active CultureInfo object anywhere. (My problem is the difference...
  21. Need functionailty like Java's CardLayout in C#

    I am making a windows gui and want it to use a single window/frame with a menubar at the top where you can choose what you want to do. I want everything I choose from the main menu to appear in the...
  22. Thread: Tables in C#

    by Nightfall
    Replies
    4
    Views
    848

    I have looked at it, but I can't make it work....

    I have looked at it, but I can't make it work. Anyone know about some tutorials or info about how to make an editable table?
  23. Thread: Tables in C#

    by Nightfall
    Replies
    4
    Views
    848

    Tables in C#

    I need a table (Like in Excel) to view a lot of data (most numbers) and let the user be able to edit each cell. Is this possible in C#? (Windows.Forms interface) If so, how the #ยค%&# do I do it? (I...
  24. Replies
    4
    Views
    885

    Well, I was hoping to learn it within the week,...

    Well, I was hoping to learn it within the week, so I've only got 6 days left;) I only need to learn to make some less advanced GUI with some graphs and stuff. Any smaller books??:blush:
  25. Replies
    4
    Views
    885

    C# Beginner books

    I have coded a lot of JAVA, and some C++, and now I need to learn C#. Does anyone know about a good book for beginners in C#? It has to contain a lot of sample code, maybe even on CD. The best would...
Results 1 to 25 of 45
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured