Home All Groups Group Topic Archive Search About

.NET Framework

microsoft.public.dotnet.framework
Score richTextBox string coloring
pyrojoe - 25 Dec 2004 11:17 PM - 3 messages
(I'm assuming this forum is for c# ?) how do I have a richTextBox highlight everything inside the "<" and ">" tags, including the tags themselves, in blue? I've searched and posted on another site, but I haven't found anything ...
Score Unmanaged Code
Charles A. Lackman - 25 Dec 2004 7:46 PM - 6 messages
Hello, How do you write unmanaged code in vb.net?  Currently, If I need to write an installer or a small program that should not be managed by the .net framework then I have have to use vb6.0.  Is there a way to make small ...
Score How do I deploy the correct Provider for the OleDbConnection??
max - 24 Dec 2004 2:26 PM - 2 messages
How do I install or make sure I have the correct Provider for OleDbDataReader.  On  my development machine (XP Pro, SP2, VS.net 2k3) everything works and I have the 'VFPOLEDB.1' provider available.  How do I ...
Score acess denied!
Ricardo Machado - 23 Dec 2004 5:33 PM - 2 messages
Hi, I have my IIS installed, with framework 1.1, and in localhost (identifier 1), and one of the IP's (identifier 133...852) , when a run the aspx file, everything goes ok. In other web, with other ip (identifier 85....32), with the same file I'm ...
Score How can I get all the window handlers that belongs to a process?
Tarh ik - 23 Dec 2004 2:49 PM - 3 messages
Hi!!!      By any chance, do you know how can I get all the window handlers that belongs to a process?      I'm trying to send some messages to the winproc that has focus, so I ...
Score How to get the ServiceName
Jan Nielsen - 23 Dec 2004 2:36 PM - 6 messages
I'm implementing a windows service using C# and dotnet. This service must be able to be registered multiple times, and based on it's servicename I would like to lookup parameters for the current instance in registry. I think ...
Score Pre-compile a dll in memory
Jack Wright - 23 Dec 2004 2:01 PM - 4 messages
Dear All,    I assume that merely loading a .net dll in memory via Assembly.LoadForm does not compile the dll into machine code...does it make sense to loop through the classes defined in the dll and create ...
Score First time loading after machine restart
Jack Wright - 23 Dec 2004 1:54 PM - 5 messages
Dear All,    I have developed a client .net application...that takes 3 seconds to load after the machine has been booted...now after the user closes this exe and lauches it again, it takes less than a second to lauch... ...
Score Problem in developing oulook addin
baluveer_mukkamala - 23 Dec 2004 10:57 AM - 2 messages
hello,           I am developing a outlook COM addin which adds two command bars and some buttons to that command bars. I wrote  the code to  add command bars and command buttons in the ONConnection Event. But command bars and ...
Score Will Java Replace .NET?
news - 23 Dec 2004 9:41 AM - 45 messages
I have learned .NET since January this year (04) and now used it to build redburg.co.uk. I have used the XML/XSLT methods to build the HTML from a MS SQL database and this has meant I can build large sites very quickly showing ...
Score How can I raise WinForm from WinService ?
bnaya - 23 Dec 2004 7:42 AM - 3 messages
How can I raise WinForm from WinService ? I cannot use remoting because i need the WinForm on the same process as the Win Service. I tried the followings: MyForm m_frmDetails = new MyForm(); m_frmDetails.Show(); and MyForm m_frmDetails = new MyForm(); Application.Run(m_frmDetails); ...
Score Win Service GUI
bnaya - 23 Dec 2004 6:51 AM - 3 messages
How can I open WinForm from Windows Service I was tring the following options but it didn't work for me: MyForm m_frmDetails = new MyForm(); m_frmDetails.Show(); or MyForm m_frmDetails = new MyForm(); Application.Run(m_frmDetails); does anyone know how to do it? ...
Score Getting an assembly's version
Phil Jones - 23 Dec 2004 2:38 AM - 4 messages
I think I'm missing something obvioius here - but I can't figure out where to get the version details of an assembly. I'm looking at the [Assembly] object, and I can't see anything (other than ImageRuntimeVersion, which is the Runtime, not the actual assembly version). ...
Score Help converting struct w/function pointers to .NET
Thomas Connolly - 23 Dec 2004 12:05 AM - 2 messages
Hello list, No one seems to be replying to my request on the interop group so I thought I would try here. Can someone please help me with this? I have a C struct containing function pointers like so: typedef struct _tagLiffeResponseHandlerList ...
Score how to access frame's src attribute in javascript
Pampati Nagavani via .NET 247 - 23 Dec 2004 12:00 AM - 2 messages
Hi, i have 2 frames in one page. On the click of a link placed in first frame, iwant to change the src attribute of the second frame through java script. How to access the src attribute of the frame in javascript? ...
Score XML Reader saying Root Element is Missing
vito corleone via .NET 247 - 22 Dec 2004 11:56 PM - 2 messages
I have to mention is that i moved the code from Windows 2000 to Windows 2003.I am using XSD's to create a class and from which i am getting my assembly.The application works fine till it reaches the BusinessAction and also executes the Businesss Logic,not only that the request and response objects also get filled with the required details.After serialization the XMLReader throws an excetion saying that the "The root element is missing".The error message says Server Fault Occured.The root element it is referring to is the root element in the XSD's which is picked up for the request XSD and not for the response XSD.Can somebody help in this. ...
Score My Application don´t run out my Pc ?
Mario Reiley - 22 Dec 2004 9:36 PM - 6 messages
Hi, Group The application run OK in my local machine but don't run in other machine. I am Install The Framework and the Framework Redistributable Package in all the PCs. I get the following error Message: Just - In - Time debugging ...
Score Can you have too many assemblies in an application?
n33470 - 22 Dec 2004 8:57 PM - 7 messages
Is there any guidance, or best practice, with respect to deciding how to package classes into assemblies?    I guess what I'm wondering is if anyone has noticed a difference in application performance when the same application is packaged between fewer large assemblies (with many ...
Score process started by Process.Start crashes when USB device accessed
Landon Kelsey - 22 Dec 2004 7:23 PM - 4 messages
When the process aft.exe is started normally (double click on .exe file), everything works OK! When I start aft.exe from a service using Process.Start(), aft.exe crashes when the sound card or a USB device is accessed. ...
Score How to do SetEvent/CreateEvent in VB .Net
M K - 22 Dec 2004 5:27 PM - 5 messages
I have this C++ code I'm trying to port to VB .Net:   HANDLE g_hImageReady = NULL; // Event for when image is ready to transfer   //   // Initialize the globals   //   g_hImageReady = CreateEvent(NULL, TRUE, FALSE, NULL);   if(g_hImageReady == NULL) ...
Score Data Serialization
Constanza - 22 Dec 2004 3:06 PM - 3 messages
Hi. I am interested in know how work the  data serialization in .Net Framework with C#. Thanks, Constanza. ...
Score Disable Hardware Acceleration programmatically
Massimo Necchi - 22 Dec 2004 11:51 AM - 3 messages
Hi everybody, I think my question is quite clear from the subject...but let me explain you what I'm trying to do: I use one computer as both a "general purpose" (email, word processing, web surfing, development, etc.) and "digital audio ...
Score Advice for ASP.NET to VB.NET service communications
Blaxer - 22 Dec 2004 5:25 AM - 5 messages
I was wondering if there was any advice out there or best practices regarding ASP.NET communicating with a VB.NET service. I need to send some simple commands to a VB.NET service I built, what is the recommended way of doing ...
Score Writing to an embedded XML resource file
andav - 22 Dec 2004 4:05 AM - 2 messages
Is it possible to write to an embedded XML resource file? If so, can someone show me an example? Regards, Anthony ...
Score What permissions are needed for windows service to do C# impersonation when started under a user acc
Daniel - 22 Dec 2004 12:38 AM - 3 messages
I have a windows service that impersonates another account fine when it runs under system account but fails to impersonate when run under a user account. What permissions must the windows service user account have inorder to do impersonation? the error i get is: ...
Score is there any way to impersonate another account at the command line when logged into a windows 2000
Daniel - 22 Dec 2004 12:06 AM - 2 messages
is there any way to impersonate another account at the command line when logged into a windows 2000 server account via remote desktop? ...
Score Accessing ActiveDirectory through LDAP with .NET
Tim Mavers - 21 Dec 2004 11:16 PM - 11 messages
I am trying to determine the best way I can authenticate against an ActiveDirectory using LDAP with .NET.   I need to use LDAP because I need to authenticate across the Internet. Right now I have code that authenticates (e.g. I pass username/password to ...
Score Deploy framework SP1 from Bootstrapper?
Lachlan - 21 Dec 2004 10:31 PM - 2 messages
Is it possible to deploy .Net framework 1.1 SP1 from the Visual Studio setup bootstrapper? ([link]) We have an application that is highly dependent on the fix described in KB ...
Score Using .NET to import a delimited text file into an Access database
temp - 21 Dec 2004 9:18 PM - 2 messages
Greetings! I have been attempting for the past two days to create a fast and efficient way of importing data from a delimited text file into an Access database.  I've (finally) found out how to get the text file ...
Score What does '#define KPDCCALLBACK CALLBACK' mean?
M K - 21 Dec 2004 4:23 PM - 2 messages
I believe it's a C++ typedef. I need help, PLEASE!!! I have info on my blog at mkenyon2.blogspot.com I need to get an unmanaged DLL to raise events in my code. I can get it sporadically, but not every time. Now, I don't even get errors. PLEASE HELP. ...
Score Controlling individual DataGrid cells
msnews.microsoft.com - 21 Dec 2004 3:09 PM - 3 messages
Hi,    I am tring to control the editablity of individual DataGrid cells. Does anyone know if this is posible, and if so how.  for example if a row value is null I want to stop the user from entering a value in a related colunm. ...
Score compress specific data
Romain TAILLANDIER - 21 Dec 2004 2:46 PM - 4 messages
Hi group My customer want me i crypt a 16 alphanumeric char in 8 byte of memory. the format is : AAA AAA AAA L NNN NNN where the A are      A-Z or 0-9 ...
Score How to make this better and faster?
ham-z - 21 Dec 2004 12:50 PM - 16 messages
I have written the following Win app in VB.NET 2003 . The class is simply picture boxes that behave in a random order after they have been instantiated and added to a form. When I create 15 or more instances of my ...
Score .NET competes with java-script
#pragma once - 21 Dec 2004 12:06 PM - 4 messages
That's all we are expecting from programs written in the managed code; Though a MVP advised not to say that, because after JIT compilation the code runs in the native! Funny, isn't? That means scripting languages run in ...
Score Direction and suggestions needed
Stephen Dougherty via DotNetMonster.com - 21 Dec 2004 11:20 AM - 5 messages
Firstly apologies if this has been covered elsewhere. Being rather new to Developememnt in general, I am struggling to understand the deployment process of a .NET Windows application. I have created a Window's application, which returns info based on what the user selects. For each item in the app there is an associated picture in .jpg format. ...
Score Paypal IPN
Nayana - 21 Dec 2004 10:46 AM - 2 messages
hai everyone, i'm working on a console based vb.net project where i have to post a bills to the costomers(buyers) via paypal. I read topics on paypal IPN, but it speaks of web to web transaction, but i ...
Score Peformance: Processes v's Threads
Tim Smith - 21 Dec 2004 3:59 AM - 2 messages
Hi, I have a Service which is a single executable and 10-12 remoting threads.  Each thread executes database SQL, writes to files on behalf of clients. Will a thread ever block the entire process when waiting for a ...
Score Form Event - Minimizing/Restoring
Phil Jones - 21 Dec 2004 1:20 AM - 4 messages
I'm no doubt missing the blindingly obvious here - but where's the event on a Form that indicates that is has either been minimized or restored? (is there one?) Thanks everyone. === Phil ...
Score How to screen scrap a non-browser based object?
andav - 21 Dec 2004 12:33 AM - 7 messages
Hello All, Forgive me if the answer I am looking for is fairly simple. I am still fairly new to C# & .NET. A client of mine is looking to automate a process, initially I assumed it would be some simple screen scraping and reporting. ...
Score Child control in non client area ?
cadilhac - 21 Dec 2004 12:31 AM - 2 messages
Hi, is it possible to create and display a control (a toolbar in my case) in the non client area of a parent control ? I want this to avoid taking into account the toolbar while drawing in the parent custom ...
Score multiline toolbarbuttons
xctyski - 20 Dec 2004 10:19 PM - 5 messages
In vb.net, visual basic, I have created a toolbar with several buttons on a windows form.  The text for the buttons is too long, so I would like to make it appear on 2 lines.  How do I do this? ...
Score MSIL
Persian boy - 20 Dec 2004 9:34 PM - 4 messages
Hi, Is there any way to write code with MSIL to compile directly (not first in C# or VB and other .net languages)?I know any .net languages first compile into MSIL and MSIL is a interface between .net(C#) and machine,i consider ...
Score Need a book recomendation
Saeid - 20 Dec 2004 9:34 PM - 2 messages
Hi, I want to buy a book about .net Webservices, does any body have a suggestion? Thanks ------------------------ The soldier of Persian Empire ...
Score FileSystemWatcher event fired only once
kmurch - 20 Dec 2004 8:37 PM - 4 messages
I used the VB.NET project wizard to create a service project running on a 2003 server, then added a FileSystemWatcher to monitor one directory on the same machine. The watcher seems to catch the first change event, but then no ...
Score System.Net.Socket and Linux Server
Ralf Haenel - 20 Dec 2004 8:22 PM - 4 messages
Hello, I have the following problem: I have a TCP/IP server/client program(s) programmed with the TcpListener/TcpClient class. The communication uses port 13000. - It work fine from Windows2000(Client) to WindowsXP(Server) - But it fails from Windows2000 to Linux(Server). It work from a Client ...
Score using VS.Net 2003 with Framework 2 beta
Gregory Khrapunovich - 20 Dec 2004 6:02 PM - 3 messages
I have installed Framework SDK 2.0. Unfortunately my Visual Studio .Net 2003 doesn't see it. How can I make use of new classes in my existing C# project? (I want to use System.IO.Ports.SerialPort) ...
Score How to create a new app instance with Process
Joe - 20 Dec 2004 3:47 PM - 8 messages
I am using the Process class to start the associated program for a specific file. The Process.Start method reuses an existing running instance of the Process, and that's not want I want. I always want a new unique instance of ...
Score How to create an unsigned char in VB.Net
M K - 20 Dec 2004 3:07 PM - 2 messages
I have this C++ code: // Pointer to tranfser buffer unsigned char* theBuffer = NULL; In .Net (Visual Basic) how do I do that? ...
Score Extracting runat server objects from aspx
Ryan - 20 Dec 2004 12:52 PM - 4 messages
Hi All, I'm trying to programmatically extract all of the objects in a .aspx page that can be seen from code. This is basically anything that has an id and runat=server element. So far I've managed to load the assembly ...
Score WMI
Marek G - 20 Dec 2004 8:41 AM - 2 messages
Hi all, sorry for my bad englisch . How I enumerate  classes in the scope ? thanx                 marek g. ...
Score converting XML doc for dev reference
Neil Readshaw - 20 Dec 2004 5:59 AM - 2 messages
Does anybody have a recommendation on how to convert source code documentation in XML to another form for inclusion in a developer's reference ?  Maybe some nicely formatted HTML would suffice. ...
Score Is .NET Remoting for me?
Aquila Deus - 20 Dec 2004 5:46 AM - 6 messages
Hi all! I'm going to build a service container that hosts persistent services. Each hosted service will be running in its own AppDomain, and provide an remoting object/interface for others (local or remote) to communicate with it. And all of their remoting objects are managed by ...
Score Keyboard events not firing...
Man From The Moon - 19 Dec 2004 9:03 PM - 3 messages
My KeyDown / KeyUp / KeyPress events are not firing; I can't figure out what I'm doing wrong.  The code I'm using is basically straight from the manual. "this" refers to my Windows.Forms.Form object. [CODE] this.KeyDown += new ...
Score The chunk length was not valid when reading from stream
Thomas - 19 Dec 2004 5:53 PM - 2 messages
Hi, i get errors when reading a stream from httpwebrequest on a HP ipaq pocket pc. Framework 1.0 SP2 The same code runs sucessfully without errors on the 2003 pocket pc emulator and on windows xp. I have installed system.dr.dll to get the this detail error information, ...
Score AddNew on empty dataset with relations sets wrong child key.
clorentson - 19 Dec 2004 2:31 AM - 12 messages
I have a dataset with two related tables.  When I add a new parent/child pair when there are rows in the dataset the Parent Key and Child Key are set appropriately in the database.  However when I do the same thing but there ...
Score Performance Testing Software
labreaks - 19 Dec 2004 12:03 AM - 2 messages
Hi, I am currently developing an N tier winform application in vb.net using remoting.  I am looking for an acceptable performance load testing tool to use.  Any suggestions? ...
Next » 2 3 4 5 6 7 8 9 10