all groups > c# > march 2008 > threads for friday march 14
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Reading & Searching a Huge file
Posted by Ahmad Jalil Qarshi at 3/14/2008 10:35:49 PM
Hi,
I have a text file having size about 2 GB. The text file format is like:
Numeric value[space]AlphaNumeric values
Numeric value[space]AlphaNumeric values
Numeric value[space]AlphaNumeric values
For example consider following chunk of actual data:
52 SANZP3118.00Q3126T070533N16CEPXT
... more >>
For Mr. Skeet. MVP Defined [off-topic]
Posted by Michael Starberg at 3/14/2008 6:20:28 PM
Just a funny qoute I got from a friend of mine, who is a MVP.
I got it via phone, in Swedish, but will translate as best I can..
<q>
Well it is simple. As Microsoft is a poor company with no assets, or monies,
whatsoever; they can't afford to hire skilled people. So they hand out nifty
titl... more >>
Controlling compiler output, possible?
Posted by Andreas at 3/14/2008 3:25:50 PM
Hi
When creating a windows application you get a specific file and folder
structure when you compilte your code. I was wondering what sort of control
(perhaps not using VS.NET but other tools and command line) I have to
influence the way the output is made? At the moment I would get somethi... more >>
Creating exe
Posted by CSharper at 3/14/2008 3:01:10 PM
Quick question, I have an application which has an exe, couple of dlls
and a config file. Is there any way possible to have all in exe file
to run? I mean, I would like to only one exe at the client side. Is it
possible?
Thanks.... more >>
How to dispose MediaPlayer object?
Posted by William Johnston at 3/14/2008 2:13:39 PM
Hello,
How do I explictly destruct a MediaPlayer object?
The compiler complained about overriding Finalize.
MediaPlayer does not implement IDisposable.
Any suggestions?
Thanks,
William Johnston
... more >>
Dialog: Cancel button / esc key (Windows forms)
Posted by WP at 3/14/2008 2:13:06 PM
Hello, a short question: Do I have to add a cancel button to my form
dialog for it to be closable by the esc key? Right now I have no
cancel button in my dialog and I noticed the esc key will not close
it. First I thought the two textboxes I have in the dialog "consumed"
the esc key press but I ... more >>
sparql and c#
Posted by Logician at 3/14/2008 12:53:05 PM
Can C# be used with sparql?... more >>
Update underline datasource (Datagridview)
Posted by John at 3/14/2008 12:10:01 PM
When I check/uncheck a checkbox in my datagridview, the datasource is
updated. How can I catch the event that the datasource has been updated?
Thanks.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Problem with Browsable Properties
Posted by mzwilli at 3/14/2008 12:03:31 PM
Hi, Thanks in advance for looking at this issue!
I am having a Problem with Browsable Properties, as follows:
1. I have an ancestor user control with browsable properties.
2. I create a descendant object and set the properties through the
designer, as expected.
3. I place an instance of the d... more >>
TryParse?
Posted by DoB at 3/14/2008 11:24:03 AM
Hi,
As far, as I know, this is not a good code:
------------------------------------------
double d = 0;
try
{
d = double.Parse(str);
}
catch { }
------------------------------------------
What is the recommended substitution? Using TryParse?
Regards,
DoB
... more >>
Pictureboxes moving on their own volition when form is displayed
Posted by RobinS at 3/14/2008 10:42:12 AM
I have a user control that has this structure from top to bottom:
Label1
Label2
PictureBox1
Label3
PictureBoxes2 through 11
All of the controls are anchored Top,Left. Pictureboxes 2 through 11 are
right next to each other in the designer, with 1 pixel of space between
them.... more >>
How to live search for tutorials/examples of using C# for stored p
Posted by Siegfried Heintze at 3/14/2008 9:55:00 AM
What keywords should I use for (google/live) searching for tutorials and
examples of using C# to write stored procedures in SQL Server?
There is a special name and I cannot remember it.
Thanks,
Siegfried... more >>
WPF - Closing Application
Posted by Dale Williams at 3/14/2008 7:04:00 AM
Everyone:
When working with winform applications, you could check the reason for
closing the window. As in this example:
private void MainForm_FormClosing(object sender,
FormClosingEventArgs e)
{
if (e.CloseReason == CloseReason.UserClosing)
{
... more >>
Linq deferred loading doesn't seem to work
Posted by Andy at 3/14/2008 6:13:11 AM
Hi,
I have an Association on my table; the association doesn't seem to
load. Here's the association:
private EntityRef<Shared.Employee> createdBy =
default( EntityRef<Shared.Employee> );
[Association( ThisKey = "CreatedById", IsForeignKey = true )]
public Shared.Employee CreatedBy {
... more >>
vs2008 ide standard/pro differences?
Posted by itdevries@gmail.com at 3/14/2008 3:06:40 AM
Hi, Just wondering if anyone knows whether the ide (also the for
example the syntax highlighting options etc.) of vs standard is dumbed
down in comparison to vs pro? regards, Igor... more >>
XML files
Posted by Mahain at 3/14/2008 2:02:48 AM
I have to convert word 2007 files in xml using c#.
but i don't have any idea to do this pls help me to do this.... more >>
.NET custom security: still possible?
Posted by plugwalsh@yahoo.com at 3/14/2008 12:15:12 AM
Hi
I'm new to ASP.NET (from classic ASP) and wasn't aware of the Forms
Authentication security when I started working on a website. So I
built a login page that stores a CustomUser object in the Session, and
then I put a login check in the Master Page codebehind, Page_Load
event, which redire... more >>
|