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

Search:

Type: Posts; User: Pale

Page 1 of 7 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    3,565

    Make a window look like this

    I'm just getting started with WPF applications.

    I can't find out how to make a WPF application window look like this one http://windowsclient.net/downloads/folders/wpfsamples/entry3754.aspx
    ...
  2. Replies
    3
    Views
    1,156

    Re: Visual Studio Beta Management

    Actually, i tried SVN and it seems to be working the way i was hoping.

    Thanks for the insight!
  3. Replies
    3
    Views
    1,156

    Re: Visual Studio Beta Management

    The CVS thing isn't working the way i had hoped.

    So i think ill just make multiple solutions.

    Or should i make one solution, but with multiple projects.
  4. Replies
    3
    Views
    1,156

    Visual Studio Beta Management

    I was wondering if there was a more efficient way of managing betas in visual studio.

    Let me provide an example of my thinking.

    Lets say i have an application, it's version 1.8.4.

    But i...
  5. Replies
    6
    Views
    14,183

    Re: Pause and continue a foreach loop.

    I don't want to ask the user how long he wants to pause, i was suggesting maybe he pause it forever, and then come back and resume it after he has finished something else.
  6. Replies
    6
    Views
    14,183

    Re: Pause and continue a foreach loop.

    i can't use sleep because i want the user to be able to choose how long to pause it for, basicly i want to pause it forever until the user says do it again from where it left off.
  7. Replies
    6
    Views
    14,183

    Pause and continue a foreach loop.

    I have a foreach loop running on a separate thread.


    foreach ( string str in strg )
    {
    // my action
    }

    I was wondering if there was a way i could pause this foreach loop at some point and...
  8. Replies
    7
    Views
    3,326

    Re: Regular Expression in C#

    Thanks a lot guys.
  9. Replies
    7
    Views
    3,326

    Re: Regular Expression in C#

    I don't need to find just "value" i need to find a value that has only numbers in it.

    and i know for a fact that there will only be one value= with 100% numbers after it.
  10. Replies
    7
    Views
    3,326

    Re: Regular Expression in C#

    Thats almost what i need, but it returns


    "<input type=\"hidden\" name=\"value25\" value=\"1247605870\" />"

    and i need it to only return the number "1247605870"

    and thanks for the tip about...
  11. Replies
    7
    Views
    3,326

    [RESOLVED] Regular Expression in C#

    I am making a program in C# that reads an html file that another one of my programs has outputted.


    <input type="hidden" name="value5" value="1247555244" />


    what i need to find is what value...
  12. Replies
    1
    Views
    877

    [RESOLVED] All methods in class on a thread?

    public static class MyClass
    {
    public static string Version = "2.0 Beta";
    public static string ListLocation = "EList.txt";
    public static Thread myClassThread = null;
    ...
  13. [RESOLVED] Create a Local Mail Server (SMTP)?

    I am writing an application that will with out a doubt need to send email without using any public smtp servers eg. "gmail,yahoo,myworkplacesmtp".

    Can anyone give me some information on where to...
  14. Replies
    2
    Views
    818

    Re: Different "themes"?

    Maybe i didn't specify enough.

    I took a screen shot of an application that has a different "theme" here is a screen shot of fl studios playlist.
    ...
  15. Replies
    2
    Views
    818

    [RESOLVED] Different "themes"?

    I know a C# programmer that hangs around on another forum, who writes applications for the fun of it.

    But he has found a way to completely redesign the default window for his application.

    It is...
  16. Replies
    13
    Views
    2,274

    [RESOLVED] Windows form control like this?

    Is there a windows form control that looks like this: http://i287.photobucket.com/albums/ll159/Pale091/Development/Ex.jpg (Snapshot from CCleaner )

    If not, how can i make that with C#?

    Thanks.
  17. Re: Create an application without a window?

    Thanks guys. :)
  18. Re: Create an application without a window?

    I don't want the console window to be displayed either.
  19. [RESOLVED] Create an application without a window?

    How can i create an application without a window (GUI).

    Thanks, i need this to make a file watcher for me and my friends.
  20. Replies
    3
    Views
    921

    [RESOLVED] Background application

    How could i make sort of a "background application"? Just a personal application that monitors another program that i have written.

    Basically i need to know how to make a C# application without a...
  21. Replies
    1
    Views
    3,667

    [RESOLVED] Object member list is gone?

    For some reason on one of my solutions the object member list does not display.

    But it works just fine in all my other solutions.

    I have a static class with a few members under the same...
  22. Replies
    9
    Views
    1,554

    Re: Working with strings

    Sorry man, didn't realize it had to be a rich text box.

    Thanks for your help. Its working :)
  23. Replies
    9
    Views
    1,554

    Re: Working with strings

    Here you go.


    public int GetNamesCount( )
    {
    string[ ] names = NamesForm.txtNames.Text.Split( new String[ ] { "\n" }, StringSplitOptions.RemoveEmptyEntries );
    ...
  24. Replies
    9
    Views
    1,554

    Re: Working with strings

    That won't work because the enter spaces are counted as "\n" and using "StringSplitOptions.RemoveEmptyEntries" wont remove the extra enterspaces because it sees them as "\n" and won't remove them up...
  25. Replies
    9
    Views
    1,554

    [RESOLVED] Working with strings

    My application has a textbox in which the user enters "names". I per line.

    I wrote some code to get the total count of the "names" and discovered it worked properly.

    However if the user...
Results 1 to 25 of 165
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured