|
ms
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Visual C# .NETmicrosoft.public.dotnet.languages.csharp
How can I get info about which MenuItem that is clicked at runtime?
M Shafaat -
29 Oct 2005 11:47 PM - 3 messages
Hi, I want to develop an application with menus. I want to make only one event handler method which handles a whole group of menu items by firstly identifying which MenuItem sends the click event and then performing the appropriate action. But I don't find any way to retrieve any info telling me ...
Any way to custom draw a title bar?
Benny Raymond -
29 Oct 2005 8:41 PM - 3 messages
How would you go about custom drawing the title bar of a form? I'd like to change it so that I can add different colors to my title and also change how the close button works (since I override it and cause the ...
What's the best way to read a .CSV file in C#
Brian Kitt -
29 Oct 2005 8:09 PM - 4 messages
I have a .CSV file that I need to read, reformat, and write back out as a TAB delimited file. I can't use a slick utility such as DTS, because I have a lot of tweaking I need to do on the data before it can be output. The data ...
Difficulty With The DataGrid
sianan -
29 Oct 2005 7:05 PM - 3 messages
I have a DataGrid which displays data from a table in a MS SQL 2000 database. My problem is that I have a bit column in the database whose values I want to display as checkboxes in the DataGrid. I want to ...
Re: Problem updating Access Database
delta7@nospam.co.uk -
29 Oct 2005 4:10 PM - 2 messages
Hi Daniel, The exception I am getting is "OleDbException". The full exception details are: ?e.GetType() {System.RuntimeType} System.Type: {"System.Data.OleDb.OleDbException"} _pData: 61904000 Assembly: {System.Reflection.Assembly} AssemblyQualifiedName: "System.Data.OleDb.OleDbException, System.Data, ...
Showing unicode in a MessageBox
Tim Anderson -
29 Oct 2005 3:29 PM - 5 messages
I have VS 2003 installed on one machine, and the newly downloaded VS 2005 release on another. Both XP Pro. I have code like this: string s = "Extended characters: <spade> spades"; MessageBox.Show(s); where <spade> is the symbol for a spade suit in cards. You can enter this ...
Print Page Functionality
hartbypass -
29 Oct 2005 2:13 PM - 4 messages
I am looking for some code to duplicate something like on [link] when someone prints the Print This Page link. This site is using MSCMS so it might be using ...
caching an array
P Ocor -
29 Oct 2005 2:11 PM - 3 messages
I am trying to cache an array. 1st - can I do this and 2nd -what is the syntax please? I have added the namespace System.Web.Caching. I tried cache.add("myArray") = myArray; from here ...
axWebBrowser Runtime Error
TSIK -
29 Oct 2005 2:00 PM - 3 messages
I am developing an application to implement the Kleinberg web search algorithm. I use the axWebBrowser control but whenever I navigate to specific pages like "[link]" i get a runtime error. However, if i use the ...
Retreiving file list from a directory
ThisBytes5 -
29 Oct 2005 1:33 PM - 4 messages
Is there a built in way in .net to retrieve all the files in a directory one at a time? I have to process a bunch of files serially and there can be more than 100K files in the dir. I am trying to avoid ...
Limiting rows in List View
duraisridhar -
29 Oct 2005 10:55 AM - 3 messages
Hi all., I am using the Listview control to display my data in table fromat Is there any way ( simple or complex) to Limit the number of rows displayed to avoid the empty rows which is also displayed now . ...
rename project for class library
gordon -
29 Oct 2005 8:55 AM - 3 messages
Hi I have a piece of development code that is to build a class library that i run within another application. I find it hard to change the name of the project after I have started the project. For example I have a folder called ...
Window focus
piotrek -
29 Oct 2005 7:54 AM - 2 messages
Hi. I have two Forms. Second one is obtained by clickin button in first one. Would like to deny acces to first window, when second has focus. Its commonly used technique but i dont know how to do this. PK ...
Banning an IP programatically?
Brian Kitt -
29 Oct 2005 5:08 AM - 6 messages
I know how to ban an IP from the firewall. Is there some slick way to code a trap on my website to check IP and redirect them to a 'banned' page? That way they have the option to contact me if they are legitimate (via contact ...
How to find IP owner?
Brian Kitt -
29 Oct 2005 5:05 AM - 10 messages
I have a C# Web Application, and we are getting banged repeatedly by a web crawler at a specific IP address. I did an internet lookup on the IP address ([link]), and it just says it is owned by Cox ...
Inheritance and Interfaces
GSL -
29 Oct 2005 4:49 AM - 9 messages
I need help understanding why the following code causes an InvalidCastException? //I created an Interface public interface IFoo { string a {get;} } //Then a class that implements the interface public class Foo: IFoo { string a {get "something";} ...
delete folders, subfolders and files (some maybe read only or hidden)
Pete Gomersall -
29 Oct 2005 12:04 AM - 4 messages
Hi All, I have seen many examples of deleting folders with subfolders and files. (system.io.directory/info etc delete method) However, I cannot find a decent code example which will work where some folders/files maybe read only or hidden. I know, basically have to change ...
I need help on the best why to query network status
Christopher C -
28 Oct 2005 9:41 PM - 7 messages
I am currently working on an app the will be a shell replacement. Part of the goal is to list the current network status; basically I need to know if the network card is plugged in. I am currently using WMI to query all adapters to ...
System.OutofMemoryException
Mike L -
28 Oct 2005 9:21 PM - 7 messages
This is for a Win form. Before I made changes to my text boxes this code worked. I don't think I touch any code relating to my datagrid. Code should populate my datagrid with blank data, this use to work but now I get a ...
Transparent Textboxes
Mike L -
28 Oct 2005 9:21 PM - 5 messages
This is for a Win form. After creating my new Textbox Class, all my instances of my new Textbox Class are transparent. My textbox class inherits System.Windows.Forms.TextBox, why would my text boxes be transparent? How do ...
Problem updating Access Database
delta7@nospam.co.uk -
28 Oct 2005 7:58 PM - 2 messages
Hi, I'm new to C sharp and currently writing a small program that uses an Access 2003 database. I am currently having a problem when updating a row that includes numeric data. When updating just the text fields in the row everything works fine with the ...
Form won't stay away...
Tim -
28 Oct 2005 7:52 PM - 2 messages
Hi I have the following code to open a form modally. It works great only the second time I have to close it twice, the third time 4 times. I am using Dispose(), why is it coming back so much? ...
Another form issue with MainMenu
Marty -
28 Oct 2005 7:37 PM - 3 messages
Hi, I have this issue where a form that contain a System.windows.forms.mainmenu has its height increased by the height of the mainmenu at object creation level. Here's the idea: //form creation frmMyForm myForm = new frmMyForm(); //frmMyForm constructor ...
viewstate - datagrid and intermittent errors.....help
deevoy -
28 Oct 2005 7:08 PM - 3 messages
Hi- I'm developing a asp.net web application and everything has proven fine on the dev and acceptance environment. We've moved the code up to our windows server 2003 prod environment and get the following intermittent error when browsing the web page through ...
Reflect field inside method
John Bailo -
28 Oct 2005 6:46 PM - 6 messages
Is it possible to Reflect a variable inside a method? I can Reflect a class field using GetField, but can I reflect a variable/field from inside member? For example, I want to Reflect samp inside of the method: public int myMethod() ...
View Contents of CHM file within .NET app?
Jon Pope -
28 Oct 2005 6:35 PM - 3 messages
Is it possible to view the contents of a CHM file within IE? I've attempted to do this by right-clicking on a CHM file then selecting "Open With..." and finally selecting "IE", but nothing happens. What I'm attempting to do is allow the user to open an MDI child within ...
Streaming large files over network
A.M-SG -
28 Oct 2005 6:07 PM - 5 messages
Hi, I have a ASP.NET aspx file that needs to pass large images from a network storage to client browser. The requirement is that users cannot have access to the network share. The aspx file must be the only method that users ...
Char Unicode value and converting to byte
Gidi -
28 Oct 2005 5:57 PM - 3 messages
Hi, I'm writing a C# win application program, and i need to transfer my hebrew letters from unicode to ascii, now if i use the ascii encoding it writes me ??? instead of the hebrew letter i've entered. I know what the Ascii value of ...
Why is my data library constantly out of sync?
Robert W. -
28 Oct 2005 5:45 PM - 2 messages
I have a WinForms app in which I have several data object libraries. One of them is called "DataObjects" (excuse the unoriginality of my naming!). Anyhow, I keep on getting messages like this when I compile my main app: ...
upper limit to Session variables?
Amy -
28 Oct 2005 5:16 PM - 4 messages
Is there an upper limit to how many Session variables you can transfer? I'm working on a utility application that passes info from a web form into a pdf. There's no database access, so I'm using ...
Form positionning top left
Marty -
28 Oct 2005 5:15 PM - 3 messages
Hi, When creating a form, how can we set its property .left and .top to be handled when the form is showed. Because, if I first assign values to ..left and .top, and secondly I call .show(), then the form does not ...
VS.NET 2005 Available to download MSDN
Shawn B. -
28 Oct 2005 5:11 PM - 4 messages
Greetings, Looks like we can download VS.NET Professional from MSDN subscriber downloads, along with Visual SourceSafe 2005, Visio for EA 2005, and SQL 2k5 Developer. My DSL only has 180kbps so do download the VS.NET ISO alone (3,7GB) would ...
Displaying only certain results in a DataGrid
scott -
28 Oct 2005 5:10 PM - 3 messages
Hi all, Iv got a slight problem with a datagrid and the ability to only display certain things in it. I have a Data grid which is connected to a data table. The data table is connected to a data set which in turn gets its info from ...
Getting Class and Method name at runtime
gmccallum -
28 Oct 2005 4:26 PM - 6 messages
Is there a way to get the name of the class and method in code when not running in debugger. For example: class myclass { const string modulename = "myclass"; public void mymethod() { ...
A few easy VS 2005 questions
Jules Winfield -
28 Oct 2005 4:11 PM - 8 messages
I'm loving VS 2005. These are my questions and comments so far: BUG: Autoformatting ================ I've turned off virtually all autoformatting, but there is still one place where it rears it's head even after it's been turned off. Reproduce the ...
How to pass SQL Command and Parameters to another form?
Tim -
28 Oct 2005 3:57 PM - 4 messages
Hi, I am trying to pass a SQL Command, complete with parameters and their values from one form to a modal form. The modal form has; public void GridDataPreload(System.Data.SqlClient.SqlCommand cmdPreload) { } the calling form has; fSaleItems.GridDataPreload(this.cmmSQLUpdateSaleReview); ...
Concurrency violation (new try)
Vladimir O¾ura -
28 Oct 2005 3:50 PM - 3 messages
I am building a pocket pc application that requires a datagrid. I am inserting a new row this way: private void mInsert_Click(object sender, System.EventArgs e) { try { DataRow dr = this.ldb.DohvatiDataSet.Tables[tableName].NewRow(); ...
ByteArray to String
Chris -
28 Oct 2005 3:46 PM - 6 messages
What is the best way to convert a bytearray into a string ? I thought I could do it using the code below, but is there anything faster/easier than this? Thanks! Chris int aLength = 100000; byte[] myByteArray = new byte[aLength ]; ...
Total Newbie : How to create virtual directory/sub-directories??
aepearson -
28 Oct 2005 3:33 PM - 2 messages
First off, yes, I used the search as a first step. But I am a complete newbie when it comes to C# and a lot of the help I found was of no use to me because of my limited knowledge of the language and how it works. ...
How can... audio + text quesion
Raj Chudasama -
28 Oct 2005 3:20 PM - 2 messages
I am streaming an audio presentation with which i will also have some text. I would like to remember the text that was displayed with the audio. I want this to be replayable later thus requires that text be displayed at the ...
string.Format performance
A.M-SG -
28 Oct 2005 2:48 PM - 8 messages
Hi, I have the following code at the heavily demanded server side service: strResult=str1+"\\"+str2+"\\"+str3+"\\"; Would it be better (performance wise) that we change it to this: strResult = string.Format(@"{0}\{1}\{2}\",str1,str2,str3); Which one is faster? ...
ActiveX problem
alexmaster_2004 -
28 Oct 2005 2:45 PM - 2 messages
Hi There Consider the following error that I receive when trying to instantiate the web browser control: An unhanded exception of type 'System.Threading.ThreadStateException' occurred in system.windows.forms.dll Additional information: Could not instantiate ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' because the current thread is not in ...
question on VS 2005 Launch
Daniel -
28 Oct 2005 2:38 PM - 2 messages
Hi, Seen on the VS.NET 2005 Launch page : >>All attendees will receive a full version of SQL Server 2005 Standard Edition and Visual Studio 2005 Standard Edition.<< Will this version be crippled (in time) or will this truly be the full ...
Problem while casting
sunil -
28 Oct 2005 2:09 PM - 4 messages
hello there I was doing a project in VB.net and i used the following code to access the element of the parent form #################Code ##### DirectCast(Me.Owner, PhysicalInventoryfrm).drpInvName.DataSource = inventoryCombodataset.Tables(0) ######### where "PhysicalInventoryfrm" is the class of the Form whose element I want ...
How to insert a Page Break between each RenerControl(HtmlTextWriter)?
Rudy Ko -
28 Oct 2005 2:03 PM - 2 messages
Hi, All: I'm populating database records into a panel controls and want to render that panel into a HtmlTextWriter which will creating a word document. Do you know how to insert a page break between each records? ...
How to wrap winpcap
Nuno Magalhaes -
28 Oct 2005 1:40 PM - 4 messages
How can I use WinPcap or PacketX.dll to catch any packets that flow on my machine network adapter? Is there any sample code on how to do this? I would like something like this... and without using any additional ...
Math parser
Janiek Buysrogge -
28 Oct 2005 1:13 PM - 13 messages
Hello, Does anyone know if there is a library or a sample project that can parse strings with mathematical expressions inside ? eg. string math = "(23 + 48) ^ 2 - (7.76 * 3.14)"; parser should calculate the result of this. Atm I have my own parser, but it can only handle very simple ...
N-Tier, is the right choice?
Adine -
28 Oct 2005 1:12 PM - 8 messages
Hi, I need to develop a program to control electronic instruments. We have so many different instruments but we can group them. Each group has some common functions. When user choose an instrument, the other instruments may not be needed at all. So I was thinking if I want to write one executable file and ...
Conversion of HANDLE from C/C++ dll into IntPtr in C#
noe -
28 Oct 2005 1:01 PM - 3 messages
Hello, I am writing a class in C# that uses [DllImport("DllWin32Ndisuio.dll")]to call functions from a C/C++ dll. ------------------------------------- //Code in C# in Platform .NET [DllImport("DllWin32Ndisuio.dll", CharSet=CharSet.Auto)] public static extern bool ConectarNdisuio ( ) ; [DllImport("DllWin32Ndisuio.dll", CharSet=CharSet.Auto)] ...
XML comments questions
Clive Dixon -
28 Oct 2005 12:02 PM - 7 messages
Q1: The intellisense summary info for a class only seems to update after a change to that class's XML comments if I remove the reference to the project from the current project and add it back again. Why so, and how do I stop ...
Wrapping WinPCap with DLLImports
Nuno Magalhaes -
28 Oct 2005 11:19 AM - 3 messages
Hello all, Below I have a function that captures a packet and sends that packet to a Receive function (wether it is sent or received). I'm asking what functions should I use (what imports should I use and a ...
tread complete notification
bill -
28 Oct 2005 11:12 AM - 4 messages
How would I signal the main app when a thread has completed a task. The thread must remain actice. Every time it reads a given number of bytes it must let the main app know, then wait until more data shows up. The ...
Newbie to C#
N -
28 Oct 2005 10:48 AM - 12 messages
Hi I need to create a form that has a navigation panel similar to the outlook bar in MS Outlook. Do I need to purchase a 3rd party tool for this, or is this control available within C#. I am creating a windows application. ...
TreeView CheckBoxes
James L -
28 Oct 2005 10:44 AM - 3 messages
I want to remove check boxes for the child nodes but keep a check box for the parent node. Does anyone have any ideas? Thank you kindly. Warm Regards. ...
Intellisense not showing definitions
MDB -
28 Oct 2005 10:43 AM - 3 messages
Hello all, I have buildt a class library for my co workers to use, using C# and vs.net and for some reason, when they reference this class in their projects the Summary, params and returns are not being displayed in the ...
Logging Framework
Stanley Cheung -
28 Oct 2005 10:41 AM - 3 messages
hi all, I want to install a (FREE) log framework to my application. which logging package is easy to use? or which logging packaga is most popular? Please advise. Thanks. steambun ...
How do i have multiple cursors in my application.
berylwilson -
28 Oct 2005 10:37 AM - 3 messages
Hi all, I have an MDI application, where the user can have more than one child windows. Im trying to have a cursor for each child window and the position of the cursor has to be synchronized with the cursor in the ...
error handling
jack -
28 Oct 2005 10:26 AM - 3 messages
hi all im facing a problem in error handelling. what im doing is getting the images from the database to my csharp application form .. now here in some of the records contains ...
novice question
gordon -
28 Oct 2005 10:00 AM - 6 messages
Hi, i am learning c# at home in my spare time (what a life), and i am working through some examples. I run the following code and i get the following error when the if condition is not met. ...
P# compiler
alberto -
28 Oct 2005 9:48 AM - 3 messages
Does somebody know where I can find the P# compiler? Thank you ...
HELP - Global hooks
Víctor -
28 Oct 2005 9:31 AM - 2 messages
Hello, I'm doing a kind of Windows TaskBar application and I've found a problem. When I want to show open application's buttons I need to search in each Process running at PC and system becomes too slow. I thinked to modificate ...
IntelliSense not available for some classes
Dominik Gorsler -
28 Oct 2005 9:19 AM - 4 messages
Hi, for some of the classes in my project, IntelliSense does not seem to be available, whereas for others everything works fine. I believe that for all the classes I have added after a certain date this information lacks somehow. ...
SQL 'Unknown Error'
quilkin -
28 Oct 2005 9:07 AM - 7 messages
I am getting a System.Data.SqlClient.SqlException with a message string of 'Unknown Error'. Happens occasionally when creating a "new SqlCommand(...)" while the same command works perfectly happily hundreds of other times. A side effect is that the connection closes. ...
Parsing text for hyperlinks
Sam Collett -
28 Oct 2005 9:04 AM - 3 messages
Say I have string foo = "Some text [link] more text fred.blo***@somewhere.com more"; How could I parse it to find the links and store the results in a string array, i.e. to get ...
C#.NET COM interoperability: Arrays of UDT's in COM
Raj -
28 Oct 2005 8:59 AM - 2 messages
Hi, This is regarding using Arrays of UDT's in COM. The following is a short description: - We basically need a structure, struct MAIN_STRUCT which must contain a dynamic array of another struct, struct SUB_STRUCT. We have a interface function that is callable by the client, which takes a dynamic array of ...
C# DataSet and CrystalReport in Windows Form
Jason Huang -
28 Oct 2005 7:16 AM - 3 messages
Hi, Now that I've built up a DataSet and a CrystalReportViewer in Form1. Also the CrystalReportViewer is pointing to CrystalReport1. The Form1 can open the CrystalReport1. However, I don't know how to have the CrystalReport1 or CrystalReportViewer ...
Performance Hit for String.IsNullOrEmpty()?
Ken Wilson -
28 Oct 2005 6:18 AM - 9 messages
In spite of the obvious advantage of not encountering a NullReferenceException unexpectedly in your running program is there an offset cost in performance for using String.IsNullOrEmpty() over != ""? If so, would it be of any great significance if a large number of ...
I need help to find cute cursors that drag glittery or have ...
TiggerBaby505 -
28 Oct 2005 5:04 AM - 2 messages
ok have u ever been on a website someone makes and they have these really cool cursors that have some glitter or bouncy balls followin them? well i need help to find out where to go and look for them... i really want to be ...
Crystal Report question...
MounilK -
28 Oct 2005 4:39 AM - 5 messages
Hi all, I am very much new to the world of Crystal Reports. On my server I have say..10 reports(.rpt's); which are modified once in a while. On my clients there are copies of these reports(.rpt's). What I'd like to do is ...
Create and launch html page?
Mervin Williams -
28 Oct 2005 4:16 AM - 9 messages
From within a Windows form, I need create a html page and open it within Internet Explorer. Does anyone know whether this is possible within a Windows Forms application? If so, please provide an example. Thanks in advance, ...
Create remote object with specified credentials.
Heliotic -
28 Oct 2005 3:37 AM - 5 messages
Hi everyone, Currently I am working on an application that will perform a remote scan of a specified server using the following code: Type t = Type.GetTypeFromProgID( "Microsoft.Update.Session", "proact" ); UpdateSession UpdSess = (UpdateSession) Activator.CreateInstance(t); This code works quite well, as long as the user you are currently ...
Environment and Permissions
John Bowman -
28 Oct 2005 3:28 AM - 14 messages
Hi All, I've got a simple wrapper static test method on a class to expand the environment variables on a specified string: public static string ExpandEnvironmentStr(string Str) { return Environment.ExpandEnvironmentVariables(Str); } For some apparently security related reason it crashes with the following ...
Nested tables - How do you add a new row to a nested table? (code attached)
Benny Raymond -
28 Oct 2005 2:28 AM - 2 messages
I have a dataset setup with a main table that has some information in it along with an element that is a nested table so that I can store rows of history information for that one row in the main table. This all works ...
error creating a new project file in IDE...
tracernet_v2 -
28 Oct 2005 12:42 AM - 2 messages
help!!!! this is the first time i encountered this problem so please help, ASAP... when i try to create a new project, it creates the solution, but an error message box would appear telling me that the IDE encounters an ...
VS2005 broke my VS2003 Code
katzky -
28 Oct 2005 12:36 AM - 12 messages
I just fired up the production version of VS 2005. My first activity was to convert an application that I wrote in VS2003 .Net 1.1..... The new version does not work the same as the old...Ive found a single bit of code that ...
converting ASP.Net session type to an ASP one
genc_ymeri -
28 Oct 2005 12:31 AM - 3 messages
Hi, Well, I'm looking around for another opinion. We have two webservers, the legacy one writen in ASP and the new one in ASP.Net. Once a user logs in the ASP.Net web app, the session of the Login page gets ...
Adding data to Deleted columns in a DataGrid?
scott -
27 Oct 2005 11:17 PM - 2 messages
Hi all, got a bit of a problem with a datagrid. I have a datagrid that gets it information from a data table which in turn is connected to a data set. The data set is linked to an xml file and an xml ...
encoding question
exBK -
27 Oct 2005 9:28 PM - 3 messages
I have a page where I get the data from DB as a DataSet. Use the DataSet.GetXml() and load the XML in to a XMLDocument. Then use a XSL stylesheet to render the page. In this process I am not able to display the ...
DataGridView question
vbMark -
27 Oct 2005 8:36 PM - 3 messages
Hello, Using 2005 beta. I can pragmatically select a cell in the DataGridView but it does not move the cell so that it is visible on screen. How do I make it so that the cell that I select is moved to where the user ...
Maximum Datagram size for UDP Sockets
Gregory Hassett -
27 Oct 2005 8:33 PM - 5 messages
Hello, Does anyone know how to get the maximum size of a datagram for a UDP Socket created via .NET's System.Net.Sockets.Socket class? Thanks! ...
CollectionBase IBindingList confliction problems
Narshe -
27 Oct 2005 7:50 PM - 3 messages
I have a collection class that inherits from CollectionBase, and implements IBindingList, and I'm having problems with recursion or List not having an instance. This is a simple version of the class. public class MyCollection : CollectionBase, IBindingList { public int Add( object value ) ...
HOWTO Make a C# UserContol Memory Map to a C++/MFC/EXE
ATS -
27 Oct 2005 7:43 PM - 8 messages
HOWTO Make a C# UserContol Memory Map to a C++/MFC/EXE Please help, I have a UserControl that I want to have "talk" to a C++/MFC/EXE program that is already running via a memory map. The C++/MFC/EXE app is using the traditional WIN32 commands like ...
Convert VB to C# for saving/reading an image from Access DB
dale zhang -
27 Oct 2005 7:41 PM - 5 messages
Hi, I am trying to save and read an image from MS Access DB based on the following article: [link] Right now, I saved images without any errors. After reading the ole object ...
C# and Delphi
F. S -
27 Oct 2005 7:21 PM - 3 messages
Would somebody please compare C# with Delphi.net? And also the different between C# development tools, such as MS Visual Studio and Delphi 2005, ...
problem connecting to sql server when I run from another PC
Alpha -
27 Oct 2005 7:21 PM - 3 messages
Hi, I'm working on a window based application. It's running just fine from my machine where the SQL server is installed. I tried running from another PC on the network by creating a shortcut to the application's .exe file and I ...
injecting cutom menus in a software
Raj Chudasama -
27 Oct 2005 7:17 PM - 2 messages
i want to learn to add a custom menu to any exisisting software on your pc. And beable to use the menu to lets say pop up a window or soemthing. I think was called subclassing. What api do i need to know? how can i do this? ...
How do I make Response.Redirect refresh the web page?
Brian Kitt -
27 Oct 2005 6:26 PM - 3 messages
I have an application where I need to redirect the user to a different page and have that page load from the server. I tried using Response.Redirect, and while that does redirect them, it does not force a page load of the ...
Visual Studio 2005 Team Suite Trial Edition
Michael Rodriguez -
27 Oct 2005 6:13 PM - 4 messages
I see VS 2005 has finally been released. My only question is, why is it a "Trial Edition"??? TIA, Mike Rodriguez ...
2.0 RTM Break Beta2 Apps?
wackyphill -
27 Oct 2005 6:10 PM - 5 messages
Anyone know if someone is running a Beta2 app if it will break if they install the RTM version of the 2.0 framework (Assuming the app doesn't use depricated features)? ...
Accessing the CALL STACK
Yahoo -
27 Oct 2005 5:59 PM - 12 messages
I have a programming issue where I need to know the whole history of the call stack to ensure it was never within a given method (specifically my own method). I am hooking into the XmlDocument nodechanged event, I need to from ...
DataView from DataViewManager
rk -
27 Oct 2005 5:36 PM - 3 messages
Hi, I am using a DataViewManager to display the dataset in a datagrid. Once the rowfilter is applied, I would like to know the no. of rows returned so that I can display it on the screen. I would like a way to get the ...
insert into still does not work?
Roy Gourgi -
27 Oct 2005 5:07 PM - 3 messages
Hi, Here is my code. I get the error message now that it expects a ")". I have tried a few different things, but to no avail. What am I doing wrong???? I can't believe that it is so difficult to add a record in a database. In ...
OpenMP on C#
Brian C. Barnes -
27 Oct 2005 5:04 PM - 2 messages
Will OpenMP (or some other parallelizing technology) be considered for C#, like C++ already has? Brian C. Barnes ...
Docking Word Into C#
MartinABeck -
27 Oct 2005 4:47 PM - 4 messages
Is it possible to dock Word right into a C# program? I am in need of something like what is described here --> [link] but I need the whole Word application within the program (specifically so that the File Menu Bar ...
Error:COM object with CLSID{some hex code} not valid or not regist
Shiraz -
27 Oct 2005 4:38 PM - 5 messages
Hi I just made an installer package for an application in .NET which also uses COM dlls. It seems to work fine on my machine but when tried it on a co-worker's machine, the application installs, but while running, gives the ...
Mail Problem
Peter -
27 Oct 2005 4:16 PM - 6 messages
MailMessage aMessage = new MailMessage(); aMessage.From = "myem***@host.com"; aMessage.To = "someem***@host.com"; aMessage.Cc = ""; aMessage.Bcc = ""; aMessage.Subject = "Test"; ...
Serialize an Enum using the Enum names and not value
Chris Dunaway -
27 Oct 2005 4:09 PM - 2 messages
Suppose I have the following enum: public enum MyEnum { EnumVal1 = 1, EnumVal2 = 2, EnumVal3 = 3 } I want to serialize the enum but I want the /names/ of the enum to be stored in the .xml file, like this: ...
CellHover, not datagrid MouseHover?
melanieab -
27 Oct 2005 4:08 PM - 2 messages
Hi, I've used the MouseHover event in my datagrid and have almost everything the way I want it - but I've realized that the MouseHover event won't go unless the mouse leaves the datagrid. But I need it to kick in when I move the ...
TcpClient problem
Dirk Reske -
27 Oct 2005 4:02 PM - 2 messages
Hello, I try to connect to a remote server using TcpClient.BeginConnect(...); after I call the BeginConnect method, the Callback is imedeately called, but the socket isn't connected! When I set a breakpoint at the callback, so that I have a little break... ...
recommended way to autoStart an app
Dica -
27 Oct 2005 3:54 PM - 5 messages
based on a previous thread, i've been advised that using the system registry isn't always the best way to store user config details (due to portability issues). from my understanding, however, registry is usually used to autoStart an app. is there a better way to go about autoStaring an app, ...
'frmBaseForm' is not CLS-compliant because it derives from 'DockContent', which is not CLS-compliant
Next »
|
|||||||||||||||||||||||