User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 402,862 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,927 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 500
Search took 0.08 seconds.
Posts Made By: alc6379
Forum: C# 21 Days Ago
Replies: 4
Views: 429
Posted By alc6379
Re: Preventing out of memory errors while threading

Thanks!

The only thing concurrent about my threads, so much, is that they share a single text reader and text writer. I deal with that using the Synchronized() methods on each of those. The order I...
Forum: C# 24 Days Ago
Replies: 4
Views: 429
Posted By alc6379
Re: Preventing out of memory errors while threading

What's interesting is that I did take that approach, and it did seem to work. However, I had some concerns. What if say, 20 threads per core worked on one machine, but not on another?

I wound up...
Forum: C# 33 Days Ago
Replies: 4
Views: 429
Posted By alc6379
Preventing out of memory errors while threading

Greetings all,

I'm actually proud to have a question I've never seen asked here. I've got a 1.5GB text file (YES, it's really 1.5GB) where each line needs a set of modifications. I've got the...
Forum: ASP.NET May 24th, 2008
Replies: 5
Views: 451
Posted By alc6379
Re: Message box how to?

That's not right. You can't use WinForms code to do that in ASP.NET . There isn't a DialogBox control.

It's a little more complicated than that. The way I normally make a modal dialog box is to use...
Forum: ASP.NET May 24th, 2008
Replies: 6
Views: 14,782
Posted By alc6379
Re: how to update an access DB with vb.net?

Hi,

Start your own thread with this question. That way, you'll get the information that you require, and you won't muddle up someone else's thread with a question that might not be directly...
Forum: C# May 24th, 2008
Replies: 2
Views: 406
Posted By alc6379
Re: How many datasets in MS VS Project?

Depends. If you're using the datasets in the designer view, you really don't have THAT fine-grained of a control over when the datasets are instantiated, and how long they stick around in memory....
Forum: C# May 24th, 2008
Replies: 1
Views: 286
Posted By alc6379
Re: Backgroundimages/ Skins ?

