all groups > dotnet general > may 2004 > threads for tuesday may 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
batch file
Posted by Aaron at 5/4/2004 10:16:57 PM
FOR /f "tokens=1-3 delims=/" %%a in ('date /t') do set vl=%%a%%b%%c
md "%vl%"
this would create a folder named Tue 05042004
how can i get rid of the "Tue " part?
i want the folder to be just 05042004
Thanks
... more >>
How to call a VB6 application from Windows Service Application
Posted by DH at 5/4/2004 9:31:03 PM
I hope this is a right place to post my question
I'm working on a Windows service application with VB.net. The purpose is to let the service application as a monitor to periodically check a launching flag file. If the flag was found the service will trigger to run a finance calculating program (VM... more >>
DataGrid control question
Posted by Christina at 5/4/2004 9:16:03 PM
Dear all
Does anybody know how to set a cell as read only in DataGrid control. My situation is the cell editable/read only decided by another column's value on the same row. Thanks inadvance
Christina... more >>
Win API Wrapper: How to write them?
Posted by Chris Wagner at 5/4/2004 8:27:54 PM
I have about 5 to 10 API from a vendor and they don't supply VB warpper for
it. How hard is it to write a wrapper for VB. Is there a sample code just to
write one simple API? Thanks.
... more >>
Login Problems
Posted by DavidJ726 at 5/4/2004 6:04:40 PM
After installing .NET which is required for DriveImage, I no longer am
logged in automatically when I start my PC. I used tweakui to automatically
log me in but after a subsequent reboot (or after the screen saver is
activated) that option becomes disabled. I also cheked to see if there were
a... more >>
Code to download word documents to a Mac via web - MVP?
Posted by Tim at 5/4/2004 4:56:04 PM
We are having problems getting a Mac with IE to download Word documents from our web site using the code below. Any tips welcom
Response.Clear(
Response.ContentType = "application/x-unknown
Response.AppendHeader("Content-Disposition", "attachment; filename=" &... more >>
memory mapped file
Posted by Jan at 5/4/2004 4:37:05 PM
Hi, I don't seem to find any c# methods for memory mapped file. Does C# have
any? Or it is using different name? Thanks.
Jan
... more >>
Visual Studio .NET and Visual Studio 6.0
Posted by Girish Srinivasan at 5/4/2004 3:56:02 PM
Hello
In continuation with my previous thread regarding possibilities of compiling in Visual Studio .NET environment and linking using Visual Studio 6.0, I had one more question. I got some replies stating this would not work well. I was wondering if I am building plain Win32 application and not u... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Moving Java Applications to .NET
Posted by Jane Matthews at 5/4/2004 2:46:04 PM
Is there any quick easy way to move Java Applications (Unix) to .NET? Which .NET-compliant language should I choose: J# or C#? Any tools for J#? JLCA for C#, is it good? Thanks.... more >>
Is the C# lock statement FIFO? (first come first serve)
Posted by Chris at 5/4/2004 2:40:16 PM
If I have the following code:
object a = new object();
void DoSomething()
{
lock(a)
{
Thread.Sleep(5000);
}
}
Say I have 5 threads named a, b, c, d, and e.
If thread a calls this function first, followed in 10ms by threads b, c, d,
and e in that orde... more >>
Compiling single page in VS.NET
Posted by SS at 5/4/2004 2:09:33 PM
Hi,
How can I compile only the page/class that I am currently working on in
VS.NET and not the entire project?.
Thx
Sal
... more >>
How to receive Operating System messages?
Posted by dinoo at 5/4/2004 1:21:03 PM
I am looking this for a long time now
I have a Windows Form in C#? I opened another window (of other application) or MS Word Document
If user closes the document and other window is there some way to trap this event using windows API
How do C# Form comes to know that the document or other window... more >>
MSIL Optimizer?
Posted by cody at 5/4/2004 1:16:59 PM
is there any tool which can optimize msil? for example:
if (a is MyType)
{
MyType mt = (MyType)a
}
could turn into:
MyType mt = mt as MyType ;
if (mt!=null)
{
}
Maybe there are much more such situations.
I know that the jitter *could* do such Optimisations, but does it?
--
... more >>
Unlocking a file
Posted by CoolFire at 5/4/2004 12:56:06 PM
Hello
I have searched high and low for the answer to my question. I expect that it is right under my nose but it has come time for me to ask anyway. Is there a way to force access to a file on a computer that has been locked by a VB.NET program that is running on another computer
I have a mult... more >>
Install-time code generation...
Posted by Larry at 5/4/2004 10:51:04 AM
I have read several things that have referenced Install-time code generation, but I can not find anyway to enable this. Can anyone give me some help on this and what the advantages would be?... more >>
How can I test for previous instance of the application?
Posted by Helene Day at 5/4/2004 10:31:01 AM
I am looking for the equivalent of this VB code:
If App.PrevInstance Then
End if
Thanks,
Helene (I am still learning about .NET)
... more >>
Missing files from enterprise localization kit
Posted by gjcrooks NO[at]SPAM accesswave.ca at 5/4/2004 10:14:02 AM
Can anyone send me these files:
ApplicationCultures.txt
Applications.txt
ControlTypes.txt
CultureProperties.txt
DictionaryProperties.txt
Elements.txt
Properties.txt
When I installed the Localization Toolkit these files were missing and
I have no stored procs in my SQL Server 7... more >>
Accessing .net component from asp/vbscript
Posted by John Stemper at 5/4/2004 9:46:53 AM
I'm looking for some good articles or hints on accessing a .Net component
that I've written from old ASP/VBScript. I've gotten as far as referencing
the typelib in the global.asa file but when I try to create the object in
VBScript it doesn't seem to be able to see it. I've read a few of the
on... more >>
Changing a DataAdapter connection
Posted by G-Fit at 5/4/2004 9:25:31 AM
Hello group,
I have several servers hosting SQL databases. On each of them, I have
several databases. All those databases have the same structure (even those
on different servers), only the data changes.
I made a winforms application that allows me to manage those databases
easily, and ... more >>
How to stop users from clicking buttons more than once?
Posted by Brent at 5/4/2004 9:18:18 AM
I have a C# asp.net page that when you click a button, it writes a record
(based on entered values) to the database. I've found that if you click the
button multiple times quickly, multiple records are written. What is the
best way to deal with this? The page takes a few seconds to process after
... more >>
compiling with visual studio .NET and linking with visual studio 6.0
Posted by Girish Srinivasan at 5/4/2004 8:21:06 AM
Hello
I would like to know if its possible to compile code in a visual studio .NET environment and then link the objects in a visual studio 6.0 environment with other visual studio compiled objects
Thank
Girish... more >>
Online help creation for .NET app
Posted by dov_sheinker NO[at]SPAM yahoo.com (| at 5/4/2004 6:13:24 AM
Hi,
I have a .NET application and would like to create online help (maybe
..CHM file) from the XML documentation inside the sources. Does anyone
knows how to do this ?
Thanks,... more >>
[MS Visual Studio.Net]
Posted by Stefan Richter at 5/4/2004 5:15:25 AM
I wonder, is there a possibility to let Visual Studio create get and set
functions for all private variables at once?
Thanks,
Stefan
... more >>
Circular Collection?
Posted by Joel Moore at 5/4/2004 3:04:42 AM
Is there a predefined collection in .NET that allows you to index through
its values by simply using a "NextItem" function (where it keeps track of
the currently referenced item) and wraps around so that you return to the
first item after reaching the end? Or is this something I'll just have ... more >>
Long URLs in text emails
Posted by Ambuj at 5/4/2004 2:31:04 AM
Can anyone please let me know that how can I handle very long URLs in a text email? I'm writting a bulk email program in VB.Net which sends text emails. The problem is when I've a very long URL it is wrapped by my email client and the result is an unusable link
Is there anyway in which I can mak... more >>
|