all groups > c# > june 2006 > threads for saturday june 10
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
Simple (hopefully) form question
Posted by Byron at 6/10/2006 5:19:02 PM
I need to create an application that uses primarily a single form rather than
an SDI that creates a new form for everythting. However, I don't want an MDI
style application since the users I'm dealing with would be overwhelmed with
it.
The approach I tried in the past was to use MDI, but m... more >>
Interop Question with Unmanaged C++
Posted by Zach at 6/10/2006 2:03:34 PM
I have both an unmanaged DLL written in C++, and a Windows Forms
application from which I'm trying to use the services of the unmanaged
DLL. I seem to have everything set up correctly, but I'd really like
to be able to debug into the unmanaged DLL. Here's how I have things
setup.
C++ file:
... more >>
MessageBox and Ok Cancel question
Posted by Avi G at 6/10/2006 1:21:02 PM
Hi,
i've this code
private void Esc_close_application_Click(object sender,
System.EventArgs e)
{
MessageBox.Show("Are you sure?", "Exit",
MessageBoxButtons.OKCancel);
if (OKButton clicked)
{
Application.Exit();
... more >>
Connect to a SQL database
Posted by Claudia Fong at 6/10/2006 11:04:02 AM
Hello everybody,
I'm connecting my C# application with a SQL databse, it's my first time,
usually I use access database.
I have a question: I want to load the data of my db into the combo box
when the the form load.
In my invoice table I have nbr as primary key, invoice_nbr and
clien... more >>
checkbox weird Problem
Posted by M.Selvakumar at 6/10/2006 6:27:43 AM
Hi,
I have a weird problem in checkbox.In my page, When i move mouse from
one textbox to other suddenly the chechbox's text is selected and the
typed chracters are attached to the checkbox text.For example, if the
checkbox text is "Others" and if i typed "test" then the checkboxes
text change... more >>
PLZ HELP ME
Posted by k_kris4u NO[at]SPAM yahoo.co.in at 6/10/2006 4:56:47 AM
I am geeting following errors.while running my project.plz respond asap its urgent!
thak u
Operator '==' cannot be applied to operands of type 'int' and 'object'
Cannot implicitly convert type 'System.Web.UI.Control' to 'System.Web.UI.WebControls.DataGrid'
Cannot implicitly convert type 'S... more >>
RegEx for validate domain values
Posted by luca.milan NO[at]SPAM gmail.com at 6/10/2006 3:39:32 AM
Hi, have a problem with this regex:
^(?<target>order|customer)@(?<action>view|save|delete)$
With this options: order@view, order@save, order@delete or customer
work fine, but with the target: order or customer fails.
I need match all domain values (order,customer and so... order@view,
ord... more >>
C# web application socket
Posted by Rain at 6/10/2006 3:11:01 AM
Hi,
I've been solving this problem for a week already, can anybody help me with
this?
I made a asp web application using C#, i have a client/server(TCP) setup and
it works perfectly when i tested it with a windows app but when i tried it in
my web application, only my terminal or my pc can... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
I am not sure how to interpret this...
Posted by Henry at 6/10/2006 1:26:40 AM
I am trying to work my way through a textbook on web services. I was
running a help page and got this error message. To me it is vague. Not
knowing the code well enough I am not sure which data element it is talking
about.... schemas? Context.items? I am not sure where that is
initiali... more >>
FIFO Text Control
Posted by Dinsdale at 6/10/2006 12:12:41 AM
I have an application that recieves text data via external input (i.e.
serial) and displays it on the screen (we use carraige return as a
delimiter). At this point I use a regular old text box and when the
text size gets too big I truncate the string and re-set the
TextBox.Text property. This so... more >>
How do I split this String?
Posted by Saurabh at 6/10/2006 12:00:00 AM
Hi everyone,
I am looking for some expert advise to get me out of trouble. I am =
looking for a solution in C# which will allow me to split the below =
string in the format provided. The String.Split() allows only a single =
char as a delimiter.So I cannot use that as well.
Original String
... more >>
Exception of type System.StackOverflowException was thrown. PROBLEM
Posted by Savas Ates at 6/10/2006 12:00:00 AM
I want to change my controls in my class
I have the following code. All the code in my _default page class
How can i solve it ?
public class antu:_default
{
public void GetHolder()
{
if ( (string)this.Page.Session["refcode"]=="antu")
{
Control ANTUUST = this.Lo... more >>
|