all groups > c# > march 2007 > threads for sunday march 4
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 31
What does it mean?
Posted by Alexander.Zen NO[at]SPAM gmail.com at 3/4/2007 11:24:09 PM
I read a clouse like following:
////////////////////////////////////////////////////
Struct values are stored either "on the stack" or "in-line".
////////////////////////////////////////////////////
and what does it mean?
... more >>
Print Margins
Posted by mehdi at 3/4/2007 11:01:27 PM
Hi folks,
1. Is there any equivalent to the "DocumentProperties" Win32 API in
C#?
2. How am I supposed to retrieve the user-selected margins from a
given Printer Properties dialog? (I got a printer installed that
supports "Print Margins", however, I've got no idea how to retrieve
that).
... more >>
Calling Matlab functions using C#
Posted by Ajith Menon at 3/4/2007 10:52:50 PM
Do any body know how to use the functions available in the MATLAB
using C#?
( To be specific, functions COHERE used to find Coherence and TFE to
calculate Transfer function are needed. These functions are available
in the MATLAB SP toolbox)
These functions require input waveforms X and Y, w... more >>
Modifying List items (generics)
Posted by Ivan Voras at 3/4/2007 10:46:43 PM
For a declaration like:
List<MyType> items = ...
where MyType is a struct, attempt to modify an item with
items[0].member = something;
fails with the message:
Cannot modify the return value of
'System.Collections.Generic.List<MyType>.this[int]' because it is not a
variable (CS1612) ... more >>
Always the same random numbers
Posted by Aspidus at 3/4/2007 9:42:34 PM
Hi,
I wrote a function that generates a ulong[]
I use it 3 times, one after the other, but it generates always the same
numbers.
At the end i get always 3 equal arrays.
Any idea?
Aspidus... more >>
Why we created
Posted by Happy Man at 3/4/2007 9:28:40 PM
Why we created
All praise is due to Allah and may His peace and blessings be upon his
last messenger (saaw) and on all those who follow the path of
righteousness until the last day.
We have to answer the most fundamental question that every human being
asks himself at some point in his ... more >>
how can I get a varibale from 2 forms in a project
Posted by Monica at 3/4/2007 9:13:08 PM
Hi,
Sorry, maybe it's so simple. but please let me know.
I have Login.aspx.cs taht has a string variable like strUserName.
I have manage.aspx.cs that I want to get strUserName.
How can I do this?
Thank you.
Monica... more >>
Trace.Listeners.Add
Posted by Zytan at 3/4/2007 5:45:49 PM
According to http://www.15seconds.com/issue/020910.htm I am doing this
in the c'tor of a 'logfile' class:
objStream = new System.IO.FileStream(logFilename,
System.IO.FileMode.OpenOrCreate);
objTraceListener = new TextWriterTraceListener(objStream);
Trace.Listeners.Add(objTraceListener);
So... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
C# Class to convert WikiMedia Markup to HTML?
Posted by Peter Bromberg [C# MVP] at 3/4/2007 4:59:05 PM
I need to be able to take Wikipedia WikiText markup and convert to HTML.
Haven't found anything really useful yet. Anyone?
Thanks,
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net
... more >>
Filestream
Posted by Jason at 3/4/2007 11:06:32 AM
Hello
I want to append to a file using Filestream, but is there a way to have
filestream check for the file, and if is's not there, create the file
without having to check for to see if the File exists before hand?
Thanks
J
... more >>
a quick regexp question
Posted by yoni NO[at]SPAM nobhillsoft.com at 3/4/2007 8:43:38 AM
Hey,
i am trying to get to the right regexp to remove everything that's a
multi line comment. in other words, everything between \*...*/. my
expression is:
/\*.*\*/
Doesnt work... Anybody sees anything wrong with that? thanks
... more >>
kd trees in c#?
Posted by stew dean at 3/4/2007 7:40:06 AM
Hi,
I'm new to C# but have done some perl and other bits of programming in
the past so have managed to put together some basic stuff after a few
days fumbling around.
I'm looking to do this as a web app.
I'm looking to set up a data base where things have a set of
dimensions, let's just ... more >>
alternative to multiple inheritance in c++
Posted by weird0 at 3/4/2007 6:01:58 AM
Suppose i have two classes A and B:
class A
{
public method_a();
}
class B
{
public method_b();
}
if i want to have multiple inheritance in c# like C++ so i can have
access to both methods:
class C : public A,B
{
public method_c();
}
HOw can i achive that in... more >>
RPC over TCP
Posted by Udi at 3/4/2007 5:42:47 AM
Hi All,
I have a C# dll that exports some functions.
I have a TCP server application that loads this dll at runtime.
The TCP server receives request messages to invoke the dll functions
from clients.
Each invocation request (sent by clients) consists of the name of the
class library (dll), t... more >>
How to find derived classes?
Posted by Zark3 at 3/4/2007 3:47:32 AM
Hello all,
Is there a way to find all classes that are derived from a specific
base type?
Within the namespace of my project i define a base type that may be
inherited for future expansion, so when checking for this class i need
to know all specific implemented types.
Right now I have a co... more >>
Developer's Meeting Place for Exchanging Ideas - www.developersplace.com
Posted by Webmaster - Developer's Place at 3/4/2007 12:00:00 AM
Hi,
I would like to invite you to visit this new website dedicated to all
developers for all languages. Come and participate on this project that
is build to contribute to this great community of developers.
Come and visit: http://www.developersplace.com
Thank you.... more >>
|