OpticTygre's Q&A profile
Visual Studio 2008 (Pre-release) Getting the Avalon Viewer Sample up and running
Hey all, My first post here, happy to see im not the only one obsessed with gettin stuck into a bit of WPF! Apologies in advance if this problem has been posted already, I cant seem to find a thread relating to it.Last night I spent hours trying to get viewer sample up and running on my machine. Im running XP SP2 and im using Visual Studio 2005 Professional Edition... I've had no previous betas relating to Avalon installed on this machine. ...Show All
Visual Studio Drillthrough report with remote processing in web report viewer
I've built a set of drill through reports using the Navigation tab. I'm rendering the reports via the Reportviewer control in an ASP.NET app (RTM). To accomlish this do I need to write code in the " Drillthrough" event to set the parameters of the drill through report and change the Report path for the reportviewer control If so, how do I capture the value from the parent report in order to pass it to the drill through report ...Show All
Windows Forms MERGING CELLS IN DATAGRIDVIEW
Hi all, Is it possible to merge cells(rows) in DatagridView And How Thanx Hello, It is nice to see that people keep asking question on this issue and the small fraction of code I provided was helpful to some of you. But this is only small part of custom coding to get really nice formated and merged datagridview... Anyways I dont think that I might be very helpful, since in many instances you need to figure it out how to make thing ...Show All
Visual Basic listview
Is there a way to tell if the form load is complete so I can have run when it's done. beacuase when I just put something at the end of the form load it doesn't continue loading until that code is done. Which some times can take a while. The behaviour your describing sounds correct and by design that is the form load doesnt complete until all code within the form load event is run. The following article de ...Show All
SQL Server Incremental loading
Hi Friends please let me know how can we incrementally load a destination table with source table. bearing in mind that we need to track that there are no duplicates in the destination table. I need to load only changed or new data in the final load. Please give me some examples also. I am tryin this from last 2 days as I am totally new to SSIS. Sam_dia wrote: Do I need to execute dtexec.exe from command prompt Yes! ...Show All
Visual Studio 2008 (Pre-release) Open a window in front of the current one with the mouse Event
The window opened in Button Click Method is displayed in the front of the parent Window. void OnButtonClick(object sender, RoutedEventArgs e) { MyWindow window=new MyWindow(); window.Show(); } But, when i tryed the mouse, the new window is at the behind. void OnDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e) { MyWindow window=new MyWindow(); window.Show(); } How ...Show All
Windows Forms PocketTaskVision in VB.NET?
Will there be the sample PocketTaskVision also available in VB.NET Thanks Michael Update on PocketTaskVision for VB .net Andrew ...Show All
Windows Forms multi column in table need add combobox
hey me to 2 column( ex:id,code) in student table.Need Add ID,Code column this in Combobox help me thanks Can you rephrase your question it is not clear enough. If you need to bind two columns to your combo box: Go to your dataset in designer mode Right click your adapter select add query, and then add aquery that include code like this: select Code + ',' + ID from as NewField StudentTbl then your adapter will have a n ...Show All
.NET Development XMLDocument.Load Proxy Error (Authentication, Credentials, etc...)
I am trying to use the XMLDocument.Load method to load an XML document from a web site ( http://www.xxx.com/file.xml ). As I am going through ISA and require Proxy authentication, I cannot seem to use any property on the XMLDocument object to specify such. I tried using the XML Resolver but to no avail. All I can specify there is the URLResolver and pass some credentials, but no proxy. I am using VB.NET 2005 PRO, and will be using this functi ...Show All
.NET Development What XML Serialization Attribute to Use
I have a collection as follows: [ Serializable , XmlRootAttribute (ElementName = "Shares" , Namespace = http://blahblah ), XmlInclude ( typeof ( Share ))] public class ShareCollection : ArrayList , IList < Share >, ICollection < Share >, IEnumerable < Share > { <code> [ XmlRoot (ElementName = "Share" )] public class Share { The interfaces are explicitly defined. ...Show All
Visual Studio Team System Can hidden field detection be disabled in recorder?
We have this ASP.NET application that is written a bit unconventionally. We use a lot of hidden fields, and the fact that they are "detected" and remapped makes testing awfully difficult. I see the recorder records the correct values, but everything is remapped when the data is transferred into VS 2005. Can anyone help Am I simply missing the blindingly obvious Great, I'm glad to hear that's working for you.&nb ...Show All
Visual Studio Team System TFS not seeing all accounts properly
I'm having multiple issues that all seem to point to TFS not seeing all the accounts it should. First up, when I run reports, I get the following errors: An error has occurred during report processing. (rsProcessingAborted) Cannot impersonate user for data source 'CurrituckDS'. (rsErrorImpersonatingUser) Logon failed. (rsLogonFailed) For more information about this error navigate to the report server on the local server machine, or en ...Show All
Visual Studio VSS2005 and Web Projects---can't add to source control!
I am having a problem with my web application in Visual Studio 2005. First, I was able to add it to the solution ONLY by specifying http://<IP addr> because all other methods would not allow me to debug on the remote web server. And as a result of the above problem I can't seem to add the project to VSS2005 because it thinks that it's a Frontpage Web (I'm assuming its web access method is using Frontpage Server Extensions). Does anyo ...Show All
Smart Device Development Can't Check Submenu Item
So basically, I am trying to check a menu item that belongs in a cascading submenu. I have a sample diagram to show you want I mean. I am sure I am getting the handle because I get get the string, but I just can't put a check mark there. I want to check mar Item2 and Item1. (Submenu Bar ) Item1 Item2 ^ | (Submenu Bar ) ...Show All
SQL Server Joining Table Operation
I have two tables Customer and Customer Details. Both are joinde with cust_id. How can I insert data both the tables at the same time using ado.net. Should I insert individually or can I use JOIN operation for insertion. Please correct me with an example would be really appreciable. Thanks in advance YOu can’t do a multi-insert in a table, you have to wrap these two statement in a transaction and execute / commit these two statements toget ...Show All
