all groups > c# > september 2007 > threads for saturday september 1
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
What's the difference, if any?
Posted by Carl Johansson at 9/1/2007 6:41:35 PM
Except for the syntax, what is the difference, if any, between this...
/* ---------------------------------------------------------------------- */
private void Form1_Paint(object sender, PaintEventArgs e)
{
Pen pen = null;
try
{
pen = new Pen(Color.MidnightBlue, 1.0F)... more >>
C# exercises
Posted by vinnie at 9/1/2007 5:56:31 PM
Hi everyone,
I am looking for exercises in C# for beginners.
Any idea where can I find some ?
Thanks
... more >>
free icon
Posted by Adam One at 9/1/2007 3:48:39 PM
Hi !
I need 16 x 16, 16-color .bmp or .ico files for using as a icon on toolbox
for my custom controls.
Do you know any ready, 16 color free source ?
Thanks...
ps: i know that i am too lazy to convert...
:)
... more >>
Speeding up a web service over SSL
Posted by David Jackson at 9/1/2007 3:17:02 PM
Hello,
I'm presently developing a WinForms app in C# (VS.NET 2005) which needs to
interface with a web service running on the company's public Internet site.
The webservice is very simple - it receives a string, looks it up in a SQL
Server database, and returns another string based on the r... more >>
exponential
Posted by vinnie at 9/1/2007 2:36:38 PM
if i am building a console application, what code should i us to make
an exponential operation?
For example 4^2 = 8
If i use the ^ symbol, i get an error
thanks
... more >>
Regular Expressions
Posted by VAADADMIN at 9/1/2007 11:21:15 AM
Looking for a little help. I cannot quite seem to get it right.
Here is the string:
addgroup ASOGRP supgroup(DUMMY0) owner(DUMMY0) data('AUTO SYSTEMS')
Result:
I want to pull out the string owner(DUMMY0) by itself. As my code is
written below, I get the remainder of the string as well... more >>
section three... correct?
Posted by vinnie at 9/1/2007 10:13:53 AM
I have made my first class wih function, trying to calculate the
interest paied on a principal. It works until reach the endo f section
2. Section 3 that supposed to print out the results, it does not work.
I don;t get any error msg but i don't get either the results. Why?
namespace TassoInter... more >>
GridViewRowEventArgs versus EventArgs?
Posted by Moore Works at 9/1/2007 8:10:00 AM
Howdy All,
I don't understand how to correct an error I encounter when trying to
control GridView DataBound data flow.
error CS0123: No overload for 'GridView2_DataBound' matches delegate
'System.EventHandler'
protected void GridView2_DataBound(object sender,
GridViewRowEv... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Encryption in .NET 2.0 remoting across different domains
Posted by timmmahh at 9/1/2007 7:11:07 AM
I want to use the new encryption capabilities in .NET 2.0 remoting
(e.g using the secure attribute).
I've got my demo to work on a single and multiple server deployment in
the same domain, but will this also work across different domains or
workgroups? I've not looked into the authenticate iss... more >>
calculate font size in pixel
Posted by antani at 9/1/2007 6:00:42 AM
Hi, I should print many row (nameitem, quantity, price). I would like
print price item with justification to right. I need to know width
font size in pixel.
example:
ppp 1 10e
fffff 2 1e
... more >>
Fastest way to get data?
Posted by Code Monkey at 9/1/2007 4:58:30 AM
DataTable loading a SqlDataReader (dt.Load())?
Vanilla DataTable using SqlDataAdapter
or SqlDataReader ?
or is there a better way using Generics? If so, how? Essentially I
want to get about 50-100 rows of data (2 columns) out of my database
and use this is serveral places without caching it a... more >>
foreach string resourceKey in ResourceManager?
Posted by deerchao at 9/1/2007 2:39:02 AM
Is there any way I can get all resource keys with in a compiled and
embedded resx file?
Thanks!
... more >>
catch event on parent control
Posted by antani at 9/1/2007 2:32:02 AM
I have a groupbox in my application that contains many control as
NumericUpDown and CheckBox. I would like capture event on groupbox
control as changing NumericUpDown value and checkbox change .
How can do it?
Thanks.
... more >>
how do I cast a string to an int
Posted by moondaddy at 9/1/2007 2:13:07 AM
How do I cast a string to an int?
Suto code:
string str = "1";
int i = (string)str;
Thanks.
--
moondaddy@newsgroup.nospam
... more >>
smart client/web app approach recommendation?
Posted by Chris Bordeman at 9/1/2007 12:20:44 AM
Hi all. I need to create an app that runs both at individual client PCs, on
the client's on-site server, and on a main server depending on network
connectivity, probably w/ database replication.
What technologies should I use so that the software running on all three
locations looks the sa... more >>
How to pass a parameter to a predicate delegate?
Posted by nospam NO[at]SPAM nospam.sss at 9/1/2007 12:00:00 AM
I have seen examples for List<T>.FindAll(findthis)where findthis is a
predicate. How do I pass a parameter to this predicate so that I have
different values to search for? I don't want to use global variables.... more >>
|