NoEgo's Q&A profile
Smart Device Development Why does Emulator seem to drop the network connection after 1-2 minutes
I had spoken too soon to regards to the ability to ping my emulator instance. It works great in the first 1-2 minutes and then seems to drop out. I did install the virtual network driver as suggested yesterday and that gave me the initial capability. Is there a known issue with the CTP arm emulator that I don't know about Thanks in advance for any help :) Bob Hanson BobH wrote: Hello Andrew, Sorry about the confusion with starting a second but I thought we did complete success last time. Just to make sure I am doing whjat you are suggesting correctly, can you please let me know exactly which emulator you are asking me to try. Thanks for your help :) Bob Hanson hi again Bob, this one ...Show All
SQL Server Cannot get SQL 2005 RS up and running
I am attempting a migration to RS 2005. I restored the ReportServer and tempdb databases over to the new server. The config manager says the ReportService service is running. When I try to view the reports in a browser I get a report server is not responding error. Thanks Richard aspnet_regiis.exe is under %SystemDrive%\WINDOWS\Microsoft.NET\Framework\v2.0.50727. By "not recognized" did you mean you can't find it If so please check if ASP.NET is installed, and reinstall .Net framework if necessary. ...Show All
Windows Forms hex display
HI everyone, i have a value that i want to show in hex. I use : textbox1.Text = "0x"+value.ToString("x"); I get the results right, but if the value is 0x06, it only shows me 0x6, is there a format that i can use to get 0x06 Thank you Hi everyone and thanks to all of u, I used the way that Fgo described but i wanted to see if there is some prameter I can pass to the .ToString() function in order to specify the length of the Hex values. Thanks again ...Show All
Windows Forms How to refresh the windows form? VB.net or Vs 2005
Hi I am having a windows form with datagrid view. I am opening a subform from the row of the datagrid view in a main form by clicking it. So the subform opening the relevant data. Also I am using the subform to add new record . So, to view the new record in the main form (datagridview) I have to close and open the application. My question. How do I update datagrid view in the main form when I add the new record in the subform. (any code will be appreciatable to use in the form closing event of the Subform) Advance thanks I have the feeling you are directly saving to the database in your sub form. If you update/delete/add a row of the datasource bound to the datagrid, the grid should reflect it automatic ...Show All
SQL Server message output from XSLT XML Task
Where does output from <xsl:message> stylesheet elements go It's not in the Progress or Output window, and there doesn't seem to be a property that controls the destination for messages. David, as I'm sure you know, it's possible for code to capture the output ot <xsl:message/>, and to send the output whereever it likes. Good tip on standard output, though. ...Show All
Visual C# how to associate a filetype with a windows service
suppose i have a custom file format with an extension. how do i associate that file extension with a windows service. suppose when i click on the file with particular extension '.dmz', the particular windows service is automatically invoked. should i use filesystem watcher component. thanks for reading! i am trying to create a simple password based security for a file. when the file of a particular extension is clicked. the service (if it can respond) to ask for username /and or a password. if valid the file is decrypted and the user is allowd access. so can a service respond to file system events such as opening of files etc. if implementing a windows service is a bad idea, how do i go about this project ...Show All
Software Development for Windows Vista Question for Windows OS devs
I am just curious, why did the x64 devs not use \Windows\System64 for the 64-bit os files and leave the 32-bit files in \Windows\System32 instead of 64-bit files in \system32 and 32-bit files in \SysWOW64 Just seems odd. Same goes true for the \Program Files and \Program Files (x86) folders. Seems compatibility would have been easier to obtain by moving the new stuff to new folders instead of putting new files in existing folders and moving existing 32-bit stuff to new folders. Inquiring minds would like to know... :-) ...Show All
Visual Studio Express Editions Deserialization
This is very aggrevating!!! I have serialized three simple questions (textboxes) that is entered by the user. I cannot figure out how deserialize and have the three textboxes show what I have serialized My code (Visual Basic Express) on my main form is as follows: Imports System.Xml Imports System.Xml.Serialization Imports System.IO Public Class Form1 Private theCollectionOfPatients As New ArrayList() Private Sub DoSerializePatient( ByVal patientcollection As ArrayList) Dim theTypes(1) As Type theTypes(0) = GetType (ArrayList) theTypes(1) = GetType (Patient) Dim theSerializer As New XmlSerializer( GetType (ArrayList), theTypes) Dim theWriter As New FileStream ...Show All
SQL Server Reporting Services 2005 and .NET 2003
Hello, Can I integrate a Reporting Services 2005 report into an application done with .NET 2003, so that I can call the report from that application What should I consider for the deployment of the report and the application. Can I do that (I am asking this because for the application I use framework 1.1, and for the report I use framework 2.0, don't I ) Thanks, Marco You cannot design SRS 2005 reports using Visual Studio 2003, however, you can integrate/launch them from a VS2003 application. The easiest way to get this up and running is to have a copy of SRS 2005 running on your local / dev machine. I will continue assuming this is the case. I am also assuming thi ...Show All
Game Technologies: DirectX, XNA, XACT, etc. ARGH!
Alright I have done everythign and looked everythign up on how to draw a sprite no matter what I do i get an error argh! I am using DirectX 9 with Visual C++ 2005 , Can anyone make me a sample code for me so I could see visualy what I am doing wrong. Just a simple draw sprite on the screen SOURCE CODE would be nice :). I get this error, I have posted it on gamedev.net to get more then one opinion http://www.gamedev.net/community/forums/topic.asp topic_id=413120 and i have used this example from msdn forums http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=669329&SiteID=1 ...Show All
Visual Studio Team System Email notification per folder per user
Hello! Is there anyway we can restrain the email notifications for only certain folders in the Team Project Also, not the every member of the development team checkin but just a particular developer checkin should instigate these email notifications. Thanks! Hi Buck! Still having trouble getting email alerts. The command: Bissubscribe /eventType CheckinEvent /address someone@domain.com /deliveryType EmailHtml /server http://MyVstfat01:8080 /filter "'Artifacts/Artifact[starts-with(@ServerItem, \ "$/TeamProject/A\")]' <> null" gives an error TF50003: Unrecognized command-line argument: <> TF50003: Unrecognized command-line argument: NULL Failed to subscribe event: TF5 ...Show All
Visual Basic Updating a Record in a Database Based on Another Record
When a user enters a record for an existing item, I want to find the last entry in the database and update the Date out to the current time. Basically the database would contain the following fields: DateIn DateOut - hidden in form Process Item If the item doesn't already exist, the initial entry will be DateIn, Process and Item. If the item exists I want to create a new entry and update the DateOut for the last entry of item. I say last because there will be multiple entries of item. What's the best way to i dentify the last entry for item while entering the current data. Feel free to offer better process if you have one... When ever you are working with m ...Show All
Visual Studio Express Editions Where do I specify the libraries to be linked
The Platform SDK installation article for Visual C++ Express told to type in several library names to some file. Now when I create a Windows Application and look at the linker command line in the "Project -> Options" I see those libraries in it. How can I prevent some of those libraries from being linked into the .exe The way linking works is that it resolves dependencies in the main exe file. If the linker doesn't need them then it will not actually link them. Well, saying that you need to set the linker options to do it, but its on by default in release configuration. With the way that VC works, you need to remove those libraries from the same file that you added them to. But why would y ...Show All
.NET Development Pass objects as parameters in Web Service?
i'm a newbie to Web Service and i need to do the things below: A simple Web Service with a WebMethod [WebMethod] public RSAParameters ReturnPubKey(RSACryptoServiceProvider s) { return s.ExportParameters(false); } And the client pass a RSACryptoServiceProvider object to invoke the service and get a returned RSAParameters object. I just want to know if it's possible in .NET or are there any alternatives thanks, xml web services may not the right technology for this. xml web services technologies focus on passing data _by value_ using xml formats. i can see two directions for your app: 1) focus on what data needs to be passed from client to server to do whatever you need to do. encode this data into some classes mark ...Show All
Visual Basic VB 2005 Express false compiler error
I have a VB 2005 WinForms Project which is giving what I think is a false error. On the Designer screen for the main form (which normally displays the form layout etc.) I get: One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. '.ctor' is not a valid identifier. Hide at Microsoft.VisualStudio.Shell.Design.Serialization.CodeDom.CodeDomEventBindingService.ValidateMethodName(String methodName) at System.ComponentModel.Design.EventBindingService.EventPropertyDescriptor.SetValue(Object component, Object value) at System.ComponentModel.Design.Serialization.CodeDomSeriali ...Show All
