marcoow's Q&A profile
Smart Device Development Prompted to install virtual switch driver even though I just did
...and I'm running Virtual PC 2004 SP1 on that machine as well, although it hasn't actually been able to access the network cards lately either. I have reinstalled Virtual PC and I have installed the separately available driver and I still get the same error message when I try to enable the NE2000 card in Options | Network. I don't have any hard data to blame VS2005 for VPC breaking, but it's the only major recent software addition I c ...Show All
Smart Device Development debug DLL from C# code
Hi guys, Is there a way to debug dll that I wrote I am doing dll import to this dll from my c# project and I want to get inside the dll code... thanks in advance, Oren. Hi Oren, Are you talking about debugging a native dll called from a managed (c#) code for smart device application If yes then you can debug either native part or managed part at a time. Following link will help you out http:/ ...Show All
Visual Basic User and Application Settings
Hi there, two quick questions for anyone who knows. where do the user and application settings get stored by default and can you change it without needing to handle the settings (load/save) events thanks very much I think you'll find that the settings get stored in the application.config file which is an XML file which resides in the application directory. WindowsApplication30.exe.config for WindowsApplication30.exe You'll ...Show All
Smart Device Development How to write/add Chinese chars in Smart Device CAB project?
when i modify the "Manufacturer" section to Chinese chars ,the project cannot pass through the Compile. the CAB project is P rimary output from a DLL project. How to It could be great if you can give me a clue on that. Thank you! Can you pls include 3 additional pieces of information. 1. What version of VS are you currently use (Beta, RC, CTP). You can find this in the help about. 2. What OS do you have and if the version of VS Engl ...Show All
Visual Studio Using visual source safe within visual C++ express edition
Hello, I have a project under microsoft developper studio 97. This project uses visual source safe 6.0. I'd like to know if, after the installation of visual C++ express edition, it's possible to integrate visual source safe in visual C++ express edition Because when I try to open the .dsw file of microsoft developper studio 97 with visual C++ express edition I obtain the following message :"The source ...Show All
SQL Server SQL Server Diagrams?
hey, i have been looking for information out there in google but i only found programs that create sql diagrams, but im not looking that. im looking information of how sql server diagrams works whats their job and what will change if i create diagrams :s thx and sorry for this noob question mig16 brent, ok. i think i understand what you're trying to say. the mere creation of a diagram doesn't affect how a db ope ...Show All
.NET Development How to POST data and retrive the html respond?
I am trying to build a tool that can allow user to login to the forum and load the forum topics into a listbox. So, let's say: [URL]: www.honghong.net/honghongforum/index.php [Textbox]: txtUser [Textbox]: txtPass [Checkbox]: chkRememberMe [Button]: btnLogin then once I entered those info, it will then POST those data (I'll group them up myself) to the forum. Then I should get a html respond regarding i login succesful or not. (but not the html b ...Show All
Visual Studio Express Editions Redraw issues
I am working on the beginnings of a platforming game. I only have some basic programming experience so I may not see something obvious but here goes. I have some very simple code for a jump command. Sub Jump() Dim intx As Integer Dim dblwait As Double picMario.Image = WindowsApplication1.My.Resources.Resources.M_J For intx = 1 To 10 picMario.Top = picMario.Top - 5 / intx For dblwait = 1 To 100000 Step 0.1 Next ...Show All
Visual Studio Express Editions RS232 (Comm Port) Cant read the line HELP
Hi, I was trying to read the text from comm poert w/ new SerialPOrt object but for some reson it dosnt work. But I can write everything though. I'm using all defult seetings for the port object. And here is the code that I have. Also when I chnded read timeout, I got an error in time out. Public Class PORTs Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click sp.Op ...Show All
Visual Studio Team System Not letting me rename web projects after branch
If I have a project called WebUIApp in a solution called MySolution that exists in a Main line, in source control explorer I have $/MyTestProject/Main/MySolution/WebUIApp. In this case, I might have the WebUIApp at http://localhost/MyTestProject/WebUIApp . Then I branch the Main line to $/MyTestProject/V1/MySolution/WebUIApp. I then get latest versions on this and then try opening the solution. When opening the solution, ...Show All
.NET Development Private Key Exporting problem
Hi guys, I have a problem with exporting the private key as a pfx file from a certificate. I am using following command to create a certificate: makecert -sk my -sky exchange -r -n "CN=mmm,OU=Cert,O=USYD,E=xxx@hotmail.com" -ss my mmm.cer When I am trying to export it in MMC(management console), the checkbox of exporting the private keys is disabled. I don't know why this happened since I have specify the '-sky' option in the command. I ...Show All
Visual Basic Counting Letters in a string
Hello, I am trying to get VB to count how many A's B's C's D's E's etc... that are in a declared string, can someone tell me how to do this. thanks Ray RFeather[AT][NOSPAM]chstaffing.com Dim aCount As Integer = 0 Dim bCount As Integer = 0 Dim cCount As Integer = 0 Dim myString As String = "aabbccc" Dim i As Integer For i = 0 To m ...Show All
Visual C# How get data from device usingb RS232 in C#.Net 2003
Could u tell me How get data from device usingb RS232 in C#.Net 2003 i m using MscommLib There is another option than reply me.like using API than how please reply with small example You can see one sample in: http://msdn.microsoft.com/netframework/programming/interop/default.aspx pull=/msdnmag/issues/02/10/NETSerialComm/TOC.ASP ...Show All
SQL Server "Remote access to report data sources and/or the report server database" is not supported in this edition of Reporting Services.
I'm using SQL Express with Advance Services & I get this error when I try to deploy my reports. Why do I get this error An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'EDPSYS'. (rsErrorOpeningConnection) The feature: "Remote access to report data sources and/or the report server database" is not supported in this edition of Reporting Services. (rsOpe ...Show All
.NET Development Cryptography - I'm new to it and confused!
Hi, I have a basic - very basic - understanding of Cryptography but I'm having trouble with design and code. My goal is to create an encrypted string and store it in a file so other applications can read, decrypt and use the data. I want to use the RSACryptoServiceProvider to accomplish this task. I have written (used most of the code from msdn library ) a little utility that will encrypt the data but when I try to decrypt the data, ...Show All
