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

Search:

Type: Posts; User: zips

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Re: DataGridView Does Not Accept Values in All Columns

    No code so... no indication whether you are using Datasource or not. If using Datasource you have to remember that what is showing is not your data but a hidden copy of your data created when you...
  2. Replies
    2
    Views
    123

    Re: Resizing a RichTextBox

    One way would be to remove the richtextbox and then add it again so that you are adding it AFTER the menubar and toolbar have already been added and docked.

    If you don't want to risk removing the...
  3. Thread: Installer Builder

    by zips
    Replies
    1
    Views
    204

    Re: Installer Builder

    Why not use your google?
    Deploying Applications and Components
  4. Re: Getting the DPI information for the current display

    How To Get DPI in C# .NET

    Setting up your C# and C Applications with Dpi-Awareness
  5. Replies
    2
    Views
    316

    Re: Dynamically resize groupboxes at runtime

    Have you looked at System.Windows.Forms.SplitContainer which has two panels the user can resize?
  6. Replies
    3
    Views
    430

    Re: first program in c#

    This will probably not completely solve your problem, but notice that clicking a RadioButton will fire not one but two of those CheckedChanged events. You need to have one _CheckedChanged assigned...
  7. Re: how to load the data from datagridview into windows forms accordingly

    I have not used the DataGridViewSelectedRowCollection, but here is an idea of the tasks you need to perform:
    1. Select one DataGridViewRow from the DataGridViewSelectedRowCollection. From clicking...
  8. Replies
    4
    Views
    513

    Re: How Big of a File Can I Process?

    Ref from MSDN: char and varchar (Transact-SQL)

    SQL storage is a different arena than IO.Stream.
  9. Replies
    4
    Views
    513

    Re: How Big of a File Can I Process?

    Take a look at the IO.Stream classes such as FileStream. I believe all the internal counters use Int64, which is very, very big (Int32 max = 2GB). We have used Stream classes on files over 2GB with...
  10. Re: Error: infinite loop in my code(Depth First Search)

    You posted your question in the C-Sharp Form. This is not C-Sharp code.
  11. Replies
    7
    Views
    439

    Re: [Help] With

    Obviously you are showing incomplete code, but a quick guess would be that you are applying 'Group group = new Group(user)' each time, so that the count is always zero for a new instance.
  12. Re: File in use by another process problem

    Have you tried putting localChartArea.BackImage = null before the WriteAllBytes()?
    localChartArea.BackImage = null;
    File.WriteAllBytes(ChartBackGroundFile, ImageArray);
  13. Replies
    6
    Views
    495

    Re: Trouble converting string to double

    Here is another paper you need to study.http://en.wikipedia.org/wiki/Floating_point
  14. Re: How can I round this Convert.ToInt64 number that will be returned

    If you change ", 1);" to ", 0);" your examples will all return 3.
  15. Replies
    1
    Views
    234

    Re: Panel resizing wgen its form resizes

    You should make an effort to look through the methods and properties available for Panel. If your panel will always 'just fit' it is really simple - just set the Panel.Dock propery to Fill. If...
  16. Replies
    2
    Views
    268

    Re: Problems with my if else statement

    A quantity of 20 will obviously satisfy 'quantity > 10'. Do you want to use '&&' instead of '||' in these statements?
  17. Replies
    1
    Views
    337

    Re: check user is admin or not?

    Have a look at WindowsUser and WindowsPrincipal classes.
  18. Replies
    2
    Views
    496

    Re: Showing filtered rows in a data grid

    See also: http://www.codeproject.com/KB/grid/gridextensions.aspx
  19. Replies
    7
    Views
    736

    Re: Open File without an associated filetype.

    We have a small utility function that tells whether the System knows how to open the file.
    private bool FileIsShellOpenable(string FileName)
    {
    if ((String.IsNullOrEmpty(FileName) == false) &&...
  20. Re: I am brand new to C-sharp and need a little guidance

    You made a good start with this project. Another suggestion:You might not want to create a new Streamwriter (and file) for each line read in. The final result might have only the last line in the...
  21. Replies
    4
    Views
    454

    Re: Double Var keeps adding to increment

    Why do you add another event handler with every button click?
  22. Replies
    3
    Views
    582

    Re: Data structures graphs

    The <T> in the examples is just that - an example. You are supposed to insert system types such as <System.String>, <System.Int32> or your own named types such as <GraphNodeClass>.
  23. Replies
    8
    Views
    351

    Re: I dont want my 00 truncated!!

    I haven't had time to play with the code yet, but would suggest that you read further on the formatting options with the ToString method. I'm sure there are ways to specify the number of digits.
  24. Replies
    8
    Views
    351

    Re: I dont want my 00 truncated!!

    I don't see how this could ever happen. Perhaps you could post some of your problematic code.
  25. Re: Need help with calculating the accumulated total

    You have total declared within the btnOK_Click scope so total does not exist anywhere else.
    Isn't this an infinite loop?
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width