jattali's Q&A profile
Software Development for Windows Vista Publish TCP/IP Printers through a web site.
I am trying to find out if there is a way to use a intranet web site to help publish and install TCP/IP printers. I want to eliminate the print server that we are using. If it is possible please let me know. ...Show All
Visual Studio Micrsoft Visual Studio 2005 Beta 2 ToolBox integration
We have developed a Microsoft .NET Control library on .NET 1.1. We have added an installer to integrate that library into the Visual Studio 2003 ToolBox. This all works great. Now we are expanding this installer to make it possible to integrate into Microsoft Visual Studio 2005 (Beta 2 at this point), but we cannot add the actual controls to a Tab in the ToolBox. To illustrate the problem, I have created a simple solution in Visual Studio 2003. ...Show All
Windows Forms ListBox is really slow on adding about 64000 items
so, this is a problem - adding about 64000 into ListBox takes about 2-3 seconds.. my code: David M. Kean - MSFT wrote: You might want to consider a different design that doesn't require a user to select from 64000 items. It's not usable. this list is some kind of dictionary index - filled with words.. with input box for quick searching - it is a common design as i think.. there are many programms with such design (diffe ...Show All
.NET Development XslCompiledTransform - closes tags
Hello all. When transform using XslCompiledTransform it inserst single tags into output like <title /> and <script /> but must be <title></title> and <script></script> because it's conforms to XHTML standart in Net 1.1 it was right but in Net 2.0 - it's not so. problem can be solved by adding something like this: <xsl:text disable-output-escaping="yes">>/script<</ ...Show All
.NET Development ADO.NET 2003 and Access 97
I am using a Linked Server connection through SQL 2000 to a local Access 97 database. I have a stored procedure that returns the columns of an Access 97 table that are defined as logical (binary) The stored procedure is storing the information in a variable defined as a varchar(10) and using a select statement to generate the recordset. When I execute the stored procedure in Query Analyzer, I see the values of the colum ...Show All
SQL Server Configuring Remote SMTP for Reporting Server
I am using the SQL server 2000 along with Microsoft Reporting Services. I need to configure SQL Reporting services for sending reports through emails using subscription services. I don't have any SMTP server located in my local network or on Reporting server. We are using external SMTP server for sending & receiving mails through outlook express. How to configure the RSReportServer.config file for the same If we refer docum ...Show All
Visual C# how to open a file implicitly when application invokes
hi, my intention : to open the image in the picture box in another application(image viewer ) automatically when ever user presses edit button. problem : i am getting the image viewer application running but i am not able to get the image running at the same time. could anyone pls help me in solving this i am running out of time..... regards praveen private void edit ToolStripButton_Click( object sender, EventAr ...Show All
Visual C# Developing Windows Screen saver with Flash movie file using C#
Hi Everyone, I am Mohan Giri. I am trying to develop screen saver with flash movie file using C#. Actually what i did is I used the Shockwave Flash Activex control in the form and called the movie file using the control. I wrote C# codings to stop the movie file running when Keyboard and Mouse events occurs ...Show All
.NET Development 2005 IDE bug ???
Here is an odd behavior i'm experiencing with the new 2005 IDE in Visual Basic. I have screenshots to prove this but I just noticed we cannot add images to these posts, so I will try my best to explain the problem: Recently, during debugging, as I step through code, the debugger seems to "catch" exceptions on the weirdest places, but when I look at the exception, nothing is declared. Let me explain with an example... ...Show All
Smart Device Development Establishing a Connection from Server to Pocket PC through GPRS
Hi, Most pocket pc applications that I see requires the pocket pc to establish a connection through GPRS to a server (in my case Tomcat) in order to get some Data. However I am curious on how things work the other way around. Meaning, what if I want to get the Server to establish a connection to the pocket pc Are there any classess available in the .NET framework in order to handle this I am thinking that maybe there is an existing listene ...Show All
SQL Server Need help in grouping ....
I want to display car reviews by authors.... a car may be reviewed by multiple authors.... but the latest entry should be displayed... the older enteries will not be displayed.... the following is the query [code] SELECT CarReviews.Date AS Date, CarReviews.Company AS Company, CarReviews.Name AS Reviewer, CarMake.MakeName, CarModel.ModelName, & ...Show All
Visual Studio Express Editions Me.Invoke How to use it with sub routines?
This is the code I have: I need to invoke the sub routine, and I can not find any correct tutorials or posts for this Thanks SJWhiteley - Helped me a bit. How would this look if I had two or more textBox's Could I use this one function for all of those Thanks, mNilysg ...Show All
Visual C++ 256 color (or true color) ImageLists showing up as 4-bit in CTreeCtrl?
I have a basic CDialog and a CTreeCtrl in it. When I try to attach icons into it, I run into slight trouble. Even though the bitmap is 256-color or true color, the icons always appear in fixed-palette 4-bit (16-color) in the CTreeCtrl . The code is roughly this: CImageList* imageList = new CImageList; imageList->Create(IDB_ICONS, 24, 20, RGB(0xff, 0xff, 0xff)); tree->SetImageList(imageList, TVSIL_NORMA ...Show All
SQL Server SQL Server connection from C#/asp.net
I have a connect string to a SQL database: “Data Source=Cats;Initial Catalog=Orders;User ID=sa;Password=sa” It connects to the database correctly. If I change the string to: “Data Source=Cats;Initial Catalog=Orders;User ID=ian;Password=ih” It will not connect. “ian” is a valid SQL login to the Cats server with the same priviledges as the SA account – I can successfully login to SQL Query Analyzer with ian/ih. I tried the same thing on a “loca ...Show All
Visual Studio Express Editions referring to group boxes using a variable
Is it possible to refer to a group box by using a string containing the name of the group box I have a number of group boxes which I want to do list of things to. If I could refer to the name as a string I could write a function and pass the name of the group box to it. Any help would be appreciated. Thanks. Why not just pass the groupbox to it CalledRoutine(Groupbox1) Private Sub CalledRout ...Show All
