all groups > dotnet general > november 2004 > threads for monday november 1
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
msde how to use?
Posted by MS News Server at 11/1/2004 10:52:45 PM
Hi there, I have my vs.net installed on Windows XP platform and with msde
installed. The thing is that msde is so unlike sql svr and comes with no
gui front end tool for you to create and monitor your schema and data. I am
baffled as to how to use it. Thanks for your help.
... more >>
Hosting application in IE
Posted by Victor Hadianto at 11/1/2004 9:25:01 PM
Hi,
I wonder if the following is possible to do. Say I have created my own
document format and a document handler, much like Microsoft Word doc and
Microsoft Word itself. Now is it possible to make my application hosted in IE
just like MS Word? So if a user click on a link that points to my... more >>
Owner Draw TreeView / ListView ?
Posted by Gary Brown at 11/1/2004 8:31:54 PM
Hi,
I just discovered C# w .NET does not support owner draw for TreeViews
and ListViews (.NET 1.1). Is there a good workaround? A Google search
yielded nothing - or at least nothing easy.
Will a future version contain this capability?
Thanks,
Gary
... more >>
login screen
Posted by JIM.H. at 11/1/2004 6:29:11 PM
Hello,
I need to create a login page in my asp.net application. UserId and password
should be active directory userid and password. How can I do that?
Thanks,
Jim,
... more >>
ASP.net & Win32 API (LogonUser) question...
Posted by bobo456 NO[at]SPAM hotmail.com at 11/1/2004 5:06:19 PM
I am running IIS6 on a Win2k3 server.
I have an ASP.Net app (C#) that a user logs into and then I use
LogonUser to validate them and log them onto the server. I have
Windows Authentication ONLY checked on the site in IIS.
My problem is that eventhough I am using LogonUser to log on to the
... more >>
Problem installing ASP.Net
Posted by Ron L at 11/1/2004 3:20:13 PM
I have Visual Studio .Net installed on my development machine. I have just
tried to create a web service application in VS, and it tells me that I need
to install ASP .Net. I have tried installing both the SDK and the Framework
and it still hasn't installed ASP .Net. Is there something that... more >>
calender
Posted by JIM.H. at 11/1/2004 3:07:01 PM
Hello,
I have a textbox, when I double click on it I need to see a calendar and
when I select a date I need the date be in the textbox and calendar
disappears. How can I do this? Is there any sampel code?
Thanks,
Jim.
... more >>
Insane System.String Memory usage
Posted by polyfractal NO[at]SPAM gmail.com at 11/1/2004 2:29:49 PM
I recently ran our code through a profiler to determine why it was
using so much memory. It turns out the System.String object is taking
95% of the memory. We have considered converting the strings to
StringBuilder objects, but I don't think this will help. From what I
understand, the StringB... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
set to yesterday
Posted by JIM.H. at 11/1/2004 2:03:02 PM
Hello,
This is today, startDate = Format(Today(), "yyyyMMdd")
How can I set startDate to yesterday?
Thanks,
Jim.
... more >>
date format
Posted by JIM.H. at 11/1/2004 1:49:17 PM
Hello,
endDate = Format(Now(), "yyyymmdd") this should retirn 20041101 but it
returns 20043601. What is problem?
Thanks
Jim.
... more >>
File IO Read
Posted by paul at 11/1/2004 1:08:02 PM
I am having a an issue trying to read a text file using the File.Read command.
Here's the code:
FileStream fs = File.Open ("somefile.xml",Open,Read,ReadWrite);
StringBuilder strXml = new StringBuilder();
byte[] b = new byte[1024];
UTF8Encoding temp = new UTF8Encoding(true);
while (fs.Read(... more >>
Rich text
Posted by Pablo Katcheroff at 11/1/2004 11:49:21 AM
I'm working on a VB.NET project. I know that the RichTextBox component allows
me to use rich text (I mean with bold, underlined, etc); how can I make
Microsoft Word to get that rich text?
--
Regards,
Pablo
www.code.tectimes.com... more >>
send email with C#
Posted by nate heaton at 11/1/2004 10:55:02 AM
I would like to do the following with C# in my asp.net app:
Open the default email client of the user (just like a mailto: link would).
Supply the subject line and put some HTML (including an image) into the
body of the email.
Any help would be greatly appreciated.
--
Nate Heaton
... more >>
Use Enter Key or Arrow Key as well as Tab Key
Posted by FredSP at 11/1/2004 10:48:04 AM
I have a client who wishes to use the Enter Key and/or Arrow Keys, as well as
the Tab Key, to navigate between Fields in a Windows form.
Is this possible using C# in Visual Studio 2000 ?... more >>
Convert HTML to PDF - need a .net component to do this
Posted by Andy Smith at 11/1/2004 9:45:04 AM
Hi, I need to convert HTML files to PDF using a .net component. I've seen
components that do this but they all are either com wrappers on activex
controls, or print to a 'Convert to PDF' printer. We can't use either of
these options - we need very quick conversion and will be producing high ... more >>
Unable to run aspnet applications
Posted by M O J O at 11/1/2004 9:28:15 AM
Hi,
Every time I try to run my aspnet application, I get this error:
"Error while trying to run project: Unable to start debugging on the web
server. There is no managed code running in the process. In order to attach
to a process with the .Net debugger, managed code must be running in the... more >>
Reg expressions in the Machine.Config
Posted by John S at 11/1/2004 9:05:38 AM
I've got several regular expression strings that I want to store in the
machine config. One of the strings contains a ampersand character. For some
reason this can't be stored in a string in the config. When the string
contains the & character the app throws errors on start. I've tried to put ... more >>
Edit .EXE file
Posted by Tom at 11/1/2004 8:38:02 AM
Hello
I am a newbie to VB .net 2003 environment. I have a database in sql server
2000 that was developed using vb. I would like to edit some of the .exe files
that are used to collect and manipulate the data. I have vb .net 2003 but
when I open the .exe file it shows me the binary info and ... more >>
NGen - encrypt metadata - how?
Posted by Chua Wen Ching at 11/1/2004 7:57:02 AM
Hi,
How do i achieve this? I extracted this from the internet.
Tools that compile your .NET code to native x86 code using the
"ngen" facility of the .NET runtime (essentially "pre-jitting" your
code) and encrypt the metadata raise the bar against decompilation a
bit,
I want to encrypt th... more >>
How do you validate an entry in the texbox? (visual basic.net)
Posted by Helpless in Visual Basic at 11/1/2004 7:55:37 AM
Hi all,
I have 2 textboxes in my windows form. If the user types in a negative value
in one textbox, the user must definitely type in a postive value in the other
textbox.
How am i do enforce this?
Thanks... more >>
Rich Text Box's text to a txt file
Posted by Li Weng at 11/1/2004 7:06:08 AM
Hi,
I tried to use FileStream and streamWriter to write a Rich Text Box's text
to a txt file. But all text is in one line. All return inputs in the Rich
Text Box are showed like a small square []. I tried NewLine property and also
binaryWriter. Neither work ok.
Could you help me with it?
Th... more >>
Recommended company namespace scheme
Posted by jtnim NO[at]SPAM hotmail.com at 11/1/2004 4:33:40 AM
I'm trying find guidelines or recommendation for a .NET naming scheme
within a company.
-- Rubio... more >>
.NET Limitations when implementing UML
Posted by Martyn Lawson at 11/1/2004 3:58:01 AM
Hi,
I am currently working as an Analyst on a .NET Web Project using ASP.NET and
C#.NET.
I have a couple of, at least what should be, quick questions:
1. My understanding of UML says that the Controller classe of a Sequence
Diagram should be implemented as a private class within a comp... more >>
URGEN HELP: Starting a process from my application ???
Posted by serge calderara at 11/1/2004 1:34:05 AM
Dear all,
I have an application which is suppose to start another executable process.
As soon as that process is running, I need to retrive its handle. The
problem of the particular process I am starting is that it has a welcome
window first which gets displayed and then the real windows aft... more >>
|