all groups > c# > april 2005 > threads for sunday april 3
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
Question: Aspect Oriented Programming
Posted by Shawn B. at 4/3/2005 11:42:48 PM
Greetings,
I was reading the latest MSDN magazine and in it is an insert (VOLUME I: Feb
2005 -- Patterns & Practices Digest) that discusses something relating to
the Avande ACA.NET framework (which I'll most likely never afford to
purchase and I'm not shopping, anyway)... but I have a question... more >>
Insert row in DataGrid, Web App
Posted by xxxxyz NO[at]SPAM abv.bg at 4/3/2005 11:36:19 PM
Hi,
I have a Web App with data grid connected to MS SQL Server. One of the
columns is primary key with Auto Increment. How to create insert into
database (because this is not null column)?
Thanks.
... more >>
How to reference to the owner or container of a component?
Posted by M Shafaat at 4/3/2005 10:23:02 PM
Hi,
I want to find the owner and/or container of a component. It might be
control or other kinds of components.
I have tried with many variants of code like "this.Container." or
"this.Owner." etc. without success.
Regards
M Shafaat
... more >>
Help emergency
Posted by Shawn Zheng at 4/3/2005 10:16:30 PM
I got a problem with cookies. It seems only allow 20 cookies to be sent to
client browser. if more than 20 cookies sent to client, only the last 20
cookies keep in client machine. How can I resolve this problem?
Shawn
... more >>
Invalidate() vs OnPaint()
Posted by Chan at 4/3/2005 9:46:38 PM
Invalidate() is a member of System.Windows.Forms.Form. It marks an area of
the client window as invalid and, therefore, in need of repainting, and then
makes sure a Paint event is raised.
But why we are doing it this way. If we know that something needs painting,
why don't
we just call OnPain... more >>
Modem
Posted by Sunil Dutt at 4/3/2005 9:38:21 PM
How can i read modem using c#, and how can i detect the
voice capabilities of this.
rgds,
Sunil ... more >>
file inuse
Posted by Venkat at 4/3/2005 9:09:03 PM
I am creating a file with identifier+dateandtime, when on multiple requests
at the same time, it fails, it either says file in use , can't be deleted?
can any one of you suggest, how to uniquely define a file name??
Thanks,
Venkat.... more >>
Making a Internet Radio Station Application C#
Posted by Sam Lad at 4/3/2005 8:45:34 PM
Hello I was thinking of writing a internet radio station suite for my
disitation but was not sure on where to begin.
i thought about what was involved and this is what i need help on
finding material / examples
1. Extracting the audio data from the users microphone
2. Extracting t... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
SharePoint and C#
Posted by mark at 4/3/2005 8:17:56 PM
I'm told that SharePoint can be extended/modified using C#. I'd love a
brief conceptual explanation of the "possibilities". Are these trivial
modifications, or are there intellectually interesting possibilities with
..NET integration?
Thanks in advance for the feedback.
Mark
... more >>
How to add TreeView structure to a Grid control?
Posted by Lee at 4/3/2005 8:01:59 PM
Any one knows that how to add a column in a DataGrid control in which
TreeView style grade line is drawn.
Actually ,i want to indicate the different relations between different rows.
Thank u in advance!
Lee
... more >>
pass delegate to a function in a dll file
Posted by KC Eric at 4/3/2005 7:28:43 PM
Hi all,
I have a dll file, it has a class, say:
class Temp,
this class has a function which has a delegate as a parameter,
say:
public void Test(GameOverHandler _overHandler)
the delegate type is declared in Namespace level,
say:
public delegate void GameOverHandler(string reason)... more >>
Only one MDI child at a time
Posted by cashdeskmac at 4/3/2005 6:49:02 PM
I have an MDIParent form and when I click on a menu item, it opens up a child
form. However, if I click the menu item again, it opens up a second version
of the form. How can I make sure that only one version of this form is open
at a time?... more >>
threading
Posted by laimis at 4/3/2005 6:34:34 PM
Hey guys,
I am writing this one multithreaded app where I do synchronization
between producer/consumer with boolean flags and busy waiting. How much
more efficient is Monitor.Wait(syncobj) and Monitor.Signal(syncobj)
combinations?
... more >>
Show the system menu on a non-rectangular form
Posted by Christoph_BrĂ¼ser at 4/3/2005 5:59:51 PM
Hi,
I'm having a bit of a problem here:
I created a non-rectangular form and now I want to mimic the normal
windows behaviour. This means I also want to show the system menu when
the user right-clicks on my titlebar. Any ideas how to achieve this are
greatly appreciated, since my searches ... more >>
Getting TextBox scrollbar size
Posted by MuZZy at 4/3/2005 5:37:25 PM
Hi,
Is there a way to:
1. Find out if a scrollbar is currently show on the TextBox
2. Get the width of the horizontal scrollbar
I am doing a UserControl with a TextBox with a small image placed in the upper right cornet of the
text box. If user typed a lot of text and scrollbar shows, i ne... more >>
Datarepeater
Posted by at 4/3/2005 5:28:29 PM
Hi, NG!
Is there any updated version (.Net) of the Datarepeater control or do I have
to use the old (VS6.0) version?
Thanks.
pax
... more >>
Open Source ERP
Posted by Ramakant at 4/3/2005 3:16:31 PM
hi,
I am thinking of making an open source ERP using c# and some database as
backend. I intend to use the data model of OFBiz and compiere as a
reference. It will be modular and be built using reusable loosely coupled
components..do u think its a good idea?
... more >>
troubleshootting
Posted by Panayiotis Panayi at 4/3/2005 12:57:01 PM
I cant create a new windows project or anything else from c# or vb . I am
just starded on .net. The error that give's me is that. Microsoft Enviroment
Automatio server cant create an oblect. Any ideas what is happening.
Thanks Panayiotis... more >>
How to resize a TreeNode after changing its font?
Posted by Fabio Cannizzo at 4/3/2005 12:02:53 PM
I execute the following code:
myTreeNode.NodeFont = new Font( ... );
However this does not change the Bounds of the TreeNode and as a result the
TreeNode's Text does no longer fit and it in the Bounds rectangle and it is
not displayed properly (it is trimmed).
Does anybody know how to c... more >>
Grey images in TreeView
Posted by Fabio Cannizzo via .NET 247 at 4/3/2005 9:08:25 AM
The TreeNode of my TreeView have a property that identify if the node as active or inactive.
I would like the Image associated with the particular inactive nodes to appear greyed.
My idea was to load two copies of each image in the ImageList, one normal and one greyed, but I do not know how to... more >>
File.Move
Posted by edi at 4/3/2005 7:42:13 AM
Hi,
I'm trying to move a file using File.Move(path1,path2). But the file
does not close immediately I call the method (I use Word library to
manage word file).
I can do something like this:
tryagain:
try
{
File.Move(e.FullPath,txtProcessedFile.Text+e.Name);
}
catch
{
goto try... more >>
TreeNode Collection
Posted by juli jul at 4/3/2005 6:53:39 AM
Hello,
I am trying to create a TreeNodeCollection and to attach it to a tree
view. How exactly can I do it?
I am trying to do:
TreeNodeCollection tnc=new TreeNodeCollection(node);
but keep getting errors.
How can I do it?
Thank you!
*** Sent via Developersdex http://www.developersdex.c... more >>
Seeking book recommendations
Posted by Paul Richards at 4/3/2005 5:37:15 AM
Hi,
I have several years experience with both C++ and Java and I am eager
to learn C#. Are there any books you can recommend to someone with
good programming experience already?
I am not looking for a book which teaches the .NET frameworks as I
assume there is good online reference material.... more >>
C# Reflecion - Is it possible?
Posted by David Krmpotic at 4/3/2005 5:24:40 AM
Hello,
I want to find all the objects of some type that are currently in memory.
So it is somehow reverse from GetType().
I want to do this:
foreach(MyObject o in AllTheObjectsOfGivenType(typeof(MyObject))
{
...
}
Any suggestions please? Thank you!
David
... more >>
MS Office
Posted by edi at 4/3/2005 4:36:37 AM
Hi,
How can I uses MS office documents in my application? Are there any
managed classes for loading, saving and so on office documents?
Thanks.
... more >>
Garbage collection (Urgent issue)
Posted by [Yosi] at 4/3/2005 12:25:06 AM
How can I make sure that a spicific function location in memory will not
moved , by OS/Garbage collection ?????
The problem is : I'm using a DLL this dll have an call backerror function,
in my Application I made an error function which show the error if occurred
(Message box). I send a referen... more >>
Lost auto event coding
Posted by User at 4/3/2005 12:14:29 AM
Hi all,
I think a Visual Studio's feature has been
turned off? Hopefully someone can give
me some hint!
My VS has stopped inserting event handling
and event registration code automatically
when I'm designing web forms. I had to
manually type in the event handling and
event registration c... more >>
|