all groups > dotnet general > june 2004 > threads for wednesday june 30
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
reflection uses
Posted by Frazer at 6/30/2004 9:57:36 PM
hi
could any one tell me which real life senarios reflection can be used in ?
thnx
... more >>
aspx generate an email
Posted by SibAndela at 6/30/2004 9:54:02 PM
How do I generate an email in the serverside code (aspx.cs file) in which I can imbed data submitted from the client icluding attachment of client side files that the client has specified. up to now I get a problem with STMPMAIL(oMyMail) giving an error
Exception Details: System.Runtime.InteropServ... more >>
Generic Context Menu
Posted by jasenlaw NO[at]SPAM hotmail.com at 6/30/2004 6:22:32 PM
Hi,
May I know how to make a generic context menu (which may contains
save, new or other funtions) to be inherited by different winform?
Thanks in advance.
Jasen... more >>
Inserting date datatypes via ado.net
Posted by J. Muenchbourg at 6/30/2004 5:00:07 PM
while inserting new records into SQL, i'm using the folloinwg
sqlstatement>
Dim MySQL as string = "Insert into roster (pname, pnotes, thedate)
values (@pname, @pnotes, @thedate)"
the sql parameter I'm using is >
cmd.Parameters.Add(New SQLParameter("@thedate", thedate.text))
but i get a... more >>
(To .Net Develpers and not only) Don't know what to think with byte ordering and similar
Posted by Vladimir at 6/30/2004 4:56:30 PM
Can anyone halp me with some questions?
Is there multiplatform standart in binary representation of primitive
datatypes when you writing it through BinaryWriter?
In other words if I write by BinaryWriter for example Int64 or Single, can I
without problem read it by BinaryWriter on platform wit... more >>
executereader error
Posted by MSNEWS at 6/30/2004 4:23:22 PM
I get this error when trying to run a SQL command, maybe my program is
silly, I'm pretty new at this :
Additional information: SqlCommand.Prepare method requires all variable
length parameters to have an explicitly set non-zero Size.
selcmd.Connection = con
selcmd.CommandText = "SELECT id... more >>
Playing Syatem.DateTime.
Posted by bredal Jensen at 6/30/2004 2:46:28 PM
Hello gurus,
I'm building a small booking system and i have come accross quiet a tedious
pitfall.
"I need to make sure that people do not book for tomorrow when todays time
is greater or equal to 11."
Well some of you probably allready know the answer but this is not so
obvious ... more >>
Looking for good c# sample NetworkStream BeginRead/EndRead...
Posted by Kyle Jedrusiak at 6/30/2004 1:19:33 PM
Need the correct usage pattern for something like a chat program.
Don't want any threading issues or stack problems.
Kyle!
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Windows Regitry - Encryption Key storage
Posted by Harman Sahni at 6/30/2004 12:56:46 PM
We have a public and private key pair for Credit Card data encryption.
The database part is all done where we generated the key pair.
Public key resides in the database for encryption and we intend to store the
private key in the registry of Windows 2003 server from which our
application will ... more >>
writeline function without " "
Posted by Jurgen Oerlemans at 6/30/2004 12:46:02 PM
Hello ,
I use the following to write to a file:
FileOpen(1, FileName, OpenMode.Output) ' Open file for output.
WriteLine(1, TextBox11.Text)
WriteLine(1, "Test text")
FileClose(1)
In the text file each line begins with " (double quote) and ends with ".
Is there a way to write to a file wi... more >>
Global Assembly
Posted by Steve at 6/30/2004 12:06:06 PM
Hi all
What is the way in .NET to make an Assembly global for all other assemblies
that reference it? In VB6 there was a property on a DLL called Instancing,
and if you set it to 6 - GlobalMultiUse, then you don't have to declare an
object in order to call it's functions, the other DLL's could... more >>
Change Crystal Report Zoom Level using percentages in Crystal Report Viewer (Dotnet)
Posted by Alex Stevens at 6/30/2004 11:09:34 AM
Hi All,
I have implemented my own toolbar on a form which houses the crystal reprot
viewer.
I would like to have a combobox to allow the user to change the zoom level
to say 25 / 50 / 75 / 100 / 200%
However the crystal report viewer only seems to allow two levels of zoom,
using the .Zoom ... more >>
Should be simple: installation dialogs
Posted by John Spiegel at 6/30/2004 10:55:06 AM
Hi all,
I've added a custom dialog to my install package. The button labels are yes
and no with button values of 1 and 2 and the ButtonProperty = "BUTTON2".
I've also added a launch condition of BUTTON2 == 2. Seems simple enough.
However, the installation presents the dialog but installs whe... more >>
What files to upload to webserver?
Posted by james NO[at]SPAM jimw.co.uk at 6/30/2004 10:30:32 AM
Hi there,
I'm just starting to write my second ASP.NET webpage in C# and want
some way of easily splitting out those files that are needed to be
uploaded to the webserver - i.e. i create a project on my local
machine in VS.NET and it creates the "AssemblyInfo.cs" file,
"Global.asax" file, "Gl... more >>
Hardware requirement for .net framework Server/Client
Posted by Akok Lim at 6/30/2004 4:21:01 AM
Hi, My Name Akok Lim
I've some trouble when i do the installation to my client.
I've a big problem
the client can only provide for the computer using : Intel Celeron 2.0 GHz, and DDR 128 MB, because of my back end using Ms SQL Server 2000, i install Ms Windows 2000 Server. And I Also Develop... more >>
Function return values
Posted by guy at 6/30/2004 3:58:01 AM
It would be really nice if there was an option that warned the developer that calls to functions did not handle the returned value, or alternatively threw a compilation error.
I have been caught so many times by witing something like
Split(myString,",")
instead of
MyArray = Split(myString,",")... more >>
Protect IL Code
Posted by YK at 6/30/2004 2:39:02 AM
All,
What is the best way to protect IL code?
---------------------------------------------------
Typical scenario:
Visual Studio .NET 2003 includes Dotfuscator Community Edition, which intends to protect IL code. However, many .NET applications use data binding in UI forms. For example:
... more >>
|