all groups > c# > june 2005 > threads for saturday june 25
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
C# and Excel
Posted by Snoozer654 at 6/25/2005 7:51:01 PM
I'm trying to format a cell in Excel using the Excel Interop. Example: I need
to format a cell to be "610.00" Excel defaults this to 610. When I try to
match on this value of course I am not able to becasue of formating.
Later on I will need to format some dates but if I can get this one for ... more >>
Loading secondary form
Posted by Ant at 6/25/2005 6:27:02 PM
Hello,
How do you load a new secondary form in C#. This is the VB form style:
' Declare & instantiate
Dim form2 As New Form2()
' Then Show it
form2.Show()
Thank you iin advance
Ant
... more >>
Time in the world
Posted by Rene at 6/25/2005 2:47:11 PM
I am currently displaying the time of day value using the "h:mm:ss tt"
format (hr=hours, mm=minutes, ss=seconds tt=AM/PM).
I was looking under the "Regional and Language Options" and it looks like
the day time representation on all of the countries in the world always
start with Hours, then... more >>
C# VS Add-In: Modifying Solution Explorer Icons and/or Text
Posted by Max Khitrov at 6/25/2005 2:15:39 PM
Hello everyone,
I'm working on a VS .NET add-in that will allow developers to use
Subversion software from within the IDE (much like Source Safe).
Ideally, I would like for my plug-in to be able to modify icons that are
displayed in Solution Explorer based on the file's status.
So far I'... more >>
Method Replacement
Posted by Richard at 6/25/2005 1:37:02 PM
I know that C# supports VB's concept of 'Shadows' via "method replacement"
and the keyword "new". Is this considered a good practice? - It seems like
you might be breaking a class's contract if you use method replacement? Any
input is welcome...
--Richard... more >>
[Obsolete]
Posted by Richard at 6/25/2005 1:35:02 PM
How do people feel about the use of the C# [Obsolete] attribute? I heard it
had some NASTY side effects - though I can't recall what they were - any
input is appreciated...
--Rcihard... more >>
Timer
Posted by Alvo von Cossel I at 6/25/2005 12:51:01 PM
hi,
i have a form that stays on the screen for 300 milliseconds and then closes.
straight after this, another form opens. that works but after that, the
second one closes. someone suggested that i should change the static void
main code which i have done and it still doesnt work. can anyone... more >>
Associating more than one icon to an application
Posted by kurotsuke at 6/25/2005 11:58:38 AM
I need to associated more than one icon to an application (an icon for
the application and an icon for the documents associated to it).
How can I do it?
At the moment I'm only able to associate an icon (the one set in
project properties that is also the program icon).
Thanks.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
DesignTime property?
Posted by perspolis at 6/25/2005 11:47:55 AM
Hi all
I implemented a component and is shown on toolbox.
it shows all of component's property..
How can I tell that show just some property on toolbox?
... more >>
Game development in dotnet
Posted by vbian at 6/25/2005 11:21:22 AM
Hi,
I'm looking for information about companies using dotnet for the next
generation of games. I've been impressed by the managed examples that
come with the dx9 sdk, they're a huge step up from those available with
the dx8 and below sdk's.
There also seem to be a number of books covering thi... more >>
Problem with dllimport code included .
Posted by CobraStrikes NO[at]SPAM al.com at 6/25/2005 10:27:38 AM
Hi everyone,
Can you have a quick look and tell me why the caret is not shown , any help will be greatly appreicated
thank you.
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
... more >>
Drag & Move
Posted by Fatima at 6/25/2005 10:26:09 AM
Hi all!
Could you please tell me how I can drag a panel on a PictureBox and after
that paste the panel's backgraoundImage on special location of the
PictureBox.
Or you might have some moveable components.
I really appreciate you.
... more >>
Saving image to file from a webpage
Posted by tdmailbox NO[at]SPAM yahoo.com at 6/25/2005 8:21:40 AM
I cant seem to find the commmand that I can use to save an image file
from a url to my local harddrive. I am looking to save a jpg from a
webpage that I have screen scraped.
I have a web application that uses readHtmlPage(url.ToString()); to
read the page in, I am able to use regular expr... more >>
DataGrid Hyperlink Re: Post
Posted by ann at 6/25/2005 7:09:11 AM
Repost since I have had no replies and need some help:
I am trying to access the text of the hyperlink control during the delete
command.
I am retrieving the ID in there as well and it works
fine:e.Item.Cells[0].Text
The hyperlink code is returning "" even though there is a value:
e... more >>
Declaring an array within a structure
Posted by kd at 6/25/2005 4:41:03 AM
Hi All,
I need to declare an array in a structure. The following gives an error at
private char[] chararr = new char[5];
------------------------------------------------------
struct SimpleStruct
{
private int xval;
private char[] chararr = new char[5];
public SimpleStruct(int i... more >>
Selecting an event
Posted by Ant at 6/25/2005 3:02:01 AM
Hi, I'm very new to C# & .NET
I'm having trouble finding events for controls placed on a form. I'm used to
VB6 in which the control was chosen from a drop down box on the top left &
the event was chosen from a drop down box on the right. These two boxes
appear in the C# IDE, however, the left... more >>
The type or namespace name 'console' could not be found
Posted by kd at 6/25/2005 12:43:07 AM
Hi,
I am new to C#. I have created a console C# application. For some reason,
Console.Writeline is showing an error - "The type or namespace name 'console'
could not be found".
Only the default namespace 'System' is included. Is 'Console' not defined in
this namespace?
Any suggestion... more >>
C++ vs.C# in a graphics app.
Posted by Aykut at 6/25/2005 12:00:00 AM
Hi,
we plan to develop an app. that will involve lots graphics operations like
open, zoom rotate ect.
and there will be a lot of math in it because of filters ,noise corrections
ect. on image.
Will there be too much performance difference with a c# and win32 c++ or
managed c++ code?
thanks... more >>
asp.net doesn't respond immediately when code updated
Posted by Jason Huang at 6/25/2005 12:00:00 AM
Hi,
A javascript code is changed on file WebForm.aspx.cs, in my ASP.Net C#.
However, it seems the MSIE doesn't repond immediately after the code
updated, and it still shows me the stuff before the code updated.
Would anyone give me some advice?
Thanks for help.
Jason
... more >>
|