michhes's Q&A profile
Visual Studio Express Editions Where are the MessageBox classes?
I want to able to display a message box. Looking at the library, the related MessageBox classes are in the System.Windows namespace. Looking at my available references, I have System.Windows.Forms but no System.Windows, which seems a bit odd. Putting "using System.Windows" in my code doesn't help me. Do I have the capability to display a message box somewhere or do I have to download an SDK If I have to download an SDK, which one in particular And if the SDK is really large, is there a way I can download just the library that has the Message Box stuff Okay, I just realized the difference between the Message Boxes in System.Windows namespace and System.Windows.Forms namespace: System.Windows N ...Show All
SQL Server Cannot view the DTS
Hi , I have DTS created in my Development server using the save as option i tried to save it in my production server . All these works fine . But when i logged in to the production server i could not see the DTS . But when we tried loging to the prodcution server using the data base administrator passed we were able to see the DTS and the owner of the DTS is seems to be not a admin person rather it is me. Why is that i am not able to view the DTS when i logged in with my user id Can any on help us in resolution this issue . Thanks K.Karthik Doss Yes i was able to view the DTS thru the DB Admin userID and Password and the owner is me. But i could not view it when i logged in thru m ...Show All
SQL Server OLE DB Source Editor
hi, I am using SSIS to extract data from sql server and import into MDB file. In the process, under data flow task, I have used OLE DB Source Editor as source. Here i have choosen SQL Command as mode of data population. In the box below i have typed the following statements. "Exec Site_Address" I have used many temperory tables in this procedure. When i run this procedure in the query analyzer window i get the desired data which has to be imported to an MDB. After typing the above statements and when i click the button preview i can see the data. But when i click the Columns.... i dont see anything there. I am unable to see any columns there. This is getting to my nerves because, when i use OLE DB as Destination i am unable ...Show All
Visual Studio Team System WIQL - State Change Query
I am trying to write a WIQL query that list the work items that changed from a specific state to another state on for a group of people on a certain day. Make sense Spoken in english: Select work items, created by this group of users, that changed from state a to state b, on this date. any help would be appriciated. Thanks You should be able to query the warehouse to get the information you want, i.e. the work items that changed from a particular state to another particular state for a given period (day, week, month). Filter on the Work Item.Pervious State, Work Item.State and the Date.Year Week Date dimension members are slice by the Work Item.Title dimension. For example, set Work Item.P ...Show All
SQL Server A Little Basic Help needed (SQLServer 2005) Merge Replication
Hi all, We are using SQL Server 2005, on Windows server 2003 R2. We Have Two Database Servers say DBServer1 and DBServer2, Now I wants to do Replication between these to servers, such that 1. The Changes at DBServer1 should be reflected at DBServer2 2. The Changes at DBServer2 should be reflected at DBServer1 3. Changes includes Data changes and Schema Changes 4. After every Synchronization Both Databases should be Identical I tried doing so, what i did was I cofigured Distribution at DBServer1, also Publisher and Publication at DBServer1 and Made a Subscription at DBServer2. What I successfully done is If Publisher means DBServer1 do some changes then it gets updated at DBServer2. But New Rows added at DBServer2 doesn't gets added at DBSe ...Show All
SQL Server can'd find SSIS for installation in Server2003SBS-PR
I bought a new HP server with Windows 2003 SBS Premium. I also was told buy the company how installed the server, that they installed all the components of SQL. When another company came to install a new business software for us, they told me that the Integration services is not installed. We tried together to install the SSIS with no luck. When we run the Setup(or used Add/Remove software) we couldn't find the Integration services check box in the list of the setup. I also asked assistans from the company that i bought the server fromk, and they also couldn't understand where is it. We have an HP Proliant server, Windows server 2003 small business preminum SP1, SQL server 2005. I was told that without the ...Show All
Silverlight (formerly WPF/E) Javascript calls from events
Hello all, Forgive me if this question spaws from my lack of in-depth XML knowledge, but is it possible to have more than one script call for an event in the XAML file For instance: MouseLeftButtonUp = " javascript:change_image " is one script call for the button up event. But if I wanted to have more than one script call fire for a given event, is that possible For example: MouseLeftButtonUp = " javascript:change_image; javascript:move_image " Thanks, Doug No, not at this time. You'll need to call your additional event handlers in your main javascript event handler. -mark Program Manager Microsoft This post is provided "as-is" ...Show All
Visual C# AppFroge s60 Appz with C#
Can any one tell me how to develop an s60 app with c# i see AppFroge crossfire have a tool for that but i couldnt get it. can any one help me ...Show All
Visual Basic I don t know hoe to use Console.WriteLine
I place a form and a button then I use Console.WriteLine in my code . But this latter doesn t display anything. where should I watch the output of Console.WriteLine. In which window Thanks I find Console.WriteLine in Microsoft examples. ...Show All
Visual Studio Tools for Office Data Binding to Content Control
hi , I am using Word 2007 B2TR. I want to know if DropdownListEntries of combo box content control be bound to a CustomXmlPart. Noopur Hi Noopur Since this question isn't VSTO-related, you need to ask this in an Office newsgroup, such as the officedev or office.xml newsgroup http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.officedev&lang=en&cr=US http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.office.xml&lang=en&cr=US FWIW, I believe the answer to this is yes, you can. I did some testing a couple of months ago, and found I could bind the following types of controls: Text, Combobox, dropdown list, DatePicker. ...Show All
Visual Basic Button1_KeyUp
Why it doesn't work when I quite hold of button1 Private Sub Button1_KeyUp( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles Button1.KeyUp MsgBox( "Button1 is up" ) End Sub Thanks Thank you, DMan1 . It works. Private Sub Button1_MouseUp( ByVal sender As Object , ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseUp MsgBox( "Button1 is up" ) End Sub ...Show All
Software Development for Windows Vista how to read an invalid Xmldocument in biztalk
Dear all, My scenario is i calling a send pipeline in orchestration. I pass a message of xmldocument type to this pipeline. pipeline processes incoming message and return result in xmldocument object. Result is basically a flat file data now whenever i try to extract contents from message that is of xmldocument type it throws exception as it is invalid xml document. how can i extract contents of an invalid xmldocument Regards, Farukh. ...Show All
.NET Development Problem with IDataObject.GetData
I'm trying to extract a snapshot of formated data in excel and save it to a separate file. The following works. MyExcel = CreateObject("Excel.Application") MyExcel.Workbooks.Open(MyInputPath & "\" & MyInputFilename) myWrkBk = MyExcel.Workbooks(MyInputFilename) For Each MyWrkSheet In myWrkBk.Worksheets MyWrkSheet.Range("C3:L9").CopyPicture(Excel.XlPictureAppearance.xlScreen, Excel.XlCopyPictureFormat.xlBitmap) SaveToBmp(OutputPath & "\tmp.bmp" Next MywrkSheet Private Sub SaveToBmp( ByVal Filename As String ) Dim img As Image Dim data As IDataObject data = Clipboard.GetDataObject If data.GetDataPresent(DataFormats.Bitmap) Then img = CType (data ...Show All
Internet Explorer Development IE7.0 + .NET 2.0 + AJAX = Problems!!!
I installed IE7.0 and now my app’s AJAX control (accordion) and hidden panels are not coming up. Is this a potential bug Is my HTML outdated This is happening on my master page with the AJAX accordion control and on a content page as well. I am running XP SP2 on IE7.0.5730.11. Any suggestions would be greatly appreciated. -Tim Just wanted to throw my oar into the water as well. I am having exactly the same problem with IE7, .NET 2 and Ajax controls, specifically the panel extender control. My panels do appear, only they seem to open and collapse from the middle out rather than from top down. This little problem will become a big headache for me when our company dep ...Show All
Visual Studio Team System Roll back in case of a failed deployment
On a failed deployment of the database project, I've observed that the database gets created and the deployment simply stops when the error was encountered. This is not a problem as such. However, is there any setting in visual studio that would cause the entire deployment to be rolled back (i.e. leave the server as it was prior to deployment) in case of any errors Even if this feature is not available in the current CTP, are there any plans to include this in the final release The error messages show up in the error & output tool panes of visual studio and this is quite useful -Tanveer Rashid For a "new" deployment (which includes creation of the target database), this ...Show All
