all groups > c# > february 2005 > threads for sunday february 13
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
Using ListBox
Posted by Adhiraj at 2/13/2005 10:47:02 PM
Hi,
I come from Java background. I waant to know the C# equivalent to JList in
Java.
I tried using ListBox but cud not work out how to add elements to it. i.e.
there is no method like listbox1.add().
Thanks in advance,
Adhiraj.
... more >>
c# multiprocessor
Posted by Pujo Aji at 2/13/2005 10:46:50 PM
Hello,
I'm looking some tutorial or book about programming C# multitreading in
multiprocessor. Is anyone has experiance?
Sincerely Yours,
Pujo Aji
... more >>
Opinion needed: Crystal Reports vs. anything else vs. One's own implementation
Posted by LP at 2/13/2005 10:40:50 PM
Hi,
I will be taking on a new project developing a web-based "reporting system".
The first requirement I got from BI group is "we just want to look at the
data". Basically, there is a huge database, and they want certain people to
be able to drill down to the data they want, perhaps a few graphs... more >>
Calendar and C#
Posted by reidarT at 2/13/2005 10:09:47 PM
I try to get the selected date from the calendar control to a label with
this:
this.Label4.Text = this.Calendar1.SelectedDate ;
but, I get the mesage Cannot implicitly convert type 'System.DateTime to
string'
regards
reidarT
... more >>
UIs like Media Player
Posted by Pierre at 2/13/2005 9:16:48 PM
Hi,
Most of the latest products like Windows Media Player from Microsoft have
skin based controls. Do they use internal libraries or is there an easy way
to implement such user interfaces?
... more >>
dataset row removal
Posted by andrewcw at 2/13/2005 9:11:01 PM
When I perform this action, bChanges still remains false.
Naturally I cannot persist the change because the dataset
appears unmodified. Why is that ???
_dsAllTables.Tables[tableName].Rows.RemoveAt(rowIndex);
bool bChanges=_dsAllTables.HasChanges();
Thanks in advance
--
Andrew... more >>
Corrupt project
Posted by Joe at 2/13/2005 7:44:05 PM
Some how I believe my project got corrupt.
I added a new form to my project and the keyword highlighting and intelsense
stopped working. If I would complie it would come back for a short time.
I saw a message about a blank line in the licenses.licx file. I removed the
blank line and it seeme... more >>
fileName
Posted by Hrcko at 2/13/2005 7:39:40 PM
How can I read just the name of the file?
When I put fileName=openFileDialog.FileName I get the full path, but I just
want the name of the file.
Hrcko
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to pause for keystroke...
Posted by Aaron at 2/13/2005 7:12:54 PM
In a console based application, I'd like to pause for a
keystroke. I thought Console.Read would do the trick, but
after it didn't I found this on the MSDN description of
the function:
Console.Read
This method will not return until the read operation is
terminated; for example, by the use... more >>
c# versus VB
Posted by reidarT at 2/13/2005 7:05:30 PM
I wonder where I can find basic info about C#
like
Me.TextBox1.Text = "hallo"
Me.Label1.Text = "Heisan"
in VB.net
It doesn't work in C#
regards
reidarT
... more >>
Easy Class Question
Posted by Keith Smith at 2/13/2005 6:26:00 PM
I know I'm probably missing something simple here. I want to have a class
operate within some code like this. I do not want to make the class public
unless I have to. What am I doing wrong?
for (int y=0; y<3; y++)
{
MyStuff;
}
class MyStuff
{
MessageBox.Show("it w... more >>
Jump to a specific line
Posted by René at 2/13/2005 6:20:12 PM
Hello
I'm developing a program in c# that uses a RichTextBox.
Now i wonder, how can i jump to a specific line in the document that is
shown in that richtextbox?
/René
... more >>
Image of the executable
Posted by dakkar NO[at]SPAM sylveria.gen-dot-tr.no-spam.invalid at 2/13/2005 5:46:43 PM
How can i change the image of the executable that i write with c#
its always showing the default windows exe picture
i tried icon but its only changing the executable's form icon
what can i use instead?
Posted Via Usenet.com Premium Usenet Newsgroup Services
-------------------------------... more >>
Genuine Channels - Worth Buying?
Posted by Uchiha Jax at 2/13/2005 5:05:31 PM
Hello all,
Given my general greenness when it comes to remoting and my
desire to having something relatively stable up and running in the short
term I have been considering the purchase of Genuine Channels.
Would I be making a smart purchase here? What things should I be cons... more >>
Case and the FCL
Posted by George Remen at 2/13/2005 3:18:42 PM
Hello,
I'd like to know if it's somehow possible to refere to FCL object in the
lower case regardless of the case they exist in (unless there is some sort
of conflict between object names).
For example, instead of "Console.WriteLine..." could I somehow say
"console.writeline...". Right n... more >>
Where to put Constructor Code?
Posted by Keith Smith at 2/13/2005 2:44:09 PM
Does it make more sense to put additional constructor code WITHIN the
InitializeComponent(); method? Or should I put it right after the
InitializeComponent(); is called (in the public Form1() method)?
... more >>
Convert a number to a verbal representation
Posted by Picho at 2/13/2005 2:32:42 PM
Hi group.
This must have come up a few times before but I found no specific resources
regarding this.
the problem is simple: convert the number 55 to the string "Fifty five"
(obviously with any given number...)
The algorithm is quite simple and I would not have bothered you with such a ... more >>
What's the best way to insert new records only
Posted by LP at 2/13/2005 2:30:07 PM
Hi,
Every morning a .NET application downloads a file with cumulative data which
needs to be appended to SQL Server table. This program needs to identify
records that have not been previously inserted (there's a unique identifier
field) and only insert those. Also I must reuse our class that d... more >>
elements within elements in xsd (I think)
Posted by jake at 2/13/2005 9:37:01 AM
Can someone please give me the xsd schema lines that can produce xml
such as the following:
<accounts>
<account>
<number>10135</number>
<name>john doe's checking account</name>
<transaction>
<debit>ATM</debit>
<amount>200</amount>
</transaction>
<transaction>
<debit>... more >>
C# and VB?
Posted by perspolis at 2/13/2005 9:25:36 AM
hi all
I used OLE programming in VB and in VB there are two methods name GetObject
and CreateObject to create OLE object from their libraries.
In C# are there method like in VB?specially GetObject??
... more >>
IVRS Project
Posted by Sajan Emmanuel via DotNetMonster.com at 2/13/2005 4:29:42 AM
How to develop an IVRS application using Tapi in C#.
is anyone have any sample code for this.
pls help me.I need it immediately.
--
Message posted via http://www.dotnetmonster.com... more >>
|