New-Bee's Q&A profile
Visual Studio 2008 (Pre-release) Unable to install VS Extensions for .NET 3.0 , November 2006 CTP when SP1 installed
I have installed VS Team Suite for Software Developers and SP1 for VS. When try install VS Extensions for .NET 3.0 , November 2006 CTP, the installation failed because valid VS version required. How to resolve this issue Is there anybody qualified here ...Show All
Visual C# Automation Error
Hello in my web project i am using a vb.dll and this dll internally call another dll inside it's function and it will giving this error automation error The system cannot find the file specified. :-2147024894 can anyone similar kind of problem .. please help me... sorry i will describe it again.. if any one can help me in this reagard... in my .net application i am using a COM file (that is written in vb 6) . this function internally call another dll and reading the globla.asa file using ASPTypeLibrary .. and when i use the function in my application it is giving me this error automation error The system cannot find the file specified. :-2147024894 .. Please if anyone have simillar kind of problem then ...Show All
Windows Forms Programicaly creating a ShortCut
In my Windows Forms application I have created a self-exracting archive (Program Installer) for my main application. How would I go about creating shortcut icon that points to my applications executable file I looked in the System::IO::File class but couldn't find anything and don't know where else I would have to look. C# doesn't use header files. A rough equivalent is Add Reference in the Solution Explorer... ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Using windows forms components with XNA?
Is it possible to use windows forms components with XNA For instance... what if I wanted to add a menu bar to my game I realize that most games have their own interface, but it would still be very useful to have (especially for setting up quick temporary interfaces). Any ideas Something is happening with the forum: I tried to edit/delete some of my posts in this thread (which appeared repeated like 4 times or so) and this message pops up: We apologize, but an unknown error has occured in the forums. This error has been logged. ...Show All
Visual Studio Team System Datawarehouse, how can I do?
Hi, I want to know how can I do a Datawarehouse, what requirements have how can I'm configurate my Team Foundation for get a good a datawarehouse Any idea, I want to initiate tu use a Cube from Team System, but I don't know if exist some requirements for initiate a cubes, which is the correct form to do it , or maybe if you have some link than can help me. Thaks, and sorry for my english! ...Show All
SQL Server SQL Server 2005 SELECT MAX function for multiple columns on the same record
Hello, I am trying to figure out how to use the select maximum command in SQL Server 2005. I have already created a database and I have it populate it with multiple fields and multiple records. I Would like to create a new column or field which contains the maximum value from four of the fields. I have already created a column and I am trying to figure out how to use a command or SQL statement which is entered into the computed equation or formula in the properties for this field/column. Any help you can provide will be greatly appreciated! Thank you, Nathan Thank you for the information. I would like to use this function in the computed column specification formula for t ...Show All
Smart Device Development How to connect to GPRS network from code?
When Internet Explorer is ran on my mobile phone it automatically connects to Orange GPRS network and I see a popup/hint on top of the screen saying "Connecting to GPRS...". I want to do the same in my application. Detect somehow that the network if available and just connect to it. I've looked in settings and iI think this is somehow connnected to modem connections but still I dont know how to start them from code. Any help/link will be appreciated. When Internet Explorer is ran on my mobile phone it automatically connects to Orange GPRS network and I see a popup/hint on top of the screen saying "Connecting to GPRS..." ...Show All
Visual Basic How can I send a form and its Subform (Datagrid) as a text file?
How to I print a Form and its subform as a Text file or send it to a text files then print the text file using a button Maybe using something like this Please be specific if you can. Thank you Private Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click 'True escribe cada linea debajo en el file the texto "test.txt"./SIN borrar el anterior ' False, prepara un nuevo archivo en cada oportunidad Dim objfile As New System.IO.StreamWriter( "c:\test.txt" , False ) 'Estoy usando este formulario para escribir al formato de texto en el archivo test.txt objfile.WriteLine( "PENA'S ACCOUNTING" ) objfile.WriteLine( "17 Canal Street" ) o ...Show All
SQL Server How does the MDX Order function orders ties
Hello all, When multiple tuples return the same value, is there an implementation independant way to know in which order the Order function will return those tuples Essentially, I want to know if the MDX specification defines what it will return or if it doesn't say anything on the subject; i.e. the order is undefined in this case. To me it is important that the behavior is part of the specification because I dont want to rely on something that may change in the future; all I need is the documented behavior. If the bahavior is "the order is undefined" I'm OK with that. Thanks. Michel Dion I don't know what the MDX specification says, but AS 2000 Books Online does document Order ...Show All
SQL Server SQL 2000 ReportViewer Authentication
I can consume the reportingservice using credentials to get reportnames and folders and such, but when i go to use the reportviewer, after i set the reportpath and serverurl, I am always asked to authenticate when using the sample reportviewer with RS 2000. How can i prevent this I know there is the Icredentials that can be set using the serverreport property with the new viewer in 2005, but how about doing the same type thing in 2000 ...Show All
Software Development for Windows Vista properties parameter
Hi, i have visual studio 2005 with .Net Framework 3.0 Reditributed Package and Visual Studio 2005 extensions for .NET Framework 3.0 could anyone tell me please why there isn’t parameter field in the property windows in my visual studio i can not set the parameter for workflow or activites, what could i do now manual set in- and output parameters in the workflow Hi, If you cannot see the parameter names among the list of properties try switching views - Alphabetical View, Categorized View..etc. These buttons are right on upper left corner of the properties window (alphabetical view button has a-z letters on it and categorized view is on the left of the alphabetical view button). When you switch to ...Show All
Visual Studio 2008 (Pre-release) Catching clicks on a panel or any other non-button-element
Calling a function, when clicking a button isn't a problem. But recently I tried to catch clicks on a grid, but with no avail. Since these elements don't have a click property, I'm completely clueless how to accomplish such a thing. Anyone got some ideas Buttons convert mouse events to click events as the mouse event bubbles. Most WPF elements don't have click events; use the mouse events instead. Unless you want to intercept and modify the click event behaviour of buttons, it's better to handle the bubbling versions of the mouse events rather than the preview versions. The advantage of using the bubbled event over the preview event is that elements that have specific handling for mouse events will han ...Show All
SQL Server Cannot view database properties
Hello all.... I am in the process of changing all of the collation to SQL_Latin1_General_CP1_CI_AS. I have backed up all databases, and uninstalled SQL Server 2005. I then reinstalled SQL Server 2005, setting the server collation to SQL_Latin1_General_CP1_CI_AS. The user databases have been restored and are accessible by all applications. If I try to view the properties of any database (system or user), I get the following error: ********************************************************************************************************************************* TITLE: Microsoft SQL Server Management Studio ------------------------------ Cannot show requested dialog. ------------------------------ ADDITIONAL IN ...Show All
Visual C# Windows Service or Scheduled Task
Dear All, I need to run particular database script every 20 minutes. So what should I be doing I am confuse between windows service and scheduled task. Which is better I would say that which is better depends on your scenario. Meaning if you only need to do this on one machine then a scheduled task is probably the right way to go. But, if this is something that needs to be deployed to many differeny machines, then a windows service would be easier. Hope this helps! ...Show All
SQL Server Integrated Security with local SQL & IIS
I have SQL RS running on a Win 2K (dev only) machine with IIS on the same local machine. I am trying to access the reports from another computer, but am getting an error An error has occurred during report processing. (rsProcessingAborted) Get Online Help Cannot create a connection to data source '<Shared Data Source Name>'. (rsErrorOpeningConnection) Get Online Help Login failed for user '<DOMAINNAME>\Guest'. IIS and the Datasource are setup for integrated security and the Datasource is aimed at the local SQL DB. Anonymous access is turned off in IIS and it prompts for the login info when trying to access it via the web. My understanding is that this should work without problems due to IIS & SQL ...Show All
