Aleniko29139's Q&A profile
Smart Device Development Connecting active sync to emulator in an x64 environment
Hi, I am trying to connect my Windows Mobile 5.0 emulator to active sync on a 64 bit machine, but the emulator is not being recognised by active sync. Is this a problem with the 64 bit environment (is active sync+WM 5.0 emulator) supported on a 64-bit machine Is there something that I am missing here Thanks Deepthi Hi Curnel_D, Are you talking about installing ActiveSync I thought you were talking about the Device Emulator! I just went to the ActiveSync download site and found only Windows XP Professional x64 Edition, but not the HOME edition in the list of supported OSes. Are you using XP x64 home edition http://www.microsoft.com/downloads/details.aspx FamilyID=7269173a-28bf-4cac-a682- ...Show All
SQL Server Optimal cpu utilization
Hi all, What is the maximum CPU utilization for SQL SERVER to function properly. our server's CPU utilization is touching an averrage of 70-80 % is it ok What can be the result of CPU utilization touching 80+ constantly This blog post is relevant: http://blogs.msdn.com/slavao/archive/2006/09/28/776437.aspx Thanks, Ron D. ...Show All
SQL Server How to create a RTF field ?
How can I save the text of a rich text box in a sql express 2005 datatable Of course I'd like to save the string and the format of the text (bold, color etc...). Which column type I have to use for this RTF field Thank you. hi, I'd guess nvarchar(MAX) this data type can host up to 2gb of text data, in national format thus including chars other than the ones present in the traditional alphabet, like chinese, cyrillic and the like.. http://msdn2.microsoft.com/en-us/library/a1904w6t.aspx http://msdn2.microsoft.com/en-us/library/ms186939.aspx http://msdn2.microsoft.com/en-us/library/ms187752.aspx for the complete list of supprted data types.. regards ...Show All
SQL Server Create calculated column programmatically
Hi, I wish all the best for the new year. I encounter a serious problem with creating a named calculated colunm programmatically to the table of a DSV of an analysis database. I would like to create this named calculated column by means of VB but any help in C# is acceptable. I can created this column in Microsoft Visual studio design but I need to be created programmatically now. Thanks in advance Best regards, Manolis There's a topic in Boosk Online (I'm looking at the July 2006 update version) that goes through an example of creating a DSV programmatically. Part of the example adds a computed column to a table in the DSV. I think you can probably study this example and adapt it to your needs. Here's the link in BOL: ...Show All
Windows Forms RTC peer to peer communication source sample
Hi I want to create a voice chat between two PCs using RTC protocal. Something similar to yahoo or skype chat. I need some source samples for this. Could anyone help in this regard. Regards, Pandi. Hi, Please go thru the following link. Hope this helps. http://msdn.microsoft.com/vstudio/express/visualcsharp/starterkit/#skype thank you, bhanu. ...Show All
Visual C# Customize Solution Explorer context menu
I'm probably being dense, but I can't find how to customize the context menu for Project items in the Solution Explorer. It's got a whole bunch of SQL Server stuff I don't want in it ("New Mining Structure", "New Cube", I mean, wtf ) which is making it necessary to scroll to get to "Properties", and it's driving me MAD. Any help getting rid of these SQL items would be deeply appreciated. And, hello, people who designed this in the first place Ever heard of sub-menus Seriously. Mark, I posted a walkthrough of customizing the context menus in VS on my blog a bit ago ( http://blogs.msdn.com/ansonh/archive/2005/12/09/502020.aspx ). It should be the same steps in this case, except that you'll want to c ...Show All
Visual Studio 2008 (Pre-release) Import of a Signed SAML assertion in SamlAssertion class (May CTP)
Hi, I have developed a STS on a device that generates a SAML Assertion which is signed. I have checked this XML assertion with an original created by WCF with the same parameters. I'm willing to use this SAML/RSTR using a WCF proxy but I'm building the RSTR/SAML without using a .NET framework on PC, so I cannot use any class of WCF to build this RSTR/SAML, I get a XML text representation. They perfectly match (Digest and Signature are perfectly the same). I can import this SAML when it's not signed in the SamlAssertion using ReadXml method, then I had the SigningCredential and it works perfectly. However if I import the same way the Signed XML it is imported but the RSTR built with this SAML is rejected by WCF. I found out ...Show All
.NET Development Interop troubles with excel
I asked this in the VB forum, but think it is more suited here. My application (VS2005) uses the interop assembly 11.0 to communicate with excel. 11.0 is the version for excel 2003. When I put the application on a client machine, it's fine provided the user has excel 2003 and either the PIAs are installed, or I distribute the dlls with my application. However, I've just tried this on a machine with O2007 and it's not working. I have installed the O2007PIAs on the client machine. Any ideas I assumed the O2007PIAs would be compatable with O2003... Early binding is typically preferable since there is type checking at compile time when references are resolved. With late binding the references are re ...Show All
Visual Studio Express Editions how to make a detailed view?
how to make a detailed view interacting with the database...to move to the nextdata or back to it's previous data Hello pinoyz I can write the answer or put a link to a video which explains the thng you need....but its already done...so heres the link to the video http://msdn.microsoft.com/vstudio/express/vwd/learning/ go to that page and download the video of 7th lesson..which is exactly what you want.its about 21.7MB have a nice day ...Show All
Smart Device Development empty toolbox on vista & wm5
hi! after couple of hours finding out that i have to disable UAC in order to get windows mobile 5 project types into visual studio, now i'm here, but the toolbox is empty. what has to be done to get the items available As a suggestion can you try Reset Toolbox to see if that helps Also is this only with Windows Mobile 5.0 Project or also with Windows Mobile 2003 projects and if this specific to .NET CF 1.0 or 2.0 Projects ...Show All
SQL Server Repeate Outer Group in Matrix
Hi, I am trying to make this report and I am using matrix in it. Currently it merge my outer group value. Is there any ways that I can use Matrix and have my outer group values REPEATED and not merged. Any help will be appreciated. Thanks, -Rohit Rohit, please take a look at my suggestion in your other thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1138711&SiteID=1 -- Robert ...Show All
Visual Studio 2008 (Pre-release) BitmapMetadata.GetQuery Syntax
Maybe I missed this, but I can't find any good article that details the query syntax for retrieveing metadata from a photo using WIC. In my case, I'm trying to read some images that were geocoded using Google Earth. I believe that this data is stored in the following EXIF tags: Exif.GPSInfo.GPSLatitude, Exif.GPSInfo.GPSLongitude. How do I take the information from the EXIF spec and turn it into a query Tag (Hex): 0x0004 Tag (Dec): 4 IFD: GPSInfo Key: Exif.GPSInfo.GPSLongitude For what its worth, here's the code I'm using: Stream photoStream = new System.IO.FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read); BitmapDecoder decoder = BitmapDecoder.Create(photoStream, BitmapCreateOptions.PreservePixelF ...Show All
Visual C# Disappearing data after using a backgroundworker
Whenever I place a databound DGV or combobox and try to datafill in a backgroundworker, no data appears even after the bgworker completes. Yet data in these controls appear fine when used without the bgworker... What am I missing What are you missing... A sample of your code so we can see what you are doing. ...Show All
Visual Studio How to continue execution after an exception?
hi, Sometimes I need to end the current process without reporting an error in my windows application, so I design an AbortException class and handle this exception in Application.ThreadException event. It works like a "silent exception". Everytime I need to stop a process without showing a message, I throw an AbortException. But it is really a problem when I need to continue debugging after this exception. Does anyone know how to avoid the Exception dialog box from reappearing I found a related topic on http://msdn2.microsoft.com/en-us/library/ky9bw27e.aspx but it didn't help... Thanks. Stanley Yes, it is expected. The reason is the exception event handler is disabled, when you run it ...Show All
Visual Studio Express Editions How to create user control textbox that accept only numeric characters
How to create user control textbox that accept only numeric characters and has all his properties and methods i create that but how can i add textbox properties and methods in my user control create a class of you own and inherit it from TextBox and Override the KeyPress event and write the code there to accept only the numeric key value. Private Sub AdvTextBox_KeyPress( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles MyBase .KeyPress If (KeyAscii < 48 Or KeyAscii > 57) And KeyAscii <> 8 Then e.Handled = True else e.Handled = False End If End Sub ...Show All
