Home All Groups Group Topic Archive Search About

.NET Framework

microsoft.public.dotnet.framework
Score Readonly Property of type collection
vikrantca - 12 Mar 2005 9:39 PM - 5 messages
Hello, Iam writing an interface in c# , where two of the methods look like this - ParameterCollection DependentProperties {get;} ParameterCollection IndependentProperties {get;} ParameterCollection = stronly typed collection of MyParameter objects. MyParameter is a class with 3 string and 3 double properties. I dont want the user to modify the DependentProperties collection, so I make ...
Score Application Level Events
thechaosengine - 12 Mar 2005 6:08 PM - 2 messages
Hi Everyone, In asp.net you have the Global.asax file that allows you to handle and exceptions that have slipped through the net in your code. It also allows you to handle application level events in a central place. ...
Score .Net 2.0 release
Nitin - 12 Mar 2005 12:14 PM - 6 messages
When is Dot Net 2.0 actually releasing I've been using its beta version for quite a while. Regards Nitin ...
Score ASP.net application error
Laszlo Csabi - 12 Mar 2005 1:17 AM - 2 messages
Hi folks, I got a strange error message on an IIS 6 Win 2003 server. The error is the following : It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application ...
Score c# max enum value
Keith Harris - 11 Mar 2005 10:47 PM - 12 messages
Hi, Is there a way (short of looping through every value) to determine the maximum value of an enum? So if I have this enum: enum GradeLevel: byte {   Unknown = 0,   GradePreK = 1,   GradeK = 2,   Grade1 = 3, ...
Score Memory barriers, etc.
WXS - 11 Mar 2005 9:03 PM - 2 messages
Certainly it is clear when not using locking constructs if you don't use a volatile keyword for variable access and you loop on the variable and check it's value, you may be looking at the register value and not the actual value ...
Score How to release the file handle when FileStream.Close() throws?
joel - 11 Mar 2005 4:43 PM - 3 messages
Hi, I have a problem that seems to be a bug in the .NET Framework.  If I create a new FileStream on a media that has limited disk space (I use a diskette to simulate the problem), the FileStream is effectively created.  Small (smaller ...
Score override sort method
Marty U. - 11 Mar 2005 4:11 PM - 3 messages
Can someone look at the code below and tell me why if I try compiling this it tells me there is no sort method to override? I did not paste the actual comparer classes. It acts as if it does not see the sort method of the ...
Score I don't know where to ask this security question
nobody - 11 Mar 2005 4:02 PM - 4 messages
Is there any known crack to break msi files? I mean, get individual files from an msi pack? I AM A PROGRAMMER, NOT A PIRATE! Thanks in advance for taking your time. A programmer trying to make his living. ...
Score how .net answers to RIA?
angus - 11 Mar 2005 4:01 PM - 2 messages
Hi all, I would like to ask how .net answers to RIA? ...
Score How to create an "Desktop Taskbar Application"
A. Dionne - 11 Mar 2005 3:59 PM - 2 messages
Hi, I would like to know if it's still possible on Windows 2000 or XP to create a "Desktop Taskbar Application" (An application who attach it-self to the edges of the Desktop screen) in VB.NET or C# ...
Score reversing an MD5 hash code
Grant Merwitz - 11 Mar 2005 1:40 PM - 3 messages
I am using a MD5 hash code to encrypt passwords Is it possible to reverse this type of hash code? ...
Score Should I store Graphics object ?
Sanjay - 11 Mar 2005 12:34 PM - 13 messages
hi, We are currently porting our project from VB6 to VB .NET. Earlier we used to make scale transformations on objects like pictureBox , forms etc.Now Such transformations are made on the graphics object of the form/pictureBox. Should It be better if make a graphics object from my pictureBox in load ...
Score F1
Julia - 11 Mar 2005 10:11 AM - 3 messages
Hi, when I am trying to user F1 from Visula Studio it doesnt work.  The message I get is "please insert the disc labeled "MSDN Library - January 2005 DVD Disk 1" into drive E:\". I can start the help from C:\Program Files\Common Files\Microsoft ...
Score OnSessionEnding(object sender, SessionEndingEventArgs e) fails
Waqar - 10 Mar 2005 8:33 PM - 2 messages
hi, I have a windows form that when it closes it simply hides itself in combination for a notify icon to reactivate it again - like Microsoft messenger. You have to specifically exit the application by right clicking on the NotifyIcon and selecting Exit from it's context menu. ...
Score crystal report export function
Jasmine - 10 Mar 2005 7:37 PM - 2 messages
Hi, I try to generate a "pdf" file in my local direction using following code   "  ExportOptions expOptions = new ExportOptions();             expOptions = crReportDocument.ExportOptions;             expOptions.ExportDestinationType = ExportDestinationType.DiskFile; ...
Score System.Reflection
JV - 10 Mar 2005 6:43 PM - 7 messages
Is there a way to determine that an assembly is running under an ASP.NET web application as opposed to a Windows application? For example, in an ASP.NET application if I call Assembly.GetExecutingAssembly(), can I determine that the current assembly ...
Score Strong Typing of Primitive Types
DavidNJ - 10 Mar 2005 6:25 PM - 3 messages
We would like to create strong types to provide more compile time error control. For example we would like salary to be from a salary class, temperature to be from a temperature class, age to be from an age class, etc. ...
Score How to dynamically load strong name assemblies
lanky_tx - 10 Mar 2005 4:40 PM - 4 messages
Hi All, We have an automated build and test environment using NAnt and Nunit. Some of our assemblies are being strong named by modifying the AssemblyInfo.cs and having csc compile it.  Some of these strong named assemblies are being dynamically loaded into the runtime.  We store the ...
Score Checking whether "SomeString" is Directory or File...
Kerem Gümrükcü - 10 Mar 2005 1:43 PM - 2 messages
Hi, how can i find out, whether a given string specifies a Path or a file... System.IO.File.Exist(UnknownString) does not work for my application. i exactly need to know if the strng is a path or a file... ...
Score Events & Delegates
Amir Shitrit - 10 Mar 2005 11:41 AM - 4 messages
What's the different between an event and a delegate? ...
Score streamreader halt
Guoqi Zheng - 10 Mar 2005 10:46 AM - 2 messages
Dear sir, I am using streamreader to read and process some text file. Some times, those text file contains special characters such as Chinese. StreamReader will halt when reading those special characters.  Does some one know what happen? Here is what I used. ...
Score simple confirmation on XML comments ...
Romain TAILLANDIER - 10 Mar 2005 10:12 AM - 3 messages
Hi group Can you confirm that it is impossible to make automatic documentation with XML comments in VB.net ?? thanks ROM ...
Score C# Class called from Delphi using COM
ProfAKA - 10 Mar 2005 7:53 AM - 3 messages
[Message not available] ...
Score Process.Start - The requested lookup key was not found in any active activation context.
Paul Aspinall - 10 Mar 2005 7:35 AM - 2 messages
Hi I occassionally get the error: The requested lookup key was not found in any active activation context when I try to use Process.Start Having done a search for this, it seems others have had the problem also, but I have yet to find a solution or workaround. ...
Score Protecting Assembly against disassembling...
Kerem Gümrükcü - 10 Mar 2005 5:30 AM - 3 messages
Hi, how can i protect a assembly against disassembling with ILDASM and other products like that. i have a dll with some encryption methods implemented and i dont want them to be exposed, to the outside of the world. of cource there are restrictions like modifiers and misc. ...
Score How to disable .NET Framework 2.0
cody - 10 Mar 2005 4:02 AM - 4 messages
How can I disable .NET Framework 2.0 in WindowsXP without uninstalling it? That means I want all .NET applications run with .NET Framework 1.1 per default because I have some trouble with 2.0 because is lets my PC freeze ...
Score Coding standard question: using directive & namespace
Keith Patrick - 9 Mar 2005 8:43 PM - 3 messages
There's a relatively recent coding guideline that Brad Abrams posted: "Using statements should be inside the namespace declaration." No explanation was given, and the only MS code that I've seen that actually does that is wizard-generated ASP.Net UserControl code.  Does anyone know ...
Score AssemblyInfo - Setting some properties using static class
Dr. Paul Caesar - CoullByte (UK) Limited - 9 Mar 2005 8:43 PM - 8 messages
Hi, I have got a massive project built under c#. Needing to make massive changes as a result to one of the AssemblyInfo attributes. How is it possible to  to set the AssemblyCompany by using a static class? I tried: ...
Score Process.Start - The requested lookup key was not found in any active activation context
Paul Aspinall - 9 Mar 2005 8:29 PM - 2 messages
Hi I occassionally get the error: The requested lookup key was not found in any active activation context when I try to use Process.Start Having done a search for this, it seems others have had the problem also, but I have yet to find a solution or workaround. ...
Score LateBinding
SSI Developer - 9 Mar 2005 8:27 PM - 3 messages
I'm trying to use late binding for Outlook automation.  I am trying 2 methods.  One using VB.NET's Option Strict Off and the other using System.Runtime.InteropServices and System.Reflection Option Strict Off .... Dim outlook as Object = CreateObject("Outlook.Application") ...
Score Registry permissions revisited
mfdatsw1 - 9 Mar 2005 5:27 PM - 2 messages
I have read numerous messages that state (or imply) that permissions to manipulate registry entries cannot be managed from .NET code. (I have a requirement to check and possibly modify the SQL Server LoginMode key for my application to work, and this key's permission is only granted to ...
Score 2 versions of assembly in GAC
grhum - 9 Mar 2005 5:13 PM - 6 messages
Hi everybody, I installed 2 versions of an assembly in the GAC. The first: version 1.0.0.0 and the second: version 2.0.0.0 When I launch my web application, this one use the first version of my ...
Score Install to Target Machines System32 folder
jaxjon - 9 Mar 2005 2:37 PM - 4 messages
I would like to know the way to install a file to the users Target Machines System32 folder, without prompting the user using VS.net 2003, Visual Studios.net Installer, and VB.net language. I would like to know how to get ...
Score versioning
Wilco - 9 Mar 2005 2:11 PM - 9 messages
what is the best way for versioning your applications? when becomes application 1.1.0.1 application 2.0.0.0 or something? (also working with database) ...
Score override GetHashCode
Stoyan - 9 Mar 2005 12:47 PM - 2 messages
Hi All, I don't understand very well this part of MSDN: "Derived classes that override GetHashCode must also override Equals to guarantee that two objects considered equal have the same hash code; otherwise, Hashtable might not work correctly." Does any one know, why we must also override Equals, ...
Score Visual Style not appears
Thomas - 9 Mar 2005 9:27 AM - 4 messages
I have a simple application which uses a manifest to enable XP styles. It works on one system without problems but on a second system the application runs but not style appears. The only differnce is, that system two uses WinXP ...
Score Re: Modify registry with vb.net
scott - 9 Mar 2005 8:29 AM - 2 messages
I use vc++.net and I have the same question. I don't know how to passing in an integer value. Should I use System::Int32 type ? And how ? I have tried many casting methods and  failed. ...
Score .NET : SDK Version 1.1 & Redistributable Package
Yammy - 9 Mar 2005 5:15 AM - 2 messages
I don't understand what is the difference in usages of installing "Microsoft .NET Framework Version 1.1 Redistributable Package" and ".NET Framework SDK Version 1.1" . Thanks. P.S. : Download Redistributable : [link] ...
Score Receive block forever for UDPClient Class
Richard - 9 Mar 2005 4:31 AM - 4 messages
As I know, Receive method will block "forever" if no respond for UDPClient Class by default, this is not what I want. I would like it to block for "timeout", (10 sec. for example), any way? Thanks. -Richard ...
Score DataTable.TableName returns "Table"??
Antonio Ooi - 9 Mar 2005 3:52 AM - 4 messages
Hi, I get a DataTable based on this simple query: SELECT * FROM Customers Later, I want to know just the table name because I do not want to play with the string within the SELECT statement. I expect DataTable.TableName to give ...
Score XP Logo missing
BADBOY - 9 Mar 2005 12:51 AM - 3 messages
Content-Type: text/plain;     charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable ...
Score Oracle Reference Cursors using Enterprise Library
Horst - 9 Mar 2005 12:11 AM - 5 messages
I'm trying to use the Enterprise Library to return result sets from Oracle using a package which returns a reference cursor. While this works outside the Library using the OracleClient namespace objects directly, I can't get it to work inside the library. Package access doesn't seem to work at all. ...
Score Removing the xsd + xsi namespaces added during Serialization
Robert Magnusson - 9 Mar 2005 12:11 AM - 2 messages
Hi all, I have put together a serializable object used to maintain the Web.config file and am having trouble because the Serialization process adds xsd and xsi namespaces to the root element.  This causes the web-site to crash. ...
Score BinaryWriter.Write() adding extra bytes?
ksmith - 8 Mar 2005 9:33 PM - 2 messages
Hello, I am writing a binary file using C# and then reading it using eVC++ but I am running into a few oddities which I notice when hex editing the file created by C#. Here’s one thing I’ve noticed. When using the following code I would expect ...
Score Configuration Information?
Iguana Frank - 8 Mar 2005 7:59 PM - 4 messages
Is there a standard/recommended way of handling config info for an application. My vb.net app needs to know a couple of things, but the biggest is where to store the log file.  I use the app's directory by default, but would like the ...
Score Big Problem on SQL Server link to Web Services
Wong CS - 8 Mar 2005 6:30 PM - 2 messages
Dear developers, i hav face a big problem on connect my web services to my DB. i m using MS SQL Server 2000 to build the web services.. but i cannot invoke the input into the database and "HTTP 500 - Internal server error" on the IE. ...
Score GetTickCount call in Framework
Joshua Ellul - 8 Mar 2005 3:54 PM - 4 messages
Hi, Could someone tell me if there is a version of the GetTickCount api in the ..NET framework? Regards, Joshua ...
Score Memory Leak in System.Timers.Timer?
Iguana Frank - 8 Mar 2005 3:31 PM - 4 messages
Hi, I made a Windows Service in VS.Net 2003 with VB.  I've included the main code, there's some other code, but it's rem'ed out and essentially just a timer running here.  I'm trying to run something at 5:20 every day.  I caught ...
Score OpenFileDialog error when selecting more than 1 file on a Camera
Ender - 8 Mar 2005 1:59 PM - 2 messages
Hello, I get the infamous 'Too many files selected' error using the OpenFileDialog with multiselect, only, I'm just selecting 2 files!!!! These files are located on a digital camera connected through USB and a WIA driver (not the MSC driver as this locks the camera). Windows explorer allows ...
Score vs.net installation problem on amd64
atul - 8 Mar 2005 12:37 PM - 6 messages
Hi , I am trying to install visual studio on my machine and my machine get hang and installation fails everytime. Can any body tell me are there any issues with vs.net 2003 and amd 64 Please it will really be helpfull ...
Score Registry Error "Access to the Registry Key HKEY_LOCAL..\. is denie
Neal - 8 Mar 2005 12:13 PM - 7 messages
I am attempting to write an encrypted password to the Registry, from a VB ASP.Net App and similarly read it in a Webservice . I have tried the RegistryPermissions code etc from the MSDN help,             Dim f As New ...
Score Attaching a .NET event in vb6
Joshua Ellul - 8 Mar 2005 11:12 AM - 2 messages
Hi, I have written a type library using .NET.  I am using this library in VB6 and I need to know how to attach a procedure to an event. Regards, Joshua ...
Score Periodic problem in InitializeComponent of modal form with a forms.timer
Stephen Rice - 8 Mar 2005 10:06 AM - 9 messages
Hi, I have a periodic problem which I am having a real time trying to sort. Background: An MDI VB app with a DB on SQL 2000. I have wrapped all the DB access into an object which spawns a thread to ...
Score .NET PDF Class
wdewebserver - 8 Mar 2005 9:41 AM - 3 messages
Hi Anyone know where I can find a .NET PDF class or sdk? I need to create PDF documents from ASP.NET but don't have the money  to buy off-the-shelf products. TIA ...
Score reports
Julia - 8 Mar 2005 8:37 AM - 3 messages
Hi, I'm developing a web application for a company. We are using asp.net and sql server 2000. Can someone tell me how to create a nice report? The user of the application can fill in some choice on the web page and from the choice we want to make a ...
Score Retrieve list of roles and users from Active Directory...
Sharon McCarty - 8 Mar 2005 12:05 AM - 4 messages
Hi There, I'm a complete newbie.  I'm wondering if it's possible in C# to retrieve the complete list of roles in Active Directory and also a complete list of all users from active directory.  I've looked in the ...
Score Shutting down child processes started using System.Diagnostic.Process
Lloyd Gomes via .NET 247 - 7 Mar 2005 11:33 PM - 2 messages
I have searched extensively and not found anything on how to do this. The prolem is as follows. I have a console application that launches some command line utilities  using the System.Diagnostic.Process class. Basically I want to just kill any of these child processes if the parent/controlling app dies. I have tried everything suggested including things like implementing the IDisposable interface but nothing seems to work basically i need to terminate all child processes as soon as the parent dies. Any suggestions? ...
Score where is ildasm?
Al_change_little_to_big - 7 Mar 2005 9:40 PM - 6 messages
I've got Visual C# 2005 express edition (beta) does anyone know where (or if) ildasm and dotfuscator are on the CD? If they're not on the CD where can I get them from, please don't suggest a ...
Score Type.GetType returns null for HybridDictionary
Salim Ansari via .NET 247 - 7 Mar 2005 7:30 PM - 2 messages
Hi All, i am using custom de-serialization and custom binder and in that i need to get type of the typeName passed. I am using Type.GetType. It works well for everything except HybridDictionary. Its not able to load the type for HybridDictionary. ...
Score Please help me in my 1.4 framework
John Gaspar Antonio via .NET 247 - 7 Mar 2005 7:29 PM - 3 messages
Hello, Is there any idea on how can I fix my problem, because we have a application here when I'm using framework 1.0 the forms is ok, but when I install framework 1.4 some of the forms in asp.net is freezing and sometimes its hangs up, freezing and forced to be ended by the task manager and when I check my task bar its eats up my memmory in my pc, Please help me to solve this. Has anyone run into similar problem? ...
Score How to find thread id of a .Net thread?
Jag Andy via .NET 247 - 7 Mar 2005 7:28 PM - 2 messages
Hi, Iam trying to monitor the CPU usage of all the threads running in my application using perfmon. All threads are created using new Thread(ThreadStart). Perfmon gives the thread id and the CPU usage of the threads. But i need to exactly trace at the code level and find which are the threads that are taking excessive CPU time. I want to find out a way to get the thread id so that i can log the thread id when it is created. And then i can compare the thread ids displayed in perfmon. But Thread object does not seem to expose thread id. Kindly suggest me a solution. ...
Score Can't load my .dll for my custom control in ASP .Net
Sam Land via .NET 247 - 7 Mar 2005 7:26 PM - 2 messages
I'm trying to impliment a custom control in my ASP .Net application. My .aspx file can't seem to find the control .dll. From all the instructions I can find on the net, you do the following: 1. Create a .cs file with a public class that inherits from the Control class like this: ...
Score sort using dataview
laxminarain arora via .NET 247 - 7 Mar 2005 7:21 PM - 2 messages
This is my code...I am trying to sort data in a  data grid..... It is giving me Object reference not set to an instance of an object. error public void Page_Load(object sender, System.EventArgs e)         { ...
Score Running .NET 2.0 applications on .NET 1.1. Is it possible?
L Poppan - 7 Mar 2005 7:19 PM - 3 messages
It's possible to run applications generated for .NET 1.1 on .NET 1.0 by using the <supportedRuntime> and <assemblyBinding> tags.  When I try to use a similar technique to run an application generated for ...
Score C# Very Odd Behavior - "failed to load resources from resource file"
Stephen Johns via .NET 247 - 7 Mar 2005 7:18 PM - 2 messages
have 3 C# applications that run as a group.  If I run each of these applications individually, they all start fine.  If I have a batch file that starts each of them quickly, on *most* machines all three run ...
Score Very strange problem with StackTrace
FG via .NET 247 - 7 Mar 2005 7:13 PM - 2 messages
Hello all, I have a very strange problem in a Windows Application project (with 8 satellite assemblies). I have some data classes having this kind of property block:       Public Property Name() As String          Get ...
Score Getting a methods summary info with code
JP Pollak via .NET 247 - 7 Mar 2005 7:09 PM - 2 messages
Hi All, I am building a dynamic properties window similar to that found in Visual Studio. Using reflection I have been able to display all of the properties and methods for any of my objects or classes. What I would like to do next is display the summary info for each method or property. Anyone have any ideas as to how to do this? By summary info, I mean the info defined by (in c#): ...
Score .NET-BroadcastEventwindow.1.0.5000.0.3:-Application Error
Ravi Jammalamadaka via .NET 247 - 7 Mar 2005 7:05 PM - 2 messages
(Type your message here) -------------------------------- From: Ravi Jammalamadaka Hi, I have been getting the following error lately an a VB.NET application I have been working on for almost 4-5 months. ".NET-BroadcastEventwindow.1.0.5000.0.3:-Application Error" and it further says memory could not be read from somewhere. ...
Score exporting web-based reports
Robert Gregory via .NET 247 - 7 Mar 2005 7:04 PM - 2 messages
I have dopdownlists to let the user select entries. The results are displayed in a datagrid. Additionally a crystal report shall be exported to PDF if user wants it, based on the selected items in the lists. I don't manage to solve the following problem: ...
Score c# checking if Time in time interval
Sharon - 7 Mar 2005 4:44 PM - 2 messages
Hi I am reading string time values from text file example: "08:09" "8:44" What is the correct way to handle (convent from string to Time) time objects in c#? And how do I check if the time object is in a specified range? ...
Score Wrong datatype returned - possible bug?
Ian Borland - 7 Mar 2005 3:19 PM - 2 messages
I have recently experienced a rather strange occurrence in one of my VB.Net applications. When extracting values from an oracle database (oracle 9.2.0.4.0) some oracle 'NUMBER' variables are returned as decimal as expected but others are being returned as double. This causes the ...
Score Hooking UnhandledException in .NET module invoked in classic ASP
John Snook - 7 Mar 2005 1:43 PM - 8 messages
I posted this question in microsoft.public.dotnet.framework.interop but got zero replies in 5 days so I'm reposting in the general framework group hoping someone's got some insight: We have a large IIS/SQL classic ASP site that we are converting to .NET by ...
Score Tough..Accessing Scripts with params from DGrid, for Dialogs
Neal - 7 Mar 2005 12:21 PM - 3 messages
Hi I can access a script from a button click event, to show a Dialog box but.. I need to (from the DGrids) Item Command, so I can trap the cell and correct master data, then call a script to show a Dialog/Modal window, to display the ...
Score File Compression?
Gautam - 7 Mar 2005 12:15 PM - 2 messages
Hi, I wanted to ask whether there is a file compression mechanism in the existing .Net framework or if something to implement file & string compression-decompression will be available in future versions. There are many freely available file compression components XZip & GZip come ...
Score IsDate flaw/bug ?
Alex Glass - 7 Mar 2005 5:01 AM - 2 messages
In my project I'm using trying to use the IsDate function to check if the user correctly formated the date in a textbox.  The amount of time it takes for the function to return a value initially is over 3 seconds.all ...
Score Bluetooth
Joshua Ellul - 6 Mar 2005 10:55 PM - 5 messages
Hi There, I want to create an application that will communicate using bluetooth.  Can anyone direct me in to some documents regarding bluetooth programming in ..NET? Josh ...
Score .NET Framework 2.0
Tim Haynes - 6 Mar 2005 9:57 PM - 3 messages
I couldn't spot a better forum to post this.  If there is one, then please set me straight. Can anyone point me at a good description of what's new in V2.0 of the framework.  There's assorted stuff around about changes to ASP and Visual ...
Score A design pattern for managing the activation and deactivation of menus and buttons etc in an applica
thechaosengine - 6 Mar 2005 1:50 PM - 4 messages
Hi all, Does anyone know of a design pattern to deal with the issue of making UI controls active and inactive according to the context of what the user is doing? I've been thinking about the best way to handle this but the only way I can ...
Score Offline .NET
news - 6 Mar 2005 10:53 AM - 6 messages
Can I run .NET (c#) offline - to update MS SQL? ...
Score wierd exception Access to the path denied
mmmobasher - 6 Mar 2005 9:46 AM - 4 messages
hi,I get some marvelous error from my c# program again & again security with caspol -s off, give it full trust, copy it to hard drive, copy it to cd drive, sign it with public/private key, in all ...
Score How do I get my Computers SubNetMask?
Russell Mangel - 6 Mar 2005 8:49 AM - 3 messages
Does anyone know how to get the local computer's SubNetMask, without using WMI? My computer's subnet mask is: 255.255.255.224, how do I get this? Thanks Russell Mangel ...
Score .NET Framework 1.1 (Redistributable?)
John Salerno - 6 Mar 2005 8:29 AM - 6 messages
Hi all. I plan on testing out C# soon, and I'd like to first try it without the full retail version, so that means I need to download the SDK, etc. to compile the code. Anyway, I'm a little confused about what I do and don't have at this ...
Score "\n" does not work inside a textbox control class
Kerem Gümrükcü - 6 Mar 2005 8:08 AM - 3 messages
Hi, i am about to burst!!! how can i make my string break inside a textbox? i mean with a control charater like "\n", but it does not work! i have a string and i must set the wrap manuall, not controled by the ...
Score Joining Datasets
news - 6 Mar 2005 3:12 AM - 4 messages
I have to join datasets, what is the quickest way? eg ds1 = [1,2,3,4,5] ds2=[4,5,8,9,20] jds = [4,5]; ie the data common to ds1 and ds2 is inserted into jds.. I know I can loop ds1 and test but this will be slow, and I am wondering if ...
Next » 2 3 4 5 6 7 8 9 10