e. ogas's Q&A profile
Software Development for Windows Vista Custom Info cards
hi using info cards can i create a personal info card with a custom attribute.....what i want to do is to add a attribute like my education qualification on to a personal card that i create... Regards Raguvind Ganesh Hello Raguvind. The July CTP introduced few unexpected breaking changes: as a result, the sample card writer currently available does not produce compatible cards. An updated example should appear on wcs.netfx3.com shortly, I suggest to keep an eye on the samples & tools sections. HTH, Vittorio ...Show All
Windows Forms (Collecting Data from Objects) Help Please Thxs
After i get all the TextBoxs,RadioButtons and DropDownBoxs complete,I need to collect all the Data from the Objects.. And put them into a Uniform Text Format (Cascading Style Sheet) following a Certain Format... I was reading threw my book and was thinking i could assign all the Objects to an Array to Collect all the data...Once the user Clicks the "Generate" Button it will collect all the Data & put the information into textBox1,Following a CSS layout... So with that i was also woundering can a CSS be used in my Project as a Text Data Source so when the Generate button is Clicked all the information will follow the Format provided... The Example below is what needs to be produced from all the Objects in my program... ...Show All
Software Development for Windows Vista Resuming Host-Runtime and Checking for Needed Services
We are building a workflow "host" which will load and run various workflows for the organization. Most workflows will require the Persistence and Tracking services, while some will need the ExternalDataExchange Service and other custom services we design. What happens if we've loaded several services and have workflows running, persisted, etc. and the host is taken offline/crashes. When the host restarts and resumes any persisted/queued workflows will the host automatically invoke the required services for each workflow I know that we can check (from within the runtime host) to see if a specific service is running, and if it is not we can add it to the runtime. But what happens when the host comes back after a crash. Is the ...Show All
SQL Server Cube deployment issue SSAS 2005
Hello all, I got an issue with deploying my cube. I am new to SSAS 2005, and I cannot find the option to define which account to use with deploying. I managed to choose the server for deployment, but strangely enough, no user can be selected, so when it deploys, it throws an error stating the standard windows login isn't valid (wich is correct, but I do not want to use standard windows login). Thanks, that answers my question about how these cubes are being stored. :-) Is it suffice when I get those rights only on that particular directory where the cube is stored ...Show All
Visual Studio 2008 (Pre-release) Release Images from process
I have an ASP.NET application to generate pages for a magazine. To generate this pages I use WPF, I call a new Thread with a STA Appartment. Thread call = new Thread(new ThreadStart(Generate)); call.SetApartmentState(ApartmentState.STA); call.Start(); In the magazine I'm generating I use some images that I can download from the web, after downloaded these images are stored in a server folder to be used later by WPF to generate the pages. The problem is that after generating the pages I want to delete the images, after the process is complete and the application process keeps locking the images. I've tried to terminate the process using the images, but it seems that it is the webserver using the images and the only way I f ...Show All
Visual Studio How to compile windows app without VS?
Hello, I have a windows application which has multiple forms and classes files and icons made by visual studio 2003 Now i don't have visual studio, but only i have the compiler csc.exe , so how to comile the project ps: can the 2003 project be compiled so that it works with .net framework version 1.0 Regards My experience with it is limited, but as far as I can tell MSBuild is only available with VS2005. You should still be able to do everything using csc compiler though. You can incorporate the icons and such into resource files, then use the /linkresource switch for the compiler to compile it into the assembly. You can find a resource editor at http://www.aisto.com/roeder/dotnet/. Hopefully this will help get you thr ...Show All
Visual Studio Team System Access "Start Date" and "Finish Date" via TFS API
Hi, I'm integrating access to TFS in one of our internal development tools. So far I have successfully connected to the TFS, retrieved a WorkItem etc. I was also able to modify the "Completed Work" field programmatically. How could I access "Start Date" and "Finish Date" Those fields seem not to be part of the Fields collection. I haven't found any samples. Any help would be appreciated. Regards Uwe Thanks for your reply, but the problem lies in another area: I have found out that it is no problem to access (and modify) those fields. But those fields are initially not present in the fields collection. They are added somehow by Excel or Project when first ...Show All
Silverlight (formerly WPF/E) Any one have samples of 3D text (the code), like the ones in Joe Stegman video?
Any one have samples of 3D text (the code), like the ones in Joe Stegman video I would like to do something like this, but have no clue where to begin. thanks I'm working on figuring out the source for the 3d text, but it won't be until the new year. Using some of the 3d to 2d work that Flash developers do would be the start (like http://www.adobe.com/devnet/flash/articles/flash_3d.html ) Slyi - Regarding the text effects that you posted, no right now we do not have that ability. -mark Program Manager Microsoft This post is provided "as-is" ...Show All
Visual C++ Libraries linkage errors make me CRAYZEEE
Hey all, I"m frustrated from working with Visual C++ and libraries :/ I am developing my MFC based project, for which I wanted to add a log system to track my bugs and error msg and etc., I have created a static library project and created my Log class: Make sure that your .exe project and all static libraries link the same runtime library. For debug build, all projects should e.g. use "multi-threaded debug", and for release build, all should use "multi-threaded". The setting can be found in your project properties (ALT+F7) -> configuration properties -> c/c++ -> code generation. ...Show All
Windows Forms Error during installation
Hi, We have deployed a ClickOnce app with more than 100 users. Only 1 user is getting the following error message. All users are on Win XP SP2. Any pointers will be appreciated. PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.050727-4200) dfshim.dll : 2.0.50727.42 (RTM.050727-4200) SOURCES Deployment url : xxx ERROR SUMMARY Below is a summary of the errors, details of these errors are listed later in the log. * Activation of xxx resulted in exception. Following failure messages were detected: + Exception reading manifest from xxxxx: the mani ...Show All
Visual C# Connection string for MS Access database having password to open
Hi every body I m try to make a windowns form application named" Persional Diary" using MS Access database and C# ( Oledb provider) because this is an example for low level secret infomation so that I set password to my Access file ( Using MS Access toolmenu / security...so no one could open without password) But then now I can not acess this database using c# anymore. Could you help me to modify the Connection String in this problem, or give me an another way Thank you DongMT, VietNam Thank you, Glenn Wilson as your guide, I take some info here and I will try it , I used to visit this site but dont know why I do not remember it ... Thank you ...Show All
.NET Development ICorDebugILFrame->GetArgument() wierdness
I'm working on a managed code debugger in C++. I'm using mdbg as my main refrence as there is very little documentation on how to implement the ICorDebug interfaces. I'm trying to enumerate a stack frame like gui.dll does. My code to get function parameters is: ICorDebugValueEnum *valueEnum; frame->m_pILFrame->EnumerateArguments(&valueEnum); ULONG argCount; valueEnum->GetCount(&argCount); ICorDebugValue *pDebugValue = NULL; for (ULONG i = 0; i < argCount; ++i) { pDebugValue = NULL; hr = frame->m_pILFrame->GetArgument(i, &pDebugValue); I took this code from mdbg. I'm able to get some arguments but at other times ICorDebugILFrame->GetArgument() returns an hr of 0x80121304 so ...Show All
SQL Server URGENT: Error Message: The user is not associated with a trusted SQL Server connection
We have currently migrated our Reporting service Server to a new Domain. We also have renamed the server. Now when we go to reporting services we are getting this error message below The report server cannot open a connection to the report server database. A connection to the database is required for all requests and processing. (rsReportServerDatabaseUnavailable) Get Online Help Login failed for user ''. The user is not associated with a trusted SQL Server connection. We believe we have added the new user account to everything, but we are missing something. Can someone tell me what to change when you convert a machine from one domain to another and rename it Thanks Dear , Configure ur reporting serv ...Show All
SQL Server how can I get vb6 to update offline recordset when view has defined an attribute as adFldUnknownUpdatable?
hopefully, someone has already solved this problem I have been assigned an application that maps data from access databases into a view in Sql Server 2005. A vb6 application does a select on the view. The recordset is then modified by the application, and eventually, the original tables will be updated with the new data. Some of the fields in the view are the result of calculations ( i.e. adding multiple varchar fields together to produce one complex varchar result ). Any of the fields that are calculated in the manner previously described have the adFldUnknownUpdatable bit set in the attributes of the recordset, and consequently, you get a -2147217887 error ( multiple-step operation .... ) when you try to change the value of the field ...Show All
Smart Device Development Could the smart device get data from the external device?
Hi, all, I am a beginner for the programming in smart device. I want to use the smart device (ppc or smartphone) to get 8-bits data from an external device (MCU). Could anyone tell me it is possible and give me some reference Thanks. Regards, Wilson YU Hi Ilya, I am glad that you almost solve all of my problems. Thank you very much. Regards, Wilson YU ...Show All
