|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
.NET Frameworkmicrosoft.public.dotnet.framework
Implemented interface methods are not available and do not show in Intellisense?
Dave -
25 Mar 2006 11:01 PM - 2 messages
I'm creating my own SortedList collection class that implements IDictionary, ICollection, and IEnumerable. The code compiles. I am writing a unit test to exercise it. I can create the object but none of the methods like Add are available. The only thing that shows in ...
VSTS Performance Explorer issues
Chris Mullins -
25 Mar 2006 10:50 PM - 2 messages
I'm trying to use the VSTS Profiler on a fairly large and complex .NET 2.0 application. In the past, I've always used the Compuware tools (especially the Community Edition of their profiler) and am in general quite familure ...
Question about generic IEnumerable
Dave -
25 Mar 2006 10:20 PM - 2 messages
Visual Studio won't give me the "implement interface option" when I do this: public class Dictionary<K,T> : IEnumerable<KeyValuePair<K,T>> but it does when I do this: public class Dictionary<K,T> : IEnumerable<K> ...
Serious bug in .NET framework 2.0 - IShellLink interface crashes
Elmue -
25 Mar 2006 11:44 AM - 20 messages
*Hello* I wrote an application which runs perfect under .NET framework 1.1. I was very disappointed, that a LOT of things do NOT work on *Framework 2.0*. This framework is NOT downward compatible. For one of the problems I could not yet find a solution or not even an ...
migration from asp: better client or server-side code?
Ben -
25 Mar 2006 9:15 AM - 9 messages
Hi, I made an application in classic asp (reservation of books and video stuffs for students) and want to migrate to asp.net. The user has to chose a date, then pushung on a submit button. The whole day is then displayed in cels of a table. The user has then to click in a cel ...
RemoveDirecoty
Thom Little -
24 Mar 2006 10:01 PM - 3 messages
Is there an example of the use of the 2.0 FTP RemoveDirectory ... anywhere? ...
Error adding to the OleDbParameterCollection object
glenn -
24 Mar 2006 7:54 PM - 3 messages
Thanks for any thoughts on this I receive the following error when I run the code snippet below: An OleDbParameter with ParameterName 'CateroryID_New' is not contained by this OleDbParameterCollection. Private Function CreateUpdateCommand() As System.Data.OleDb.OleDbCommand ...
Update function created using Web Matrix Code Wizard fails
glenn -
24 Mar 2006 7:45 PM - 1 message
Hello, I am using the Web Matrix Code Wizard's Update feature. I have a very simple user interface that has two textboxes. One is for a Name and the other is for a Description. I also have a dropdown listbox. I am working ...
2.0 Recompile
Arne Garvander -
24 Mar 2006 7:29 PM - 1 message
I am posting code into the app_Code directory, which doesn't seem to force a recompile. How can I force a recompile? ...
DataViewRowState returning bogus value ??
glenn -
24 Mar 2006 7:25 PM - 2 messages
In an attempt to update an Access database, I have DataViewRowState returning a value of 28 which is not in the properies list of values. Here is a code snippet: Dim cmdUpdate As System.Data.OleDb.OleDbCommand = ...
Uploading Files
Rob T -
24 Mar 2006 7:15 PM - 2 messages
I'm trying to figure out a way for a user to be able to select a file name (on their local hard drive) and upload it to a web server. That's the easy part...and I use a standard Input tag with a type=file. What I would like ...
Updating access database
glenn -
24 Mar 2006 7:00 PM - 3 messages
Thanks in advance for any help. I am using code that is directly from David Sceppa's book from MS Press titled "ADO.NET". I have walked completely though the code and I find values are what they should be until I reach the following subroutine. ...
Good introductory C++ .NET book, preferably for VS.NET 2005 (or 2003)
Wade -
24 Mar 2006 4:28 PM - 2 messages
Anyone have good suggestions? I have loads of experience with C# and VB.NET, but would like to make the transition to C++. Thanks! ...
Assembly Version
Arne Garvander -
24 Mar 2006 4:08 PM - 2 messages
In the 1.1 framework the assemly Version would optionally auto-increment. In the 2.0 framework the auto increment seems to be only available on one-touch deployment. How can I put auto-increment back on a non-one-touch assembly? ...
CounterSample & nextSample
Joe K -
24 Mar 2006 1:56 PM - 1 message
I need to produce the 5 minute average CPU utilization for a system (the average utilization over a 5 minute period). I found the below article that seems to do a reasonably complete job of explaining the differences between ...
My Project/Settings.settings
Søren M. Olesen -
24 Mar 2006 1:10 PM - 1 message
Hi In a Windows project you have a folder called 'My Project' with a Settings.settings file. However you don't have the same option for a Web project...how come? and how do you do something similar for a web project??? ...
Equivalent to VCL's DataModule
Edward Diener -
24 Mar 2006 1:05 PM - 11 messages
In Borland's VCL ( Visual Component Library ), one can use a DataModule into which one can drop non-visual components from the RAD designer. The DataModule is a design-time visual container for non-GUI components, which is never seen visually at run-time as a GUI control. An ...
UTF8 to UTF16 ?
PL -
24 Mar 2006 12:54 PM - 3 messages
I'm somewhat confused about Unicode but up until now I havent really seen much issues with using it up until recently. We recently started using an SMS gateway that requires a unicode message to be sent as a hexadecimal ...
Additional component to web service
Goodmannewz -
24 Mar 2006 12:13 PM - 2 messages
I post here is because there is no one answer my question(10 days ago) in "web service" news group. I am going to implement a program on the web service side. The program will work with the web services so that it can do some check on the data before ...
Remoting a collection class?
Microsoft -
24 Mar 2006 12:42 AM - 6 messages
I want to create a collection class (List or SortedList, etc) that is remotable (inherits MarshalByRefObject). Because C# doesn't support multiple class inheritance I can't just do this: public class Groups : List, MarshalByRefObject I know I can implement all of the collection interfaces myself but what a ...
Question Framework 1.1 & 2.0
Matías -
23 Mar 2006 7:15 PM - 4 messages
If I have installed both versions of the framework, can I say to may application use 1.1 or 2.0 or when I run the applicacion will use the higher version???? ...
HttpWebRequest / CookieContainer - not deleting cookies.
macro -
23 Mar 2006 7:10 PM - 1 message
when I use HttpWebRequest with CookieContainer object that handles cookies, if I have this cookie header in a response: Set-Cookie: CookieName=; path=/;expires=01-Jan-1999 00:00:00 GMT the cookie is not deleted for the next request, what should be and actually ...
Re: errors 1.1
Piotr -
23 Mar 2006 6:49 PM - 1 message
3. System.Drawing.Font.Width should be present. ...
Printing Anomily
Bryan Simmonds -
23 Mar 2006 2:51 PM - 1 message
Hi, I have a problem that I recently solved and thought I would throw it out to see if anyone can explain why I had to use the particular solution. I have an application that prints a series of numbers to any printer. It ...
.Net framework 2.0 and IIS
Good -
23 Mar 2006 1:50 PM - 5 messages
Dear all If I install the .Net framework in my IIS server? Are there any impact wil be affected to the current ASP application? Will it update the files for the current ASP component? regards Good ...
(paritially) trusted caller exception problem
Michael Schöller -
23 Mar 2006 11:07 AM - 1 message
Hi, I have created an simple example to show of my problem and hope that someone could help me. SecurityTest (Solution) +---SecTest (Project, Console Application) +---SecurityLib (Project, Library) +---SecurityLib2(Project, Library) SecTest (Referenz auf SecurityLib) macht nichts anderes als using System; ...
Help! OnClick event in VScrollBar in .Net Compact Framework
Cornel Gligan -
23 Mar 2006 11:06 AM - 2 messages
Hi! I tried to catch the Click event from a VScrollBar control but the Click event is not rised. MSDN says that OnClick event is suported by .Net Compact Framework and, in this case, I supose that the click event sould be rised bu ...
Creating simple exe that runs without framework?
Nenefta -
23 Mar 2006 10:54 AM - 10 messages
Hi all, probably a simple question for most of you: Can I create a simple executable with vb.net, that can run without the ..Net framework installed? (like any executable created with VB6 in the old days..) I would like to stay away from permissions, strong naming ...
clr error : 800700b
Liviu Uba -
23 Mar 2006 10:11 AM - 1 message
My machine: Windows XP sp2 Hi, I have Vs.net 2003 with .net 1.1 sp 1 I installed also vs.net 2005 Each tool from 2003 sdk shipped with vsnet: TlbImp, ResGen etc gave first an error:"Unable to find a version of runtime to run this ...
CodeDom AppDomain & AssemblyResolve event
richlm -
23 Mar 2006 9:18 AM - 1 message
I am using CodeDomProvider.CompileAssemblyFromSource to compile an assembly in memory. I would like to use the AppDomain AssemblyResolve event to help resolve references added via CompilerParameters.ReferencedAssemblies - but the compilation fails ("Metadata file ... could not be found") yet the ...
Ngen process during installation of .net framework 1.1
Sameeksha -
23 Mar 2006 4:04 AM - 1 message
Hi everyone, I have observed that the ngen process appears in the list of processes in taskmgr while .net framework 1.1 gets installed. This process consumes 0-50% of cpu and 0-20K of RAM. I would like to know if this process can be a cause of slowing down ...
Ngen process during installation of .net framework 1.1
Sameeksha -
23 Mar 2006 3:45 AM - 2 messages
Hi everyone, I have observed that the ngen process appears in the list of processes in taskmgr while .net framework 1.1 gets installed. This process consumes 0-50% of cpu and 0-20K of RAM. I would like to know if this process can be a cause of slowing down ...
How To Get Permission to Call File.SetAccessControl?
David White -
23 Mar 2006 1:57 AM - 1 message
My program needs to update the access control rules for a file (actually a virtual COMM port). I have the code working on my development machine. But when run on a different machine (or same machine with another account), it fails ...
Trusting Assemblies Problem
Stephen -
22 Mar 2006 11:14 PM - 1 message
Hi all, I have an issue with trusting assemblies, I have a console app and which I have transferred to a server and use a batch file to run the exe. I have figured out that I need to trust the .exe for it to run on the server. ...
Need 1.1 and 2?
oldandgrey -
22 Mar 2006 9:25 PM - 3 messages
I am only using dotnet for apps that we installed that need it. This is a dumb question but do we need both 1.1 and 2 or will just 2 do for our simple need? Sorry to be so stupid about it but never can't find an answer on the ...
RegisterAssembly, CreateComInstanceFrom and IsCOMObject
Corey Alix -
22 Mar 2006 8:08 PM - 4 messages
I am registering a managed class as a COM class via RegistrationServices.RegisterAssembly, then I am instantiating that class via CreateObject, then I am testing if the object is a COM instance via Type.IsCOMObject. Surprisingly (to me) the return value is False. ...
Know the version of the framework
Matías -
22 Mar 2006 6:33 PM - 3 messages
¿¿ Is there any liitle code or sentce in c# or VB to know the version of ASP.NET ??? ...
"unable to write data to transport connection" error
Rof -
22 Mar 2006 4:30 PM - 1 message
Hi everybody. Yes, I know there are a number of posts about this, but many of them have not been answered and of those that have been, I can't find one that exactly fits. I am working in vb.net using a TCPClient object and sending commands to ...
System.Configuration.Install.Installer and console
PIEBALD -
22 Mar 2006 4:05 PM - 4 messages
I have a Windows service exe that derives from System.Configuration.Install.Installer The exe can be executed from the command line with parameters such as INSTALL, UNINSTALL, START, and STOP to perform such tasks on the service But the exe is also the exe that _is_ the service process, so when it's run ...
Copying a flash mem card, including boot sector.
David -
22 Mar 2006 3:09 PM - 3 messages
Is there a .NET framework call that will make an exact copy of the contents of a disk, including the boot sector if there is one? What I have is a Windows CE device that boots from a compact flash card. ...
Using ManualResetEvent within a ContextBoundObject
Amir Shitrit -
22 Mar 2006 2:50 PM - 2 messages
For some reason, I tried to create an instance of the ManualResetEvent class from the constructor of a class that derives from ContextBoundObject (for automatic synchronization purposes), and after the call to "new ManualResetEvent(false)" the watch window shows "undefied value" / null for ...
Loading method on runtime
Sudhee -
22 Mar 2006 2:01 PM - 4 messages
I am storing method names in one xml file , on run time i read method name for ex class1.Method1 , I want invoke this method is there any facility in system.reflection to load the methods like we load assemblies using ...
INSERTing long TEXTs into MSSQL 8.00.2039
martin -
22 Mar 2006 11:44 AM - 4 messages
Hi, I have a table with columns of types datetime, varchar, text, text, text, text. The text columns will contain XML documents, there is no primary key in the table but they varchar column contains foreign keys. If I insert trivial text values like "hello" everything works fine but when ...
callback supplied to Socket.BeginSend never gets called
Dmitry -
22 Mar 2006 10:28 AM - 2 messages
I’m having troubles with socket async operations using .NET 2.0. Sometimes a callback supplied to Socket.BeginSend never gets called. I suspect this can be caused by AVG Antivirus or MS AntiSpyware running on the PC, because if I ...
Generic Lists Desing Issue
medo -
22 Mar 2006 10:01 AM - 3 messages
Generic Lists are great! But I think you missed a opportunity. Here is my problem. I made a Collection "Family: List<Person> " which will contain 'Family'. I wanted to override the Add method so you can only add persons whose Parents or Childeren are already in the list, but the ...
C# code needed to open the windows "Open with" dialog
Shilpa -
22 Mar 2006 9:02 AM - 3 messages
Hi All, I need C# code needed to open the windows "Open with" dialog Regards, Shilpa ...
Threading problem in local COM server
Jeroen ter Hofstede -
22 Mar 2006 9:00 AM - 1 message
We have defined a COM object in C# on the .Net platform (v2.0.50727) in an out-of-process server (.exe). This COM object, in one of its methods, creates a WebBrowser control (AxSHDocVw.AxWebBrowser). The main application can successfully create an instance of this object, ...
Decimal/Single/...: which Numeric-type to use?
Pieter -
22 Mar 2006 8:43 AM - 11 messages
Hi, I'm having some troubles with my numeric-types in my VB.NET 2005 application, together with a SQL Server 2000. - I first used Single in my application, and Decimal in my database. But a Single with value 4.475 was converted to a Decimal with value ...
for some reason when i deploy my C# application on windows 2003 occasionaly rdr[0].ToString() hangs
Daniel -
22 Mar 2006 7:36 AM - 2 messages
for some reason when i deploy my C# application on windows 2003 occasionaly rdr[0].ToString() hangs where rdr is a System.Data.SqlClient.SqlDataReader. Is there a fix for this? is my visual studio.net out dated? ...
WebRequest & proxy problem
Lloyd Dupont -
22 Mar 2006 6:44 AM - 6 messages
In my auto-update code I donwload some files from the net with a WebRequest. Some people having a proxy server reported problems. IN a previous application I set the WebRequest wr = ....; wr.Proxy = WebProxy.GetDefaultProxy(); Which read proxy info from internet explorer. Great, exactly what I want. ...
are System.Data.SqlClient.SqlConnection thread safe? can many threads share a System.Data.SqlClient.
Daniel -
22 Mar 2006 5:58 AM - 6 messages
are System.Data.SqlClient.SqlConnection thread safe? can many threads share a System.Data.SqlClient.SqlConnection instance without any synchronization? ...
C# code to open a windows directory
Shilpa -
22 Mar 2006 5:45 AM - 3 messages
Hi All, I need the C# code to open a windows directory. Regards, Shilpa ...
Process.Start() throws an error saying "Setup error: failed to load resources from resource file Ple
Vijaya P Krishna -
22 Mar 2006 5:32 AM - 6 messages
Hi, I have a .NET Windows Forms application, written in VB.NET and C#. [.NET runtime version: 1.0; Operating System: Windows XP.] I am opening a URL from the application using Process.Start(). The URL points to a java servlet running on apache-tomcat. ...
Identify a file type and open the file
Shilpa -
22 Mar 2006 5:19 AM - 3 messages
Hi All, I want to write C# code to identify a file type and open the file in the associated editor. For example, text files should be identified and opened in notepad, html should be opened in internet explorer/netscape/mozilla. ...
Page state on postback
bdgreen -
22 Mar 2006 4:03 AM - 1 message
Hi, This is a pretty straightforward question about postback, etc. in C# ASP.NET. I have 3 DropDownLists, each is bound to a SQL DataTable, created from 3 SQL queries. If the user makes a selection from a DropDownList, an ...
Can't cancel the validation when the control lost focus to a userc
Dikhi -
22 Mar 2006 12:49 AM - 2 messages
I have problem with a control when its causesValidation property is set to true. It is actually happens in .NET Framework 1.1. When I lost focus from this control to another control within a user control by clicking the target control, I can't really cancel the validating event. ...
NetworkStream with CryptoStream help
Andre Azevedo -
22 Mar 2006 12:41 AM - 1 message
Hi all, I've some problems using NetworkStream with CryptoStream. I create a simple server/client projects and I think the problem is in cryptoStream. If the server sends data using networkStream, the data is sended. But if the server sends data with cryptoStream the send process stops because it needs ...
Dynamically Determining an Objects Property
Karl Pierburg -
21 Mar 2006 10:51 PM - 4 messages
I have an object with 30+ exposed properties. How can I, based on a string input, retrieve the value of a specific property? Here's what I'm doing right now: Function GetField(ByVal FieldName as String) as String ...
Overriding generic methods - compiler hides wrong method
Headhunter -
21 Mar 2006 10:26 PM - 1 message
I think there is a problem with the compiler when overriding a generic method in an inherited class. I have a base class with a non-generic method "Foo(string arg)" and a generic method "Foo<T>(T arg)" (identical names). ...
Overlaping structure
Michael Schöller -
21 Mar 2006 10:23 PM - 9 messages
Hello, I have an little problem and need an helping hand. I want like in C++ create an Array and cast it to a struct, for easy access. Well that didn't work, so I take a look on the Attributes that can be used ...
DataGrid on Update does not pass back values via e.Item.Cells[]
davidjgonzalez -
21 Mar 2006 10:14 PM - 1 message
I am creating a generic DataSet update interface in VS 2003/ASP .NET. I have an DataGrid that has AutoGenerateColumns = true and set whatever DataSet i was to modify as the DataGrid.DataSource. Viewing, Editing and Cancelling work, Updating values after an Edit ...
GSSAPI bindings for C#/.NET
Ian -
21 Mar 2006 8:55 PM - 1 message
All, I was able to find an IETF document proposing some specifications for GSSAPI C# bindings ([link]), but I was unable to find any suitable implementation. The goal is to ...
Viewing Data from a DataSet
glenn -
21 Mar 2006 8:29 PM - 2 messages
Hello, I have a DataSet that was returned to me by a QueryMethod( ). I have drilled down to the column level as follows: Dim ds As System.Data.DataSet ...
Does clickonce work well? Any disadvantages?
johngilmer -
21 Mar 2006 8:10 PM - 1 message
We have an ASP.NET web application that gets installed on a server in a hospital and then any computer throughout the hospital's network can access the application. I prefer Winforms applications to ASP.NET, so I am thinking that we should replace our current one with a Winforms ...
Different execution behavior between .Net1.1 and .Net2.0
Winista -
21 Mar 2006 6:35 PM - 1 message
I have a library that reads PDF file and manipilates its content. And I use SharpZip library to decompress the streams included in PDF file. All well and good. I have 3 lines of my test code that takes a PDF file and spits out ...
Interview Questions March 21, 2006
Jobs -
21 Mar 2006 5:43 PM - 1 message
Web services and Remoting Interview questions [link] Database optimization interview questions [link] ..NET Basic frame work interview questions [link] ...
Regex help
Bryan Young -
21 Mar 2006 3:25 PM - 2 messages
I want to generate a usable filename (no path, drive letter, or extension) from strings from various sources (dates, database fields, user entry, etc). I'm trying to use the following line and regex to replace any invalid characters with an empty string. However, it doesn't work. I've tested the ...
How to disable IpV6 in Windows Mobile 2005
teo -
21 Mar 2006 3:07 PM - 2 messages
I know this is not the correct group for this question, but i could not find any one that was suitable. Anyway my question is how do I disable IpV6 support in a Windows Mobile 2005 device (and in WinCE 5.0 in general)? ...
CppCodeProvider.dll CompileAssemblyFromSource() throws a "not implemented"
sygnosys -
21 Mar 2006 2:05 PM - 1 message
Hi, I'm using CppCodeProvider.dll in a CLI/C++ application and I simply can't make it work with CompileAssemblyFromSource() or any other functions. Is there something special for C++ that I need to do that I don't need ...
How do I add existing visual Item to a project
tony -
21 Mar 2006 1:26 PM - 1 message
Hello!! Normally I use C# but we have a project that is creating a window control library DLL that is done in C++.NET and that is here I have some problems that I want to solve. To be able to understand my question fully, I do the following. ...
Problem with custom collections.
Wade -
21 Mar 2006 6:29 AM - 2 messages
Hi, I have used the collectionbase to create two different collections. One various button clicks, I add values into these collections. I'm having a problem, though, for as soon as I add more than one item to the collection, ...
compiling C code at runtime
Riya -
21 Mar 2006 3:23 AM - 1 message
I am generating a C code in my application which I save as a file. I need to compile, execute, the code and display errors if any at runtime. How can I do it in VIsual Studio.Net? I found some clue in CodeCompiler ...
VbScript Function to encode into base64 compatible with .NET function System.Convert.FromBase64Strin
abarberis -
20 Mar 2006 11:15 PM - 2 messages
I am using the following code to convert a byte array in vbscript which is passed to a web service: Function ByteArray2Text(varByteArray) 'Convert byte array into a string with VBScript '60kb = 2 seconds, 100kb = 5 seconds, 200kb = 25 seconds ...
Reflection getting MissingMethodException
brian.gabriel -
20 Mar 2006 10:27 PM - 3 messages
I am trying to use reflection to dynamically call a method. I have an "interface" object that is inherited by the object that I am trying to invoke. The interface object contains virtual methods that throw a custom NotImplemented exception. The actual class overrides these ...
Adding Data Source Error: Key Not Valid For Use In Specified State
Mike Livenspargar -
20 Mar 2006 9:31 PM - 4 messages
I'm getting the following error when trying to add a Data Source to a brand new project: "Key not valid for use in specified state". I've created a new Windows Application project. I go to the Data menu and choose 'Add New Data ...
FTP with VS 2005
Steve Smith -
20 Mar 2006 7:34 PM - 1 message
Does anyone know if the FTP support added in .net 2.0 supports the SITE command? If it does a sample of how to use it would be grately appreciated ...
programming a Datalist
sameer -
20 Mar 2006 4:59 PM - 2 messages
Hi All, Environment: ASP.Net , framework 1.1, VS2003. Database: Sql server 2000 I have an MS DATALIST which has Item Templates, show the image and the price right next to the "PRICE" text. the image name and the Price is being ...
System.UnauthorizedAccessException
Arne Garvander -
20 Mar 2006 3:41 PM - 1 message
I have unsuccesfully tried to change the security on IIS 5.1 on my localhost. I get Access to the path 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\transportation\fe5df251\37e5063e\hash.web' is denied. ...
Where to report a .net 2.0 x64 bug?
CyberWatcher Developer -
20 Mar 2006 3:07 PM - 2 messages
I have made a test project with about 150 lines of code which causes a ‘System.AccessViolationException’ when run on an x64 bit system. It’s the combination of UTF8Encoding.UTF8.GetBytes, UTF8Encoding.UTF8.GetString, and a BinarySearch which trigger the bug. ...
XslTransform
Josef Dvorak -
20 Mar 2006 3:06 PM - 1 message
Hi I have issu with XslTransform on .NET 1.1 SP1. I generate XML (from dataSet), then make XslTransform (really simple - just getting values and formating of outpup) and this transformation made 100% CPU utilization for long time (hours) and than it fails (exception). ...
SqlXml and XmlNode
Roy -
20 Mar 2006 3:02 PM - 1 message
How to convert SqlXml from/to XmlNode (or XmlElement)? ...
How do I tell if I'm in Console or Web application?
Mowie_X -
20 Mar 2006 2:35 PM - 3 messages
Hi, How do I tell from within code whether or not I'm in a web or console application? I need to know because it determines which config file I am going to access. There has to be a way via AppDomain or Environment, but I'm just not ...
Ink
mshawjr -
20 Mar 2006 12:26 PM - 1 message
Sorry guys. The spam stuff was not my intent. I do oppoligies and won't happen again. I have never been on newsgroups before and not sure how to work them. I hope you guys can forgive a bad choice. Murphey ...
Wrong size when restoring form that has no WS_DLGFRAME style flag set
Martin.Hallerdal -
20 Mar 2006 12:23 PM - 5 messages
Hello, I have a form that I don't want to display the title bar for. The way I've implemented this is to to remove the WS_DLGFRAME style flag. However, when this form is minimized and then restored, it is restored ...
Programmatic access to FTP file download/upload.
Subrata -
20 Mar 2006 11:17 AM - 2 messages
hi, Is there any FTP support provided in the .NET framework libraries (v 1.1)? I have a .NET application running as Windows Service that needs to download a file from a FTP location programmatically. Also, the application ...
executing code upon assembly loaded
z f -
20 Mar 2006 9:18 AM - 2 messages
in a Class Library C# project i make classes and methods public so it can be called from external module. in C++ / Win32 a DLL have a DLLMAIN procedure that is being called when the DLL is loaded. In a Class Library C# can I have something similar to that? ...
Facing problem while using Wizards with Project Templates !!!!!
Anubhav Jain -
20 Mar 2006 9:16 AM - 1 message
Hi, I want to add the Wizard in the Project templates. I have followed all the steps mentioned in the msdn( [link](VS.80).aspx). But while creating the project from the template I am not getting the required wizard window. I am able to create the project without getting the wizard window. ...
ConfigurationManager headache
Mowie_X -
19 Mar 2006 11:23 PM - 1 message
Hi there, I am trying to share connection strings amongst multiple console applications in the new 2.0 environment. I see that there is the new ConfigurationManager.ConnectionStrings to handle this, which requires <connectionStrings> .. </connectionStrings> element. ...
No joy implementing IInternetSecurityManager -- any sample code?
DavidB -
19 Mar 2006 1:26 PM - 2 messages
Having (laboriously) implemented IInternetSecurityManager in response to WebBrowser.WebBrowserSite.IServiceProvider.QueryService, I now find that (a) only GetSecurityID() and MapUrlToZone() get called, and (b) nothing they return does anything useful. Return bad stuff and the WebBrowser control can no longer navigate anywhere. Return anything valid and what you actually ...
Did I buy obsolete book?
SB -
19 Mar 2006 8:41 AM - 2 messages
Help, I just bought "Applied Microsoft .NET Framework Programming" (0735614229) only a month ago, and found out that the second edition of this book, titled "CLR via C#" is now available. I don't think Amazon will take the book back, so is my brand new, but old ...
Can you sell .NET technology? Know of any sales Leads?
mike.mcnulty -
19 Mar 2006 7:08 AM - 2 messages
Can you sell .NET technology? Know of any sales Leads? Canadian-based IT consulting firm, specializing in implementing Microsoft .NET technologies, seeks individuals for commission referral-based leads. We are looking for individuals that may have access to people who are ...
Problems With Struct
David White -
19 Mar 2006 3:15 AM - 2 messages
I have the following structure. I need to create a pointer to it for calling the Windows API. When I try, I get an error. I have found that the String is the culprit. In the C declaration for this structure, the String is shown as ...
¤ China ZhongZhan Aids Mei Mei
enlamasperm -
19 Mar 2006 2:15 AM - 1 message
Killer! [link] el***@digi-art.de ...
¤ China ZhongZhan Aids Mei Mei
enlamasperm -
19 Mar 2006 2:15 AM - 1 message
Killer! [link] el***@digi-art.de ...
|
|||||||||||||||||||||||