|
ms
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Visual C# .NETmicrosoft.public.dotnet.languages.csharp
Release Mode Compiling with System.Diagnostics.Debug
Haldun ALIML -
7 Jan 2006 9:46 PM - 4 messages
Suppose that you have below property in some class, #if DEBUG public string DebugInfo { get ...
Good error handling design
GS -
7 Jan 2006 7:34 PM - 2 messages
Hello, I'd like to centralize error handling in my ASP.NET project. How exactly I design classes so all expections will be handled by single error handler for the whole project? Any simple code samples? I like this approach since in that method I'd be able to define where errors ...
unique list, set
Someone -
7 Jan 2006 7:27 PM - 3 messages
Hi, What sort of data structures does c# have to create a set. Java allows you to create a set, just wondering what I can use in c#. Will I be forced to implemented custom code? ...
Class data variable question
KCT -
7 Jan 2006 7:23 PM - 4 messages
The following class member function (DataClass.DataUpdate) is called by an event handler at periodic intervals. I want to increment the counter (Counter) each time it's called, but I don't know how to keep the variable from being re-set to zero each time the class member function is called. ...
Adding an unbound - row to a specific index - datagridview bound mode
inpuarg -
7 Jan 2006 3:59 PM - 3 messages
Is it possible that - or is there any workarround for adding a new unbound row to a datagridview at bound mode ? Theese are not working. And i don 't want to add a row to dataset then rebind - cause i want to add this row to a specific location. and it does not match to ...
1-0-DBNull
Brenny -
7 Jan 2006 3:59 PM - 4 messages
Hi, I'm using access database and a table has a boolean column. I want to hold 1,0 and DBNull values in this column. But I cannot DBNull value, how can I hold DBNull value in the access database in boolean column? ...
How to get the position of the "typing cursor" in a TextBox?
Fabio Cannizzo -
7 Jan 2006 3:51 PM - 4 messages
How can I get/set the position of the typing cursor in a TextBox, expressed as an integer index, representing the position within the Text string? Thanks Regards, Fabio ...
Detect Remote RDP Session??
Tim -
7 Jan 2006 3:18 PM - 10 messages
Hi Guys, I was wondering if there is a way to detect from with a C# app if it is being started in a remote session? i.e. someone has connected via remote desktop or terminal services... Thanks Tim ...
Framework for Business Objects
Dries -
7 Jan 2006 3:17 PM - 8 messages
Hey, I have been looking around for a few weeks now to find a kind of framework to work with Business Objects. Especially to connect Business Objects with a database system. What I want is something like ADO.NET but instead of using DataTables ...
E-mail problem - encoding to Base64..
brianbasquille -
7 Jan 2006 2:51 PM - 7 messages
Hello all, Am writing an small basic e-mail client and i'm having difficulty encoding images to Base64. When i send an attachment image with it to Outlook Express, it seems as if it only converts a certain amount of ...
OFNOTIY Struct from lParam pointer
SpotNet -
7 Jan 2006 12:10 PM - 6 messages
Hi Newsgroup, While trying to customise my common dialogs and learn C#, I'm having trouble getting this to work; OFNOTIFY ofny = (OFNOTIFY)Marshal.PtrToStructure(lParam, typeof(OFNOTIFY)); Under the "case CDN_FOLDERCHANGE:" switch. I haven't seen this in any C# ...
Utillizing Reflection and Interfaces
Stefan -
7 Jan 2006 11:40 AM - 3 messages
Hello, I was hoping my fellow coders would give me some feedback on the article I wrote which makes use of the System.Reflection namespace and Polymorphism to demonstrate how you can create dynamic and scalable business objects. [link] ...
Reflection / Delegate Question
Doug Handler -
7 Jan 2006 9:48 AM - 5 messages
Hi, I've developed a plug-in application that basically is constructed of 2 pieces 1). the "main framework" 2). channels. Using Reflection in the Main Framework, i dynamically load Channels. This works fine and great. My ...
Property Indexer
rob -
7 Jan 2006 9:20 AM - 3 messages
You are probably familiar with constructs like: DataGridView datagridview1; datagridview1.Columns[i].DataPropertyName datagridview1.Columns.Count datagridview1.Columns.Add(..) I would like to implement something similar, i.e. class MyClass { public MyProperties.... } MyClass myClass; myClass.MyProperties[i].Prop1 myClass.MyProperties.Count ...
Dot Net Project Execution without Dot Net and Framework....
krishnan -
7 Jan 2006 9:10 AM - 3 messages
Dear all In Dot Net windows Application .... what are the requirements to run the developed Dot Net project EXE file in the system which doesnt have Dot Net..... with out creating of Setup...... only with project EXE file........ please help me... ...
Incorrect Structure Size of RasConnStatus
Dennis Sia via DotNetMonster.com -
7 Jan 2006 8:13 AM - 3 messages
Hi everybody, Unable to resolve the size of RasConnStatus which causing the RasGetConnectStatus() of code # 632. Is there anyone who can tell me how to get the correct size (structure) for the RasConstatus? Thanks in Advanced. RasGetConnectStatus returning 632 error code. ...
Testing Types During Development
Primera -
7 Jan 2006 5:03 AM - 7 messages
I'm looking for the best way to test individual methods and such during development. I use VS2005, but am still new to .NET. I'd like to test things as I develop without executing the entire app etc. ...
Excel Interop problem
Dries -
7 Jan 2006 4:26 AM - 5 messages
Hello, I am using Excel Interop to export data from a dataset to an excel-file. Everything works fine except closing the excel-file. I have an Application-object and a Workbook-object. I call the Close method on the Workbook en the Quit on the Application. ...
PLS HELP: PBX phone system integration?
MuZZy -
7 Jan 2006 12:43 AM - 8 messages
Hi, We are developing a CRM (Customer Relations Management) module for our app and my boss wants to provide integration with PBX (phone systems used by lots of companies) so that if a user gets a call, application pulls up caller's information from CRM database based on caller's phone ...
DAL design question and passing datasets
Peter M. -
6 Jan 2006 11:18 PM - 12 messages
Hi all, I'm currently designing an n-tier application and have some doubts about my design. I have created a Data Access layer which connects to the database (SQL Server) and performs Select, update, delete and inserts. I use dataset ...
Parent Child Relationships
RobKinney1 -
6 Jan 2006 10:16 PM - 4 messages
Hello, Thank you for reading this post. Please forgive my ignorance. This may be a simple question but am having trouble finding a straight answer. I need pass data from my Child Window back to my parent window. What is the ...
parsing words in a string
asrs63 -
6 Jan 2006 9:51 PM - 20 messages
Hi, Is there a class that can handle splitting of a string on a comma such that the commas in quotes are ignored? I know we can use Text::ParseWords directive in perl to do this, but I am new to C#.Net and couldn't find anything similar. ...
IComparer Question
INeedADip -
6 Jan 2006 9:43 PM - 11 messages
I am trying to use a generic (reflection) IComparer class to sort a generic list but I get the error: Unable to cast object of type 'GenericComparer' to type 'System.Collections.Generic.Icomparer `1[AccountDB.Queue]' My code looks like the following: ...
Generic.IComparer question
INeedADip -
6 Jan 2006 9:12 PM - 2 messages
I am trying to use the following generic (reflection) class as the ICamparer parameter for a generic list..but I get the error: "Unable to cast object of type 'GenericComparer' to type 'System.Collections.Generic.IComparer `1[AccountDB.Queue]' My code looks like the following: ...
VS2005 Designer problem
Dino Buljubasic -
6 Jan 2006 9:09 PM - 8 messages
I am having a problem when trying to view a form in desing view. If a form has any error or warning, the design view will not open the form. Anybody knows how to fix this error? Thank you _dino_ ...
.Net Axapta Connector
Pat Brown -
6 Jan 2006 8:49 PM - 2 messages
I am a pure .Net developer (C#). I have recently been granted the task of moving all of my C# code to point to Axapta tables. Everything seemed pretty strait forward to me... I thought I would just treat the tables as I would ...
Designer error "could not find type..."
Daniel Billingsley -
6 Jan 2006 8:42 PM - 12 messages
I've got a project I've been working on for a few weeks. I've been using the BindingSource control - I've got four of them on this particular form. This morning I went to view the report in the designer and got: ...
Problems with datagrid.
Nuno Paquete -
6 Jan 2006 8:01 PM - 2 messages
Hi group, My problem is very strange and I don't know how I can resolve this. I'm developing a C# application and I'm using an Informix database. I don't get any error but the results are not what I'm expecting. ...
Communicating between a main thread and a worker thread?
Joe Jax -
6 Jan 2006 7:40 PM - 7 messages
I have an object that spawns a worker thread to process one of its methods. That method processes methods on a collection of other objects. During this processing, a user may request to cancel the entire operation. I could request abort on the worker thread, but that is a) potentially messy, and b) ...
DoCallBack alternative
JPSutor -
6 Jan 2006 7:01 PM - 2 messages
The DoCallBack method of the AppDomain object is asyncronous. Does anyone know of an alternative method to use besides this one that is syncronous? We are using the WinFormsHelper.Cleanup method so we want to avoid writing our own. ...
Using ADOX with C#.
Frank Rizzo -
6 Jan 2006 6:41 PM - 5 messages
I am using ADOX to make changes to an Access database that would be difficult to do via the System.Data.OLEDBClient. So far I have no trouble actually doing the work, however, I have trouble closing the connection to the Access database. ...
How to read Config setting
Jazz -
6 Jan 2006 6:16 PM - 8 messages
Hello, I am using VSNet 2003 and I am trying to programmatically detect if debug attribute in the compilation tag is true or false. How can I do this ? Thanks, Jazz ...
Reading Attributes?
Alex -
6 Jan 2006 5:43 PM - 2 messages
I have a simple enough struct.. [StructLayout(LayoutKind.Sequential)] public struct InstallationGeneral_Lock { public int Case_name; public int Run_year; public int Inst_name; public int Inst_loc; public int State; public int Weather_filename; public int Ground_water_temp; [MarshalAs(UnmanagedType.LPArray, SizeConst=FEDSHelper.NUM_MONTHS)] public int[] Wind_speed; ...
Get instance from handle
danjones.email -
6 Jan 2006 5:19 PM - 3 messages
Is it possible to get a reference to an object using its handle? Up to this point I have determined the handle a custom grid I am trying to access, but I would now like to get the reference to the grid so i can ...
Class diagram generator tool
thoducng -
6 Jan 2006 5:01 PM - 5 messages
Hi all: I want to create a class diagram, similar to MFC class diagram published long ago. I don't need a UML model, all I need is a class named and inheritance relationship. My classes are in different projects. Do you know any tool that help to do that automatically. ...
Re: Undoing JUST the a row delete
Joanna Carter [TeamB] -
6 Jan 2006 4:53 PM - 2 messages
f9049cc7-ff2c-430e-8225-015988bf6***@msnews.microsoft.com... wants a granular undo like word or studio. reverts to the original state and I lose the changes fromstep 1 and 2. The user wants to be able to undo JUST the delete, and then udo the field ...
Transparent - does it work?
UJ -
6 Jan 2006 4:28 PM - 5 messages
I've got multiple controls on a win forms page - and I have a panel that I want the user to be able to click on to have something happen which I have put on top of some of the control. I make the panel transparent but it ...
Finding a running instance of my app
Rune Jacobsen -
6 Jan 2006 3:39 PM - 4 messages
Hey all, Maybe someone knows this problem; I have a C# WinForms app that every now and then has a new version that I deploy to my users using an installation script written with the NSIS installer. To improve on this, ...
what is the error plz..
Jassim Rahma -
6 Jan 2006 3:22 PM - 2 messages
I am getting this error and i Don'r know where is the problem? please help.. An unhandled exception of type 'VistaDB.VistaDBException' occurred in vistadb.provider.dll Additional information: Error in dll_sql_ExecSQL Error code: 546 Parameter not found in the list of params ...
Windows service talking to a Windows Application
WinDev -
6 Jan 2006 3:10 PM - 5 messages
We are trying to build a system where we have a Windows Service do some manipulation of data, and then sending the data to a Windows App. I had posted a question of how we should do this and was told remoting was the way ...
Calendar shows up wrong all of a sudden?
Benny Raymond -
6 Jan 2006 2:16 PM - 5 messages
Yesterday I noticed that the MonthCalendar is suddenly showing up wrong. Instead of nice colors it's showing up in grey tones and instead of the fancy circle selecting dates, the dates are selected with a box. Does anyone know what would cause this? It's happening to be at both ...
How to determine the clicked column index in a Listview
Steph. -
6 Jan 2006 1:16 PM - 5 messages
I have a List view displaying data in Detail mode with several columns. How I can get the column index the user clicked on ? (when user click on an item inside the ListView, not on a column hearder..) Thanks for any help ! ...
Nested Object passed Parent by ref
mbaskey -
6 Jan 2006 12:44 PM - 4 messages
Hello... I have an object which has a nested object which need to look at the parent to return a value about it. Basically as below but when I put the ref method parameter to construct the nested class, I get the error message about "this" ...
RichTextBox with tooltip
sb Luis -
6 Jan 2006 11:14 AM - 2 messages
Hi, I want : 1- A RichTextBox with tooltip ability. 2- A RichTextBox that reads & writes HTML thanks. ...
HTML2RTF
sb Luis -
6 Jan 2006 11:07 AM - 4 messages
Hi, I want a DLL or a Class to convert HTML to RTF. Thanks. ...
Is there any classes can handle and process e-mail?
ABC -
6 Jan 2006 11:07 AM - 4 messages
Is there any classes can handle and process e-mail? ...
Read Formated Text From MS Word
sb Luis -
6 Jan 2006 11:06 AM - 4 messages
I Use the following code to read from MS Word, but I couldent read Formated Text (RTF). How Can I read formated text from MS Word Doc without using clipboard. thanks. Word.ApplicationClass WordApp = new Word.ApplicationClass(); ...
Nant projects
Rajiv -
6 Jan 2006 10:53 AM - 2 messages
Hi everybody Can u help me to get good projects that is using nant as build tool. Actualy i am working on nant. For testing purpose I need project that is using nant as build tool. Thanks ...
Dataset Transformed to Word via XML
jimryder -
6 Jan 2006 10:20 AM - 7 messages
Hi, The following snippet: (ds is a populated dataset) string sXSLT = @"C:\XML\template\template.xsl"; string sTemp = @"C:\XML\temp\temp.xml"; string sOutput = @"C:\XML\output\output.xml"; ds.WriteXml(sTemp); XslTransform xslt = new XslTransform(); xslt.Load(sXSLT); ...
ToString() of an enum.
Sagaert Johan -
6 Jan 2006 9:04 AM - 7 messages
Hi Since an enum member object has a ToString() method, i wonder if it can be overriden . johan ...
Using the PropertyGrid Component
Curious -
6 Jan 2006 8:18 AM - 2 messages
Hi, I am trying to use the PropertyGrid component. I am showing properties of an object. Such properties that I added include simple data types: int string. Now I would like one of the propeties in the PropertyGrid component to ...
Query data via SMS
Jonathan Woods -
6 Jan 2006 7:42 AM - 2 messages
Hi there, I would like to query data from SQL Server 2000 by using SMS. Conceptually, For example, I send the following SMS Message "TK1234GPS" to SQL Server. Then SQL Server will respond to my mobile phone the following info: "TK1234Lat203.345Long35.5050". How do ...
How to get the data from TCPIP
TulasiKumar -
6 Jan 2006 7:31 AM - 4 messages
hi all, My requirment is i want to listen one perticular TCPIP port for one IPAddress,Wheneverver the data in coming to this port that data i will be save one text file..For example:[link] is fixed with some ...
Getting OS Info via WMI
Primera -
6 Jan 2006 5:32 AM - 3 messages
Could someone please review my method below. I'm trying to return the type of the OS on the local machine using the below. My concern is that there could be a flaw in the if statement and the return statement with variable ...
AutoCompleteStringCollection for text box in DataGridView 2.0
Scott S. -
6 Jan 2006 4:28 AM - 4 messages
I have been searching for a way to have autocomplete in a DataGridTextBox object. There does not appear to be an obvious way to do this like you would for a TextBox outside of a grid using the AutoCompleteCustomSource. Any ...
Infragistics, ComponentOne, DevExpress, other?
Ronald S. Cook -
6 Jan 2006 3:57 AM - 4 messages
Hi everyone, We're needing to pick a suite of components for our C#/VS 2005 development. Top on our list is a treeview that integrates with a datagrid. I think all the big goes provide that. Does anyone know which suite is the "best" or are they (Infragistics, ...
Read HTML text
Mike -
6 Jan 2006 3:07 AM - 4 messages
Hi, There is anyway to read the text of a HTML page? Final text, not the HTML code. Thanks :) ...
Hide From Alt-Tab List
Never Best -
6 Jan 2006 2:46 AM - 5 messages
I have an application. I want it so when the user minimizs the window it goes into the system tray, and while in the system tray I don't want it in the "Alt-Tab" list. (When the program starts it starts in the system tray ...
Copy Protection / Trialware Software that works with .NET
Peter Olcott -
6 Jan 2006 1:15 AM - 11 messages
Does anyone know any really good products? ...
Sort characters in a string
Someone -
6 Jan 2006 12:51 AM - 4 messages
Hi, Using C# is there a quick, concise method of sorting the characters of a string into alphabetic order ...
Printing in Landscape
BlueSky -
6 Jan 2006 12:38 AM - 2 messages
Will I able to print documents from a web page using the System.Drawing.Printing class to a client computer? Thanks for any info. ...
C# Conversion
jignasuk -
6 Jan 2006 12:18 AM - 2 messages
How would I convert something like below to C# or VB.Net? unsigned char ar[] = "AB"; unsigned int i = 0; i = *(unsigned int *)ar; Thanks JK ...
Storing Generic collection in a field
dcew -
5 Jan 2006 11:40 PM - 3 messages
Here's what I'm trying to understand; how can you store a generic collection in a variable/field? If I have an abstract generic collection class as follows... public abstract class BizCollection<T> : Collection<T> where T : BizBase ...
output box (cmd)
scottmac -
5 Jan 2006 11:39 PM - 2 messages
when a class is compiled and run,(simple hello world for example) the command box flashes up with whatever the program did, then disapears! so never able to see for more than a fraction of a second what program output was. ...
Is it possible to have a static field of a struct type of its type
PIEBALD -
5 Jan 2006 11:29 PM - 5 messages
That didn't come out right, but what I mean is something like: struct X { private int x ; ...
Outputting a double number with three decimal places
Andy -
5 Jan 2006 11:21 PM - 3 messages
Hi I'm really stuck outputting a double number to the console with three decimal places if the furthest right value is a zero. I can coutput the number 4.546 as 4.546 but then if I output 0.220 it comes ...
nested struct array
symbol -
5 Jan 2006 10:47 PM - 2 messages
I am having this problem in a managed c++ DLL which mixes managed and unmanaged C/C++ code. I tried to assign value to a struct array nested in another struct. but I can only write to the first element in array, not the ...
Urgent need: HTTP-Auth from C#
Zeya -
5 Jan 2006 10:39 PM - 2 messages
A third party site requires all request to have HTTP-Auth. I have an application running in ASP.net and C# from which I need to send a request to this site. How can I do this? Meaning HTTP-Auth. ...
Generic list from C++ to C#
Nicolas Fleury -
5 Jan 2006 10:38 PM - 3 messages
Hi, I have a field named "BaseClasses" in C++ as in the following simplified code: using Collections::Generic::List; namespace A2M { namespace LipIntrospection { public ref class BaseClassInfo { ... ...
Aborting a thread ?
jmd.msdn -
5 Jan 2006 10:20 PM - 4 messages
Hello. I want to abort a thread whose thread function contains something like : void threadfunc () { while ( 1 ) { ...
Design question...
craig -
5 Jan 2006 10:06 PM - 6 messages
I have am working on an app that has many forms. I would like to make each of these forms capable of interacting with the Windows Clipboard. I did some research and found out how to do this using the Windows API, which ...
Mouse Event
Dave -
5 Jan 2006 9:55 PM - 3 messages
Is there a way to receive a message any time the mouse is clicked anywhere on the screen? I would be kind of like a clicke event handler for the entire screen. ...
Plugins architecture
Luis Arvayo -
5 Jan 2006 9:52 PM - 7 messages
I need to implement plugins in my application. That is to say, DLLs that communicate with my application data. Does someone have a link to the best explain of how to accomplish the above ? Thanks a lot Luis Arvayo ...
thread calling methods
Pohihihi -
5 Jan 2006 9:36 PM - 7 messages
When a thread calls a method (and/or that method calls another method), are they thread safe if the first method is controlled on access? ...
Asynchronous programming
rsanan@gmail.com -
5 Jan 2006 8:50 PM - 2 messages
I am looking for a simple example to open a window with a message "Processing Request" while i do some export / writing data to a text file. Do I need to use Async programming ? any examples? Thanks ...
How do I compare 2 objects which reference COM objects?
Uzi -
5 Jan 2006 8:41 PM - 3 messages
Hi, I have 2 references to COM objects (through interop). How do I compare the tow to know if they are pointing to the same COM object? The Object.Equals doesn't work in this case... Thanks! Uzi ...
Using keyword
INeedADip -
5 Jan 2006 8:33 PM - 11 messages
Can anyone here confirm for sure that reader.Close() and Dispose() will get called using the following routine: using(SqlDataReader reader = GetOpenReaderFunction()) { while(reader.Read()) doSomething(reader); } I have seen examples here and there with mixed assumptions. ...
Windows forms and user controls
Maya -
5 Jan 2006 7:31 PM - 5 messages
Hello everyone, I have a windows form that has 2 child usercontrols i created and added inside, control1 has a label that displays some text based on activities i do in control2, my question is how do i update the label ...
Monitor status
Dave -
5 Jan 2006 7:16 PM - 8 messages
Is there a way to query the monitor status, to know if it is on or off in C#? I found that WM_SYSCOMMAND is sent to WndProc when the monitor goes on and off but im not sure to find out if that message is always ...
Removing Items in ListView
Curious -
5 Jan 2006 7:01 PM - 3 messages
Hi, I am removing problems but I am having a problem. The code below is the code being used to remove items from the listview. ListViewItem oldItem = listViewAllStates.SelectedItems[0]; listViewNextStateSelected.Items.Remove(oldItem); My problem occurs in the following scenario (example): ...
Ambiguity with ContextID in entprise services.
Michael Nemtsev -
5 Jan 2006 6:00 PM - 4 messages
Can't ace in how client and server component contexts correspons with each other. Server-side (entperiseServices) component is always created in context. But I'd like to create serverside component in *client context*, and therefore contextID of the client and server should be the same. For ...
Master pages and content holders
Rik Brooks -
5 Jan 2006 5:33 PM - 3 messages
I am creating a Master page and I need to put 3 different content holders on it. When I put the content holder on the master page I am not able to resize it. I can move it around but not resize it. I grab the handles and nothing ...
Stop a RichTextBox control from scrolling when it has focus
D. Yates -
5 Jan 2006 4:55 PM - 5 messages
Hi, When a RichTextBox control doesn't have focus, it DOES NOT scroll to the last line that is added; however, if it does have focus, it WILL scroll to the last line added. I want to stop and start this behavior at will. When ...
How to make a non square Sys Tray Icon?
Benny Raymond -
5 Jan 2006 4:50 PM - 8 messages
I searched for a couple hours lastnight on example code of how to go about making an item in the System Tray (notification area) not be square. I've found several programs that do this but I can't seem to ...
Other Forums that have C# and .NET discussion groups?
Eddie H -
5 Jan 2006 4:39 PM - 3 messages
Do you other sites, forums or discussion groups where you can change knowledge, opinions etc. considering C# programming and .NET? -- like to get answers sometimes too -- ...
C# and certification
GrahamJWalsh -
5 Jan 2006 4:33 PM - 21 messages
Hi, I'm about to embark on .NET/C# certification (after 6 weeks intensive training). I'm actually heading off to India as it's cheaper....sign of the times. The goal is to compliment my existing c++/java skills and ...
Instantiating types (with internal constructors) using a generic factory
Anders Borum -
5 Jan 2006 4:15 PM - 6 messages
Hello! Whilst refactoring an application, I was looking at optimizing a ModelFactory with generics. Unfortunately, the business objects created by the ModelFactory doesn't provide public constructors (because we do not allow developers to instantiate them directly). Because our business objects are instantiated very frequently, the idea of ...
Help with C# events in native C++ COM
Scythen -
5 Jan 2006 4:10 PM - 2 messages
I’m developing script system based on C# script for a game engine. Scripts are written in C# and compiled at run time by a C# class library. The native C++ game code accesses the script compiler class library through ...
Var/Object Access
Christopher -
5 Jan 2006 3:25 PM - 3 messages
Cant access a object that is in the same class it seems... With a new c# win. app. project in vis studio 2k5, if I want to access a richTextBox that was defined in Form1.Designer.cs. (richTextBox1). I write a simple line in program.cs ...
Help with NaN handling in IL conditionals
Leon Lambert -
5 Jan 2006 3:05 PM - 5 messages
I would appreciate it if someone could help me understand NaN handling with respect to conditionals in IL code. I am playing with a small IL interpreter and having a little problem with it. Following is a small piece of C# code that gets compiled by VS2005 to simulate my problem. ...
Implement "loosely coupled events"
Jonathan -
5 Jan 2006 2:52 PM - 3 messages
Hi I need implement loosely coupled events to raise events in a Classibrary project from one Windows Application project, and hanlde these from other Windows Application project. I found this article in MSDN, but I don't know how to implement. ...
Problem with byte array....
sridev -
5 Jan 2006 2:40 PM - 2 messages
hi all, i have a byte array which has length of 10,000.I have to break this byte array into smaller parts of length 512 and save this values into another byte array. I am doing this because i want to send the large byte array thro' the ...
key value pair with a list
Someone -
5 Jan 2006 2:32 PM - 6 messages
I wish to use a sorted list to store lists of strings. I am unsure as to how things work. I want to do something like: SortedList list = new SortedList(); for(...loop for string...) { if( ! list.contains(key)) { ...
IDE: vs2k5 partial class
Christopher -
5 Jan 2006 2:32 PM - 3 messages
Greetings, By default Visual Studio 2005 starts each new project up with the code in partial class form. Is there anyway I can change this behavior so that the code is not split amongst different source files? Im using the professional edition for c#. ...
synchronize Access Database!!
taleran58 -
5 Jan 2006 2:29 PM - 2 messages
Hi all. I'm writting a multithreading program that will update a loacal Access database. I'm using OleDB connection to get access to the database from each thread and my question is: how do I synchronize between threads\ how do ...
Aggregate Functions in DataTable.Select
Marcel Hug -
5 Jan 2006 1:52 PM - 3 messages
Hi NG! With a Inner-Join SQL I get my datas in a DataSet. In the table are the column Entry and Version. Like this: Entry Version 1 1 ...
Making either either a webbrowser object or shockwave object react to a mouse click.
UJ -
5 Jan 2006 1:37 PM - 2 messages
I have both a webbrowser object and a shockwave object on a window's form. I want to make it so that if a person clicks on either of them, something happens. But they both look like they don't have an onclick event. How do I ...
Background color of transparent on a label shows form not what's underneath it.
UJ -
5 Jan 2006 1:33 PM - 3 messages
I have a browser object on a form with a label in front of it. I want the label to be transparent so that you can see what's going on in the browser behind it. When I make the label transparent (backcolor = color.transparent) ...
Run time decision on type of new object
Paulustrious -
5 Jan 2006 12:04 PM - 5 messages
Is it possible to decide on the type of an object at run time. So in pseudo-code I am looking for one (or preferably both) of the following.... string s = "SomeExistingClass" ClassTypeInString(s) MyThing = new ClassTypeInString(s) ; ....or.... ...
unhandled exeption of type 'System.Runtime.InteropServices.COMException' in system directoryservices
Next »
|
|||||||||||||||||||||||