all groups > dotnet general > november 2003 > threads for monday november 24
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
Generic Event Handling
Posted by Robby NO[at]SPAM Here.Now at 11/24/2003 9:51:46 PM
I want to access an event that doesnt exist at desingtime
as it is only an object or control, however I know it
will at runtime. This works with properties OK but with
events it wont accept it unless it exists at designtime.
Example:
WORKS!
dim obj as Control
obj=Combobox1
msgbox obj.Se... more >>
question about WebClient.OpenRead
Posted by Seymen Ertas at 11/24/2003 5:34:37 PM
Hi,
I don't know if this is the correct place to post this but i am having a
little problem with the OpenRead function of the WebClient.
Below is the code i am trying to get it to work:
WebClient Client = new WebClient();
Stream strm = Client.OpenRead("http://something.jsp?user=userna... more >>
Debug Assertion in Release build in Managed C++
Posted by Eyal at 11/24/2003 3:29:35 PM
Hi,
We have an issue with Debug Assertion showing in Release
builds in Managed C++! I have created a small managed C++
project that looks like this:
#include "stdafx.h"
#using <mscorlib.dll>
#using <System.dll>
using namespace System;
int _tmain()
{
System::Diagnostics::Debug::Assert(... more >>
Microsoft "Server" Family
Posted by Schrodiodo at 11/24/2003 3:09:01 PM
I need some help, please.
Alphabetically:
BizTalk Server
Commerce Server
Content Management Server
Exchange Server
Host Integration Server
ISA Server
SharePoint Server
SQL Server
System Management Server
Windows Server Standard Edition
Windows Server Enter... more >>
News group
Posted by Simon at 11/24/2003 2:40:46 PM
Hi,
is there any news group for asp.net developers?
I can't find it.
Thank you,
Simon
... more >>
Memory leak in interop
Posted by Trokey at 11/24/2003 2:17:27 PM
I am making interop calls to an object in a .NET component from a C++
program and am leaking memory... the following is some sample code:
////////////////////////////////////////
// .NET component (Test)
////////////////////////////////////////
// interface
[InterfaceType(ComInterfaceType.... more >>
Please help! Is the support to UBB code still necessory?
Posted by david at 11/24/2003 2:16:40 PM
I am developing a BBS, I find many bbs system support UBB code, they claim
UBB code is safer. But I think I can achieve the same security by filter out
all html tags that allowed in the system and output other < and > character
as < and >. I could have more control in this way. I am not sur... more >>
obtain function name at runtime
Posted by Sylvain Provencher at 11/24/2003 2:02:31 PM
How can I obtain function name at runtime ? example : to display the
name of the function that cause an error
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Creating a build like window
Posted by Amendra at 11/24/2003 1:05:05 PM
Hi ,
Does any one know how to create a window similar to the Build window in
..VS.NET using C#.
We have used a text box, but, this does no seem to be scrolling down as in
the Build window in VS.NET.
Thanks
Amendra.
... more >>
Running .NET apps. on non-.NET Windows
Posted by Brian Toothill at 11/24/2003 12:20:10 PM
If I build a .NET app. (in C#, say), can I run the resulting .EXE on Windows
98 (say)? Will Windows 98 require .NET (the CLR, etc?) to be installed?
--
Thanks,
Brian Toothill
... more >>
date time picker
Posted by Eva at 11/24/2003 11:19:26 AM
Hi,
i am using a datetimepicker to select a date and i want
this value to be inputted into a listbox. The problem im
ahving is i get the date and the time appearing. I only
require the date. Is there a way around this?... more >>
Shell out .Net C# app from VB6 app passing parameters
Posted by OhCee at 11/24/2003 11:15:36 AM
Has anyone used Shell.exe from inside a VB6 app to open
up a .Net C# app passing into the C# app a parameter? I
want the user to be able to click on a menu item in VB6
and pass a "ID-value" to the C# app as a variable /
parameter.
Thanks!
OhCee... more >>
adding items to a Listview
Posted by Angelina at 11/24/2003 10:58:51 AM
Hi,
I wanted to add a few items to my listview control. The
values of these will be obtained from other controls on
my interface. When the user clicks the select button,
they will need to be added to my listview. This is what i
need help doing.
I have added the columns to the listview bu... more >>
File Upload (Email) and catching the Upload size of 4mb
Posted by bthomas71chevy NO[at]SPAM yahoo.com at 11/24/2003 10:18:41 AM
I am confussed on what the heck is going on ?! I have an HTML INPUT
File Box on an Email Piece of an application. I know that File Size is
set to 4MB in the WebConfig File and that is fine, but I have a couple
problems that include the magical 4mb number.
1. My problem is that when my file is ... more >>
.NET and VB6
Posted by Steve at 11/24/2003 10:01:18 AM
I have VB6 development system installed on my PC (running Win2000). A VB6
project I have on the PC uses ADO and contained a reference to the ADO 2.6
library (msado15.dll). I installed .NET (including the prerequisites) on my
PC. When I opened my VB6 project in VB6, the project contained a refere... more >>
Trapping tab key
Posted by Sebastien Brun at 11/24/2003 9:27:54 AM
Is there a way to trap the vbTab key when used in a text box ?
... more >>
UI development: C# vs. VB.NET
Posted by Olivier Gautier at 11/24/2003 8:50:59 AM
For UI development we need ideas to help us choose the
preferred language (C# or VB.Net).
Earlier with Visual Studio 6, VB used to be the preferred
option for UI development and also for rapid prototyping.
Though some people did use C++ (ATL/MFC) for UI
development - it was almost always ... more >>
File Transfer over dial-up and network
Posted by Neel Word at 11/24/2003 8:37:40 AM
I need to develop an application (development platform:
Win2000; target platform: Win98/ME/NT4/2000/XP), which
would require file transfer functionality over dial-up and
network.
We could develop on .NET (1.1 or 1.0 - VS.NET 02/03) or
using plain COM (visual c++). We'd prefer .NET though.... more >>
EndInvoke can only be called once for each asynchronous operation
Posted by scott ocamb at 11/24/2003 8:36:56 AM
hello
i am getting this error
EndInvoke can only be called once for each asynchronous operation
I have coded an app using the async method development pattern. This error
occurred under stress testing
I would appreciate any help you folks can provide.
thanks
... more >>
ASCII values
Posted by Dan Colbert at 11/24/2003 7:54:03 AM
Simple but potentially dumb question:
How can I get the ASCII numeric value for a character in C#? In FoxPro, the
function ASC("A") returns a 65 (int). Is there a similar function in C#?
Thanks in advance.
Dan Colbert
Senior Process Engineer
JDA eHealth Systems, Inc.
... more >>
Visual Studio .NET Bug
Posted by jjr01 NO[at]SPAM yahoo.com at 11/24/2003 7:53:20 AM
We are experiencing a debilitating VS.NET bug, in both 2002 and 2003.
We have solution with about 20 projects. 90% of the time, when we
rebuild, we get one or more errors saying "Cannot copy assembly 'xxx'
to file 'yyy'. The process cannot access the file because it is being
used by another p... more >>
IDisposable, using(), RAII and structs [Discussion]
Posted by codymanix at 11/24/2003 1:15:04 AM
Last night I had several thought about RAII and want to discuss a bit.
Why doesn't CSharp support destructors in structs? Wouldn't that make RAII
possible like in C++? When the struct goes out of scope, the dtor could be
immediately be called (no GC needed).
For that, you don't have to decla... more >>
|