You probably have to put the full path to the file. If the files are not in the same directory as the executable (which they're generally not if you just hit F5 and run from within Visual Studio),...
Forum: C# May 22nd, 2008
Replies: 11
Views: 1,755
Posted By alc6379
Re: Connect to access database on a shared folder

You don't have enough back slashes in there.

If it's a UNC path like this:

\\server\sharename\file.mdb

in C# it would look like:

"\\\\server\\sharename\\file.mdb"
Forum: C# May 9th, 2008
Replies: 1
Views: 382
Posted By alc6379
Re: how to loop through the enum consolecolor

Check this out:

http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=11934

HTH
Forum: C# May 9th, 2008
Replies: 5
Views: 512
Posted By alc6379
Re: OLeDb Connection fail

do you get any error messages when this happens?
Forum: C# May 8th, 2008
Replies: 3
Views: 1,265
Posted By alc6379
Re: Convert C# data types to c++ data types

Char is 2 byte in .NET because that is how big a Unicode character is. The best thing to do is take the value in as a byte datatype and use the Convert.ToChar() method on that input value.

I just...
Forum: C# May 8th, 2008
Replies: 1
Views: 662
Posted By alc6379
Re: C# - Access - connection

Hi there,

You need to look at ADO.NET. Specifically, you'll be looking at OleDB in relation to that.

It's kind of hard to give you a top-down model and explanation of ADO.NET here, but...
Forum: C# Apr 7th, 2008
Replies: 5
Views: 496
Posted By alc6379
Re: OOP in C#

Not necessarily a C# book, but "The Object Oriented Thought Process" was a great one for me :...
Forum: Techies' Lounge Mar 10th, 2008
Replies: 12
Views: 1,937
Posted By alc6379
Re: Low Cost online hardware stores

Be careful with Pricewatch-- there's a bunch of bait and switch business going on there. They try to fight it, but you'll see some piece of hardware going CRAZY cheap, but then they'll throw...
Forum: C# Feb 14th, 2008
Replies: 5
Views: 494
Posted By alc6379
Re: OLEDB Character Limit

Have you googled for that particular provider, ie, any issues surrounding it?

I'm not familiar with that provider, but it could be a limitation of it. I've used Jet and SQL just fine through...
Forum: C# Feb 14th, 2008
Replies: 7
Views: 725
Posted By alc6379
Re: compiler for c#

Why don't you have permission to install updates? Is your machine locked down or something?

Best route would be to contact your system administrator. They should authorize you to install the...
Forum: C# Feb 14th, 2008
Replies: 7
Views: 533
Posted By alc6379
Re: c# question

Hey there,

This looks suspiciously like a homework post. That's why I posted a link rather than code.

Teach them to fish, don't just give them the fish. :)
Forum: C# Feb 14th, 2008
Replies: 3
Views: 1,463
Posted By alc6379
Re: C# for Loop Help

Here's what I mean:


//this
Console.Write("My line with a newline\n");
//is the same as
Console.WriteLine("My line with a newline");


What kind of errors are you getting when you append the \n ?...
Forum: C# Feb 12th, 2008
Replies: 5
Views: 494
Posted By alc6379
Re: OLEDB Character Limit

Also, can you provide your connectionstring? I've never had these types of problems using OLEDB.

What type of database are you using?
Forum: C# Feb 12th, 2008
Replies: 3
Views: 1,463
Posted By alc6379
Re: C# for Loop Help

What have you done so far? Can you please post the code you have thus far?

Generally, what you'd do is have a newline after each of those. Either insert a \n at the end of your line, or use...
Forum: C# Feb 12th, 2008
Replies: 7
Views: 533
Posted By alc6379
Re: c# question

http://msdn2.microsoft.com/en-us/library/system.console.writeline.aspx
Forum: C# Feb 12th, 2008
Replies: 1
Views: 759
Posted By alc6379
Re: How to embed text editor in .aspx files

This is a pretty tall order, actually. There's a lot involved in coding this type of text-editor. Generally it's called a WYSIWYG text area, and a number of companies offer them on a free or fee...
Forum: Geeks' Lounge Jan 3rd, 2008
Replies: 134
Views: 6,385
Posted By alc6379
Re: Decline in morals?

Jesus H. Christ... Does that represent a decline in morals with me saying that?

I do have a question, though... And I'm not trying to jump into this flame war, but instead provide some...
Forum: ASP.NET Jan 2nd, 2008
Replies: 8
Views: 666
Posted By alc6379
Re: Need Help Urgently !!

Sounds like an awfully ambitious project for a beginner... Have the people requesting the application specified what requirements they need, exactly? That sounds like the best place to start...
Forum: ASP.NET Jan 2nd, 2008
Replies: 4
Views: 563
Posted By alc6379
Re: uploading a website without its cs files

Ok... your post wasn't so clear.... Yeah-- you can pre-compile the site... Even make a deployment project so the client can install the web app themselves...
Forum: C# Jan 2nd, 2008
Replies: 1
Views: 516
Posted By alc6379
Re: where do i get the media foundation sdk?

It's in the Vista SDK:

http://msdn2.microsoft.com/en-us/windowsmedia/bb190309.aspx
Forum: Geeks' Lounge Jan 2nd, 2008
Replies: 604
Views: 33,259
Posted By alc6379
Re: 2008 US Presidential Poll

Dunno why, but I'm digging Obama. I seem to be able to stomach him more than the others. On the R Side, the only person that appeals to me is Romney, and I don't even know why there, either...
Forum: Geeks' Lounge Dec 31st, 2007
Replies: 18
Views: 899
Posted By alc6379
Re: Which wine do you prefer - Red or White?

I dunno... I'm a big Pinot Grigio fan. Maybe I just haven't had a good red yet?

It's funny. I like my really hard liquor because it tastes like liquor. I really like "BEER" tasting beer, especially...
Forum: C# Dec 30th, 2007
Replies: 8
Views: 5,186
Posted By alc6379
Re: How to send am Email using c# ?

you can use the mailto: syntax to fill in the email in its entirety. It's throughly documented in the RFC822 standard...
Forum: ASP.NET Dec 30th, 2007
Replies: 4
Views: 607
Posted By alc6379
Re: Conversion problem

I think it still boils down to the fact that you can't cast a Control to that Filter type directly. You're going to have to write logic to do that conversion, or something.
Forum: ASP.NET Dec 29th, 2007
Replies: 4
Views: 2,198
Posted By alc6379
Re: DataTable and DataReader

Ok... when you use method 2, does it actually go through the loop, or does it say no rows are returned there?
Forum: ASP.NET Dec 29th, 2007
Replies: 4
Views: 563
Posted By alc6379
Re: uploading a website without its cs files

You can do inline code instead of using code-behind. That way, all the code is included directly on the ASP page:

http://quickstarts.asp.net/QuickStartv20/aspnet/doc/pages/codebehind.aspx

But,...
Forum: C# Dec 27th, 2007
Replies: 1
Views: 529
Posted By alc6379
Re: class constructor help

I'm not really sure I understand exactly what you're asking. Theres obviously some enums or other classes that we're not being provided here. If I just compiled this code as-is, there would be a...
Forum: ASP.NET Dec 26th, 2007
Replies: 3
Views: 650
Posted By alc6379
Re: load an xml to HTML page

WHAT IS WITH THE CAPS I GAVE YOU A PAGE WITH INSTRUCTIONS ON HOW TO DO IT

Did you even read the link I sent? There was a link to a .NET KB article on how to do what you're asking.
Forum: ASP.NET Dec 26th, 2007
Replies: 1
Views: 380
Posted By alc6379
Re: .NET Application Problems

What are the specs on this system? How much load is on this thing?
Forum: ASP.NET Dec 26th, 2007
Replies: 2
Views: 405
Posted By alc6379
Re: Error:Reflection.targetException

can you please post the code for these two methods?
Forum: ASP.NET Dec 26th, 2007
Replies: 3
Views: 650
Posted By alc6379
Re: load an xml to HTML page

Did you see this article?

http://support.microsoft.com/kb/244954
Forum: ASP.NET Dec 26th, 2007
Replies: 2
Views: 1,525
Posted By alc6379
Re: System.Data.SqlClient.SqlException

Also, can you post the code to your stored procedure? That might tell us even more.
Forum: ASP.NET Dec 26th, 2007
Replies: 1
Views: 352
Posted By alc6379
Re: Shopping cart related exception

Do you have the code-behind for the error in question? We won't be able to tell you much without that...
Forum: ASP.NET Dec 26th, 2007
Replies: 5
Views: 1,101
Posted By alc6379
Re: Response.redirect() conflict

Hey there,

Start a new thread for this question-- since the original issue has been resolved, people might not look at this other question you have. :)
Showing results 1 to 40 of 500

 
All times are GMT -4. The time now is 1:28 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC