Gyozo's Q&A profile
Smart Device Development Compact Framework support MFC C++ serialization module ?
Hi All, I would like to know if CF 1.0 support the functionality to read the data that is created using MFC C++ Serialization module (specifically CArchive). If not, how about CF2.0 If yes, can someone point me a direction of how to do it and maybe provide me with some papers that I can go through in more detail level by myself. To make the problem clearer, the choice to use CArchive in the application is due to its size. We ever use the XML where it is readable everywhere, however, we found that the file size of XML is nearly 10x bigger than the one that is created using CArchive. Anyone have suggestions a better solution in the case CF1 ...Show All
Visual Studio Express Editions long interval between StreamReader/StreamWriter processes
Hello, in my program I am using StreamReaders and StreamWriters, and they work, but if I use the StreamReader or StreamWriter process, it takes long before I can use them again, so now my question is: can I make the process-intervals(sorry if this name doesn't exist) shorter Or should I use an other way to read and write files, and who can be used in faster time-intervals Grtz, Tom. What do you mean by "it takes long before I can use them again". Could it be that you are getting an exception like "Access Denied"/"Sharing Violation"/"File is in use" etc. In this case probably you don't " ...Show All
.NET Development ADODB.DLL Command Output Parameters
Hi, Having probs with ADODB.DLL (C:\Program Files\Microsoft.NET\Primary Interop Assemblies\adodb.dll) Here's one issues I'm seeing with the following VB code if you use CreateObject calls it works and I get a return parameter back. If you use the ADODB.dll (Replace the createobject lines with the commented out Dim x As New ADODB.xxx) then I can't get back output params. NOTE: To replicate this create a console app, replace module1 with following and add a reference to adodb.dll. Then Make a DB add the sproc below and put your DB and user in the connect string. Thanks in advance for any help. Is anyone actually using ADOD ...Show All
Visual Studio Express Editions Configuration Manager In C# Express
How to change Configuration Manager in C# Express 2005. I try to open Configuration Manager dialog box but Configuration Manager menu is disable. i try with this step: 1. Select Solution in Solution Explorer. 2. Choose menu Build - Connfiguration Manager am i miss something thanks. best regards, OktaEndy You need to reference the System.Configuration (version 2.0) library in your Solution References. ...Show All
Smart Device Development Binding Image path from XML document to Imagebox -- Not working....
Hello, I was sent from the XML forum here. Here's the post I posted in another forum. I've been having problems showing the images in my xml file. I can show the first image (kopf_ap.jpg) no prob, but it doesn't change when the other labels are bound/shown in their appropriate label. I have tried to bind the name of the file (burl) to a text label, and it worked. It's just not working for the image. Thanks for any help! I've been stuck for a while on this one... :S I am programming a pocket pc program (C#) and I'm getting everything except the advancement of the image. I would also like to say that I'm an extreme newbie when it come ...Show All
Visual Studio Team System Bug in FxCop 1.32 displaying an FxCop custom rule error
When I run FxCop.exe (build 50628.0) and analyze an assembly using my custom rules and then double click on the error generated from my custom rules I get the following error:- System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.FxCop.UI.MessageDetailsForm.DisplayMessage() at Microsoft.FxCop.UI.MessageDetailsForm.SetListViewItem(ListViewItem value) at Microsoft.FxCop.UI.MessageListView.UpdateSelections() at Microsoft.FxCop.UI.MessageListView.MouseUpHandler(Object sender, MouseEventArgs e) My rule's XML is:- <Rule TypeName="ThreadNotProvidedBy ...Show All
SQL Server Could anyone attach the AdventureWorksDW to their SQL Server database engine?
Hi, all here, I got a problem when trying to attach the AdventureWorksDW sample database to the SQL Server database engine. Error occured as: could not find row in sysindexes for database ID 21, object ID 1, index ID 1, Run DBCC CHECKTABLE on sysindexes . The sample database was downloaded from http://www.microsoft.com/downloads/details.aspx FamilyID=e719ecf7-9f46-4312-af89-6ad8702e4e6e&DisplayLang=en . So could anyone help me to solve this problem tho thanks a lot for any guidance and help. Hi Hellen, Try isntall from scripts.. look this URL on BOL ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/instsql9/html/7de6ceb0-be7a-43 ...Show All
Visual Studio Team System Bug in team build report in beta3??
I have strange problem with Beta 3 (I have to test it on refresh version also), when I launch a Team Build from Team Explorer, if I keep the "report" Team build generates, code coverage results are not included in that report page, but if I close the page just when it starts to be generated (when it first appears beginning team build), code coverage results are correctly included, it's not big problem for the moment (it's beta I know) but it is curious Luis, Just to clarify, I'm assuming what you mean to say is that when you reopened the completed build, you were able to see the code coverage data The code coverage data gets generated ...Show All
Visual Studio Tools for Office VSTO excel update question
Hi, I have created a VSTO excel application. I have added a listObject control to it which loads the data from the database at the run time. Now, on the click of the button on the sheet, I wish to update the data back to the database. I want to do all this programmatically. how can this be achieved. Please help!!!!! Regards, You should be able to find the answer to your question in the product documentation. Try this topic: http://msdn2.microsoft.com/en-us/library/bybtbt99(en-US,VS.80).aspx Harry Miller This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All
Microsoft ISV Community Center Forums Problem in CDO.iMailBox
I am working on code sending email in MS-Access using Exchange Server 2000. I grab the code from http://msdn.microsoft.com/library/default.asp url=/library/en-us/e2k3/e2k3/_cdo_imailbox_interface.asp . Now my problem is casting CDO.Person to CDo.iMailbox iPer.DataSource.Open "LDAP://" & Info.UserName '==> This line give me iPer obj Set iMbx = iPer '==>This line is not able to convert properly. msgbox(iMbx.Basefolder) '==>This line is giving me a error I am totally blank here. If anybody now how to solve this or did solve it. Pleas hemp me out. Viral Parikh ...Show All
Software Development for Windows Vista Example Web.Config
Could someone post a example web.config with all the sql services (persistance, tracking, etc). For some reason the following config items in web.config (in there respective places). < add type ="System.Workflow.Runtime.Hosting.WorkflowPersistenceService , System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" ConnectionString ="Initial Catalog=WorkflowStore;Data Source=.\SQLExpress;Integrated Security=SSPI;"/> < add type ="System.Workflow.Runtime.Hosting.WorkflowTrackingService, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKey ...Show All
Visual C++ Getting a certain Line of a string
Hello, I'm creating an application that needs to process each line of the TextBox's Text and check for some key-words. I just don't know how to set my string variable to a certain line of the TextBox's Text. With Thanks, Gal Beniamini. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Microsoft DirectX SDK (August 2005) Release
The August SDK Has been released. IRComm Post At the moment there is no referance on the developer Center, but I have transfered some information from the readme to the above post. DirectX Developer Center Direct Links DirectX 9.0 SDK Update - (August 2005) DirectX 9.0c Redistributable (August 2005) for Software Developers - Multilingual Mykre www.ircomm.net Managed DirectX and Game Programming Resources Here are the proper URLs DirectX 9.0 SDK Update - (August 2005) DirectX 9.0c Redistributable (August 2005) for Software Developers - Multilingual ...Show All
SQL Server How to Reset the Primary Key Counter
I created a database table in VB.NET 2005 Express. I defined the primary key and set it to autoincrement for each record. I deleted all the data in the table and reloaded it with revised data. The primary key did not reset back to 1 for the new data. How can I force the Primary Key ID to reset back to 0 so the new data items start at 1 again Thanks. Hi, you can use TRUNCATE TABLE <TableName> TRUNCATE TABLE immediately frees all the space occupied by that table's data and indexes. The distribution pages for all indexes are also freed. You can also use the code below to reseed your identity while r ...Show All
SQL Server Can't find properties
This is the first time I've used SSRS. I've created a report and in preparation for deploying it I am trying to find where I set the properties. In Visual Studio 2005, in the Solution Explorer I right click on my .rdl file and select properties. The only properties listed are File Name (which is changeable) and File Path (which is not changeable). The property pages icon in the same dialog box is greyed out. Am I missing someghing Any help would be greatly appreciated. Thanks. Go to the layout tab and try clicking on an area outside of the white area where you place your report objects. This should give ...Show All
