all groups > dotnet general > june 2006 > threads for monday june 26
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
unable to attach the process
Posted by SenthilVel at 6/26/2006 6:01:01 PM
Hi
I have a question when debugging dotnet code when attaching vb6.exe code to
this process.
i get an error like :
unable to attach the process. there is no managed code running in the
process. INorder to attach a process with the .NET Debugger, managed code
must be running in the p... more >>
Get n number of Files from directory
Posted by bhu at 6/26/2006 4:15:53 PM
Hi
any idea how to get a set of files from a Directory,
if a Directory contains 100 files i want to access 10 file at a time move it
to a different directory , grab the next 10 do the same,
Also is there a way to get the First Set of File by the Date and time Stamp
FIFO
thanks
bhu
... more >>
How to have .net code call pager or phone
Posted by moondaddy at 6/26/2006 4:13:21 PM
I need to code in a web service call a pager and/or a phone and leave a
automated message as an alert when certain events occur. I don't even know
where to start with this or if its possible. I also need to have an answer
on this ASAP to respond to a client. Can anyone advise on how to appro... more >>
Start a process with a different CultureInfo than the OS
Posted by Dirk Behnke at 6/26/2006 12:47:08 PM
How can I start a new process with a different CultureInfo?
I have tried already to set the CultureInfo of the thread starting the
new process before creating the Process object, but it doesn't help.... more >>
Size and Size on Disk information.
Posted by Suresh.Eddala NO[at]SPAM gmail.com at 6/26/2006 10:35:57 AM
Hi,
I am trying to get file size information in my code.
FileInfo().Length is returning the size of the file.
I have checked on File information in windows right click properties,
it has two properties.
-- Size
-- Size on disk
It seems size on disk is vary based on file s... more >>
High Tech Home Video
Posted by Ghosthunter1966 at 6/26/2006 9:14:01 AM
I just recently watched the "High Tech Home" streaming video on the
Microsoft: At Home web site and was just wondering what kind of software was
used to do all that home automation. More specifically, in the kitchen there
was software that worked with barcodes to keep the kitchen inventory an... more >>
Bind drop-down to table - Please urgent
Posted by Antonio at 6/26/2006 8:26:01 AM
Can somebody please tell me how to bind a drop-down (states) to a table
programmatically? I have the connection information in the procedure and I
am not using the connection objects in the GUI interface.
Thanks,
Antonio... more >>
test
Posted by Tim Reynolds at 6/26/2006 8:07:01 AM
test to make sure my no-spam alias is still connected to my MSDN liscence for
2 day guranteed turn around on postings...
Please confirm, Microsoft....
Thanks.,Tim... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Conditional compilation in C# - Help
Posted by Yoni at 6/26/2006 7:54:17 AM
I created two projects, one web and one windows app.
The Conditional code works ONLY for the windows app:
#if (DEBUG)
MessageBox.Show ("In Debug");
#else
MessageBox.Show("Not Debug");
#endif
but NOT for the web:
===
#if (DEBUG)
Response.Write("In Debug");
#else
Response.... more >>
checking free disk space w/ .NET....
Posted by awm129 NO[at]SPAM gmail.com at 6/26/2006 7:26:33 AM
.... how do I do it? I'm writing a webapp that allows uploading but I
want to check the free diskspace on the server before I allow the
upload. I know how to do this w/ WIN32 and I could just pinvoke the
proper DLL but there must be a way to do it in .NET?
If it matters, I'm using C#.
... more >>
What is the standard for naming objects?
Posted by rsine NO[at]SPAM stationeryhouse.com at 6/26/2006 4:49:04 AM
I did a recent post about what the standard was for naming a string
builder object. My concern was that I did not what to use "str" prefix
since this is used for strings but did not know what to use in its
place. A few responses I received indicated such prefixing is no
longer necessary in .Ne... more >>
Binary serialization
Posted by Jacques at 6/26/2006 4:47:02 AM
Hi
I am an dotNet newby, so pardon my ignorance.
I am looking for a method of saving/copying a managed class to a stream/file
WITHOUT saving the object's state, eg. if I have a ref class with two int32's
as its data members, the binary file of that class must have a size of 8
bytes (i.e. o... more >>
sqldataadapter fill slow
Posted by incolsa NO[at]SPAM leveltelecom.es at 6/26/2006 4:27:36 AM
When i try to fill, it takes about 25 seconds, and the sql sentence in
the analyzer only takes 1 sec. The sentence returns 60 rows and 32
columns
sda.Fill(ds,"alojamientos");
tabla = ds.Tables["alojamientos"];
Anyone has the same problem ?
... more >>
[Q] is .NET Framework SDK 2.0 command-line tools free for commercial usage?
Posted by Vaidas at 6/26/2006 3:25:50 AM
Hi,
I have one question ..
Is .NET Framework SDK 2.0 command-line tools (compilers, etc) free for
commercial usage? I have to create a simple .dll with C#, but don't
know are there some issues regarding SDK legal usage. I couln'd find
any documents regarding this issue.
Regards.
... more >>
struct or class?
Posted by Lloyd Dupont at 6/26/2006 12:12:25 AM
I have an object which is just a thin wrapper over an other object and might
be created in big quantities.
something like that:
// ===== pseudo-code cample =======
class TheObject
{
int[] data;
TheWrapper Data { get { return new TheWrapper(data); } }
}
class or struct TheWrap... more >>
|