all groups > dotnet framework > august 2003 > threads for thursday august 28
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
Explicit interface indexer implementations?
Posted by Jon Rista at 8/28/2003 11:16:03 PM
Is there a way to explicityly implement an interfaces indexer? I need to
create a collection class, that implements IList, ICollection, and
IEnumerable. I'd like to create a custom indexer, with a return value of my
choosing, rather than object. Whenever I try, though, the compiler spits out
an ... more >>
.Net network layer have DNS caching flaw?
Posted by Chichi Paparucci at 8/28/2003 11:05:21 PM
We have an asp.net app that makes an http request call to
a server by dns name (there are 3 vips associated with
this dns name). For some reason, all our calls are
resolving to only one of the VIPs. Running an nslookup
command shows all 3 IP address of the 3 VIPs (in
different orders on ... more >>
ADO.net Got speed ?!?!
Posted by Mike at 8/28/2003 8:01:04 PM
I recently upgraded from VB6 to VB.net and decided that i
would like to update a program i use a lot. The Program
Connects to a M$ access database (access 2000). It reads
in server logs and parses the infomation using the Split
command and a select statement to pick out appropriate
words. ... more >>
Inheritance Problem when trying to implement Page Controller
Posted by Binod Nair at 8/28/2003 4:28:26 PM
Hi All,
Can somebody tell me what I am doing wrong.
I have a Base Abstract Class
Public MustInherit Class BaseRequestHandler : Inherits System.Web.UI.Page
Protected Overridable Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load
SomeMethod()
... more >>
How to ....
Posted by MSNewsGroup at 8/28/2003 4:27:29 PM
error CLR: 8007000b
Posted by fran at 8/28/2003 3:22:01 PM
When I run regsvcs I can see the following message: error
CLR: 8007000b
Why?
I have installed Commerce server 2002 developers
edition(with SP2) in windows 2000 server and with .net
framework 1.1... more >>
Using PropertyBuilder with a Dynamic Type
Posted by Tom J at 8/28/2003 2:19:13 PM
Using the example that microsoft gives in the VS documentation, creating a
property with the PropertyBuilder on a dynamic type will never allow it (the
property) to be exposed as public...only the get and set methods used on the
property show up as public. Has anyone found a way around this?
... more >>
BinaryWriter.Seek() vs BinaryWriter.BaseStream.Seek()
Posted by hhh12347 NO[at]SPAM yahoo.com at 8/28/2003 1:05:07 PM
Can anyone clarify the practical difference, if any, between
BinaryWriter.Seek() and BinaryWriter.BaseStream.Seek()? Under
what conditions might behavior of the two Seeks differ?
Or, can anyone answer: Why does BinaryWriter have it's
own Seek(), instead of using Seek() of contained Stream?
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Datagrid help
Posted by Sulafa Malik at 8/28/2003 12:53:08 PM
Hi all,
How can I use the OnItemCommand in the codebehind section of the webform i.e
in a function or a procedure , not in the html generated code.
Many Thanks
Sulafa Malik
... more >>
.NET web applications on UNIX
Posted by cn at 8/28/2003 11:59:56 AM
This may seem like a wild one, but...
I have a potential client that wants us to develop a web
app on .NET and then port it over to UNIX.
My initial reaction is that the app would have to be
completely re-enginered for UNIX, but another developer I
spoke to said that they didn't think th... more >>
Free tools for .net development
Posted by FabrÃcio de Novaes Kucinskis at 8/28/2003 11:32:42 AM
Hi all,
I'm searching for free and open source solutions to develop .net
applications for free.
I've found the SharpDevelop IDE (http://www.icsharpcode.net/OpenSource/SD/),
the WebMatrix IDE (http://asp.net/webmatrix/default.aspx), to develop in
ASP.net, SharpZipLib (http://www.icsharpcode.... more >>
Soliciting feedback on two features
Posted by Alan Shi [MSFT] at 8/28/2003 11:17:29 AM
I am collecting data for two features that shipped with the CLR in v1.0 and
v1.1. If you use and/or depend on these features, I would appreciate hearing
from you with a brief description of how you use these features.
1) .NET Application Restore tool
A few sources, including Jeffrey Richter'... more >>
Problem with .net not finding DLL file
Posted by John Bauer at 8/28/2003 10:07:41 AM
We are using a dll file EHLLAPI.dll, and .net (version 1.0) sporadically
cannot find the DLL at runtime. The DLL is clearly present, and is in the
same directory as the executable. This seems to happen randomly for some
users. This is a windows forms application. Any ideas?
An exception of... more >>
Running C# program
Posted by lingfang zhen at 8/28/2003 9:10:24 AM
I have C# program, what is the minimum setup required on
other PC (XP) to run C# (.NET) program. Do I need to put
Windows update for .Net on every system that I want to
run C# program? If not where can I find such package.
Thanks
lz... more >>
Controls.Clear() fail
Posted by Jens O at 8/28/2003 6:37:18 AM
I have a TabPage control in a Form that I want to
add/remove TabPages to/from like:
TabControl tabControl1;
TabPage tabPage1;
TabPage tabPage2;
// Add tabs
tabControl1.TabPages.Add(tabPage1);
tabControl1.TabPages.Add(tabPage2);
I now want to remove tabPage2:
tabControl1.TabPages.Remo... more >>
|