all groups > dotnet general > july 2005 > threads for monday july 11
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
System Architecture Advice
Posted by mallen at 7/11/2005 10:40:02 PM
Hi All,
I have a web application with the usual 3 layers; presentation, business,
and DB.
We are just about to start work on a new project with a totally separate
presentation layer, but will use SOME of the existing business functionailty
and the same DB. Functionailty to be re-used wi... more >>
Load resource file
Posted by Lou at 7/11/2005 10:12:54 PM
How do I load resource(bitmaps, icons) from a resource file?
-Lou
... more >>
ASP Question
Posted by SQL match data at 7/11/2005 1:41:06 PM
how to do i conver "FormatDateTime(Date, 2)" to sql format which is yyyy55dd
with ASP ?... more >>
DataItem.Eval inside <FooterTemplate>
Posted by tascien at 7/11/2005 12:57:15 PM
I am just wondering... can footertemplate hold data?
b/c i want to show the sum of my Invoice in footer template. How can i
do that? I could add the sum to the dataset like this:
SumColumn = new DataColumn("SumColumn",Double,"Sum(ItemTotal)")
ds.tables(0).columns.Add(SumColumn)
if i do:
... more >>
Email - How to find out how many new Emails in POP server
Posted by Madestro at 7/11/2005 11:41:03 AM
Hi guys,
I am making a small program to retrieve e-mails from POP accounts. I got all
the e-mail parsing stuff figured out, but I cannot seem to come up with a way
to find out which e-mails are NEW so I don't have to retrieve them all. If
you have experience with this kind of thing, you kno... more >>
passing enum value as an argument
Posted by Glenn Venzke at 7/11/2005 10:26:03 AM
I'm writing a class with a method that will accept 1 of 3 items listed in an
enum. Is it possible to pass the item name without the enum name in your
calling statement?
EXAMPLE:
public enum EnumName
FirstValue = 1
SecondValue = 2
ThirdValue = 3
end enum
CURRENTLY DOING THIS:... more >>
Exchange and Active Diretory
Posted by Leonard Danao at 7/11/2005 10:18:56 AM
Anyone by chance know what attribute(s) gets modified when checking the
"Automatically update e-mail addresses based on recipient policy"
Check box under the email addresses tab within active directory??
I am writing a system where I need to uncheck this box when a criteria
matches.
any help ... more >>
Datagrid Combobox
Posted by Oldhandandy at 7/11/2005 9:19:12 AM
I've created a combobox in a datagrid, it works OK using the code where
"supplier1" and "supplier2" are the items. However, instead of using hard
coded items, I want to use data obtained from the dataset DsSupplier1. Any
help would be most appreciated.
SqlDataSupplier.Fill(DsSuppli... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Object in use exception when accessing a Graphics object
Posted by Martin at 7/11/2005 8:50:09 AM
Hi,
I have create a Graphics object from a HWND
Both the Window and the Graphics object are created by the same thread,
nevertheless when i dispose the object, I get an exception indicating that
the object is in use some where else.
Any comments?
Best regards
Martin
P.S.: Code lo... more >>
Temporary Tables in Crystal Reports
Posted by airkart NO[at]SPAM hotmail.com at 7/11/2005 7:47:23 AM
Hello,
I've scoured groups and the web, and haven't found a question like mine
answered.
I'm using Visual Studio 2003 with the Crystal Reports it comes bundled
with and SQL Server 2000. Throughout the project I'm working on, I
often find I need a temporary table displayed in a report, somet... more >>
persisting viewstate for disabled webcontrols
Posted by David Anderson at 7/11/2005 7:28:05 AM
I'm having trouble persisting viewstate information for webcontrols I've
disabled via javascript. I have a group of textboxes that I enable/disable
via a checkbox control that invokes a javascript method in its onclick
attribute. When the page does a postsback, the textboxes that are enabled
... more >>
How to convert a .NET project into a dll ?
Posted by Dushyant at 7/11/2005 7:25:01 AM
Hi everyone,
I want to convert a VB.NET project into a dll. How it can be done ? What is
the procedure to do this ?
All the responses are welcome.
regards,... more >>
Silly Try Catch question...
Posted by John at 7/11/2005 4:31:03 AM
Hello I know this is extremely basic, I just want to make sure I got it right.
is:
try{}
catch{}
the same as
try{}
catch(System.Exception e){}
I mean if I am not using the reference to the exception then I should simply
use
catch{} ? or is catch(System.Exception){} somehow more... more >>
Get Month
Posted by P1ayboy at 7/11/2005 3:19:10 AM
I've trawled the web, but have not found a clear answer to this.
How do i get the current month as a integer?
eg, this month is july, so it would return 7.
Thanks
Rob... more >>
Need help regarding threading
Posted by trialproduct2004 NO[at]SPAM yahoo.com at 7/11/2005 12:46:55 AM
Hi all
I am having problem at a time of handling threading.
I am having application containing thread.
In thread procedure i ma using recursive function.
This recursive function is adding some entries in my temprary file.
But when i called abort on thread it is not aborting that thread.
After ... more >>
How to implement full screen IE ?
Posted by initial_y at 7/11/2005 12:44:02 AM
I want my web program run in full screen IE. Are there any way to adjust IE
setting in program? I know a method that add -k at the end of command line,
but this is a manual method and only the first page is fullscreen……
my enviroment are win2000p, .net 1.1(not 2.0), vs.net2003... more >>
Help: checking available disk space
Posted by serge calderara at 7/11/2005 12:41:03 AM
Dear all,
I need to check the availbale disk space.
For that I have used following code :
m_diskMngt = New ManagementObject("win32_logicaldisk.deviceid=""E:""")
This works fine but as my drive letter can be something else, I try to use
the following :
m_LogDrive = Left(Path.GetPathRoo... more >>
|