all groups > c# > april 2007 > threads for saturday april 14
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
parsing JSP files
Posted by MR at 4/14/2007 10:57:16 PM
i need to parse data that is presented in a JSP file. i am trying to get a
handle on how to approach this.
is there is way to parse this directly? do i need to convert it to some
other format (html)? is there a way to do this?
thanks for any tips
m
... more >>
Problem in creating a relationship in sql server 2005: Newbie
Posted by weird0 at 4/14/2007 10:11:36 PM
I created a new Diagram and chose the tables that i wanted to create
relationships between.
When I wished to create a relationship between CUSTOMER and
CC_TRANSACTIONS
or say any other table........ it gives me the following message:
" The columns in table 'CUSTOMER' do not match an ex... more >>
Pop up a form with a temporary message
Posted by Michael A. Covington at 4/14/2007 2:44:05 PM
I want to define a form that has a textbox on it, and at some stages in my
program:
- create the form
- put a message in the textbox
- show the form
- do a time-consuming computation
- close the form
Currently, the form appears at the right time but the textbox always comes
out blank. ... more >>
A .NET Control to handle Ratings and reviews
Posted by Rob Dob at 4/14/2007 2:16:16 PM
Hi,
Does anyone know of a good, cheap, prefereably free ,net control that I can
use that will aloow users to not only rate something i.e.: 1-5 stars but
also post comments on whatever they are rating. i.e. a possible a picture..
etc.
Thanks,
... more >>
Using ConfigurationManager breaks WinForms designer...
Posted by Charlie NO[at]SPAM CBFC at 4/14/2007 12:52:06 PM
Hi:
Program runs and compiles fine, but WinForms designer breaks when using this
line of code...
ConfigurationManager.ConnectionStrings["RepairShop.Properties.Settings.BaseRepairShopConnectionString"].ToString();
It says "Object reference not set to an instance of an object". How then do... more >>
Initialise multi dimension arrays
Posted by Cairn at 4/14/2007 9:50:01 AM
Its easy enough to create and initialize a a 2D array of ints
as int[,] intarr = new int[,] {{1, 2}, {3, 4}, {5, 6}};, but how can i do
this with a 2D array of Point, or other multi init data types
Thanks... more >>
visitor pattern
Posted by RedLars at 4/14/2007 9:04:30 AM
Hi,
Given this class definition,
public class Node
{
Node parent;
object current;
ArrayList children;
}
I would need to type check the object variable everytime I'd need to
use it. Like shown below;
void SomeMethod(Node node)
{
object obj = node.current;
... more >>
Rich Client Platform (RCP) in C Sharp?
Posted by hilz at 4/14/2007 1:26:17 AM
Hi group,
I am starting with C Sharp, and want to build a desktop application.
I come from the Java world, where there are Rich Client Platforms that
make life easier by providing most of the standard services needed by a
desktop application. Examples are the NetBeans Platform, and the Eclipse... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
C# Windows Form ListView concept
Posted by Jason Huang at 4/14/2007 12:00:00 AM
Hi,
In my C# Windows Form application, I have a ListView control Lvw1 in MyForm.
For most cases, the Lvw1 has no more than 5 rows of data. But now comes the
situation that one user has to input approximately 100 rows into the Lvw1.
Case1, 5 rows.
Case2, 3 rows.
....
CaseX, 100 rows.
... more >>
Detecting selection change in ComboBox column of a DataGridView
Posted by David Jackson at 4/14/2007 12:00:00 AM
Hello,
I have an unbound DataGridView of which one of the columns is a ComboBox
colum containing category data, plus an additional option called <new> So
when the ComboBox is dropped down it looks like this
<new>
First
Second
Third
Fourth
I would like to add an event to this ComboBo... more >>
|