Search:
Type: Posts; User: Pale
Search :
Search took 0.01 seconds.
August 12th, 2011, 11:23 PM
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
...
October 30th, 2009, 09:02 PM
Actually, i tried SVN and it seems to be working the way i was hoping.
Thanks for the insight!
October 30th, 2009, 03:45 PM
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.
October 29th, 2009, 08:59 PM
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...
July 30th, 2009, 06:51 AM
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.
July 30th, 2009, 02:59 AM
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.
July 30th, 2009, 12:21 AM
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...
July 14th, 2009, 04:51 PM
July 14th, 2009, 04:23 PM
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.
July 14th, 2009, 04:12 PM
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...
July 14th, 2009, 02:11 AM
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...
public static class MyClass
{
public static string Version = "2.0 Beta";
public static string ListLocation = "EList.txt";
public static Thread myClassThread = null;
...
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...
February 16th, 2009, 09:41 PM
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.
...
February 13th, 2009, 12:29 AM
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...
December 11th, 2008, 08:34 PM
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.
December 11th, 2008, 12:42 AM
December 9th, 2008, 11:27 PM
I don't want the console window to be displayed either.
December 9th, 2008, 10:33 PM
How can i create an application without a window (GUI).
Thanks, i need this to make a file watcher for me and my friends.
November 22nd, 2008, 06:20 PM
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...
November 11th, 2008, 02:50 PM
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...
October 21st, 2008, 03:34 PM
Sorry man, didn't realize it had to be a rich text box.
Thanks for your help. Its working :)
October 21st, 2008, 02:52 PM
Here you go.
public int GetNamesCount( )
{
string[ ] names = NamesForm.txtNames.Text.Split( new String[ ] { "\n" }, StringSplitOptions.RemoveEmptyEntries );
...
October 21st, 2008, 02:31 PM
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...
October 21st, 2008, 01:17 PM
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...
Click Here to Expand Forum to Full Width