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

Search:

Type: Posts; User: zips

Page 1 of 9 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: Floating point number won't show up in VS 2010 (no error messages)

    The floating point number probably will not pass the test to get to the writeline.
  2. Replies
    4
    Views
    1,215

    Re: Array elements all being set to same value

    You have only created one new MapMarker(), so the array elements all point to the same one.
  3. Re: Cannot implicitly convert type 'void' to 'string'

    You get the error message from these two lines.
  4. Replies
    3
    Views
    1,204

    Re: ... is a variable but used like a method

    Did you mean to pass arow an indexer instead of a parameter?
  5. Replies
    1
    Views
    699

    Re: need help with Listview and Foreach loop

    Did you set the listview1.View property to View.Details?
  6. Re: Cannot set splitContainer.Panel2 width or height

    splitContainer.Dock = Left is for the whole SplitContainer. Panel1 is automatically on the left of Panel2 or above Panel2 depending on the Orientation. Panel2 will start at SplitterDistance from...
  7. Replies
    4
    Views
    1,157

    Re: UserControl won't fit on Form

    Have you tried Dock: DockStyle.Fill yet?
  8. Replies
    2
    Views
    4,457

    Re: converting bits sequence into binary or string

    You could try the System.Collections.BitArray class and its Cast<> method.
  9. Replies
    3
    Views
    1,812

    Re: C# code to read xml files

    What happens when you try this?
    Salary = reader.GetAttribute(0);
  10. Replies
    1
    Views
    5,406

    Re: Cipher code doesn't outputs content

    This doesn't look like C# code. But anyway, do you need to do a rewind on file_input after the 'part to print out'?
  11. Replies
    3
    Views
    1,387

    Re: Winforms: Arrange controls relatively

    The Control Panel / Use Larger Fonts settings can also have an amazing effect on what Windows shows.
  12. Replies
    2
    Views
    3,050

    Re: problem to understand " new virtual "

    Did you intend to use:

    B bb = new B();
  13. Replies
    3
    Views
    10,323

    Re: Save user input in array

    You might read up again on the List<T> Constructor. Unlike the totals array, the 5 does not actually add any items to totalsList, and I do not see where you have used the totalsList.Add method to do...
  14. Thread: Instance Problem

    by zips
    Replies
    3
    Views
    2,133

    Re: Instance Problem

    Isn't 'Application' already a namespace used by VisualStudio?
  15. Replies
    4
    Views
    4,251

    Re: evaluate string as line of code

    Have you tried searching for 'expression evaluation'.
  16. Replies
    3
    Views
    1,626

    Re: Asking for an Advice

    How do you exit from the while (true) block?
  17. Re: Using FolderBrowserDialog, experiencing crashing when trying to ShowDialog()

    You are using fd.ShowDialog() twice. Try eliminating the first one.
  18. 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...
  19. Replies
    2
    Views
    565

    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...
  20. Thread: Installer Builder

    by zips
    Replies
    1
    Views
    1,027

    Re: Installer Builder

    Why not use your google?
    Deploying Applications and Components
  21. 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
  22. Replies
    2
    Views
    1,435

    Re: Dynamically resize groupboxes at runtime

    Have you looked at System.Windows.Forms.SplitContainer which has two panels the user can resize?
  23. Replies
    3
    Views
    1,474

    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...
  24. 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...
  25. Replies
    4
    Views
    1,231

    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.
Results 1 to 25 of 221
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured