JAlexandrian's Q&A profile
Visual C# Strange prolem with Culture settings
Hi, We are writing the .net application that should always work in en-US culture, regardless of the control panel settings. I was able to force the GUI culture to be en-US by the following code Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-CA", true); Thread.CurrentThread.CurrentCulture = new CultureInfo("en-CA", true); After that the DateTimePicker components are always displayed in en-US culture, which is good. But the PROBLEM is that if I retrieve the the DateTimePicker value in the code, it comes in Control Panel settings again. To retrieve the value i use the following: pickerDate.Va ...Show All
Visual Studio Team System Working folder already in use by another workspace on this computer
I am getting this message on a computer on which there are no other workspaces for that computer. In addition, all of the working folders have been deleted for the workspace that I am working in. We do occasionally log into that box with another user name, but there were no workspaces defined under that login either. (Besides, can't we see all the known workspaces if you log into TFS as admin anyway -- BTW: I don't particularly like that "feature" under the standard workspace editing location for admins because its easy to grab the wrong one.) You may want to try running "tf workspaces /server:[ser ...Show All
Windows Forms Forms Designer fails to start
Error occures when I try to open Windows Form in Designer view, it looks like this: The designer loader has not been initialized yet. You may only call method after initialization. Problem occured after I've installed C# Express on the system with VS 2005 beta and VS 2003 installed. For now I've uninstalled all Studios and Frameworks with Visual Studio 2005 Uninstall Utility and then installed VS 2005 beta 2 again. But the problem remains. Please, help. I don't understand. Are you trying to install both the release version of VS and VS beta 2 You can't run both the beta and the release version ...Show All
Smart Device Development vs2005 compiler is fatally flawed: generates bad code
In this very simple excerpted code, the compiler fails to do its job. If you want it recreated, I propose someone there try to recreate it. I've already got it happening here. It's as simple as it gets. From the type of failure, it looks like it's going to happen a lot. r12 is assigned the address of mc.decodePriority only if gDecodeMaxPriority >= 3, yet it, r12, is still used as the store address when it is not >= 3. r12 is pointing to nowhereland in the code below, when, for example, gDecodeMaxPriority is 0. if (mc.inWaveMode ! ...Show All
Visual Studio could not load type Microsoft.VisualStudio.CommonIDE.TemplateWizard.Wizard
Hello, After installing VS.NET 2005 Beta 2 from the DVD (visual studio team suite beta experience kit), i installed a newer beta build . Now i had had to switch back to the Beta 2 that came with the DVD and i have all sorts of problems. Now, the latest problem is the one in the subject. Anyone can help Best regards, Lucian Chiriac Hi, i'm struggeling with the same problem, but it goes a little further: In the directory %programfiles%\Microsoft Visual Studio 8\Common7\IDE\ there is no file named Microsoft.VisualStudio.CommonIDE.dll and in %windir%\assembly\ there is no subdir called GAC_MSIL , so i ge ...Show All
Windows Forms Unable to Install TV Server on Windows Server 2003 Std.
I get well into the install and then a window pops up: "Invalid Parameter" Which tells me approximately nothing. There is an EVENT: Event Type:Error Event Source:MsiInstaller Event Category:None Event ID:11001 Date:4/28/2003 Time:10:46:14 PM User:N/A Computer:VECTRA1 Description: The description for Event ID ( 11001 ) in Source ( MsiInstaller ) cannot be found. The local computer may not have the nec ...Show All
SQL Server Problem with SSIS Transaction...Transaction Scope
Hi, I am having some problem with SSIS transaction. Eventhought I tried to imitate the concept that Jamie presented at http://www.sqlservercentral.com/columnists/jthomson/transactionsinsqlserver2005integrationservices.asp . My workflow is as followed ********************************* For Each ADO.Record in Oracle (transaction=not supported) If (Certain_Field_Value = 'A') Lookup Data in SQL DB with values from Oracle (transaction=not supported) DO Sequence A (Start a Transaction , transaction=required) INSERT/UPDATE some records in SQLDB(transaction=supported) Finish Sequence A ( transaction shoul ...Show All
Windows Live Developer Forums MSN Best App Competition Prizes?
Hello winners of the MSN Best App competition. Being one of the winners myself, I was wondering whether anyone has received anything (documents, forms, PRIZES) after they sent their affidavit of eligibility back to Microsoft I tried contacting Jennifer Johnson one month ago and she said that they are still in the process of sending out additional forms for us to fill out. She said that they are planning on having all of them sent out by the end of next week (which should've been April 14). On April 18 I emailed her again inquiring about the status of the documents since I haven't received any. I haven't heard back from her since. Th ...Show All
Visual C# using ADAM to authenticate a user
I am writing a C# service that authenticates a user. I was wondering if there was a way to authenticate users via Active Directory Application Mode (ADAM) If not, how would I go about doing this in Active Directory, for example, what functions are available for doing this Thanks in advance, DW ...Show All
Visual C++ Structure member definition not recognized
Hi, I have the following structures: struct ObjCol { char szColName[64]; // column name ColType colType; // type of data ulong ulSize; // size }; typedef enum { TYPE_INTEGER, TYPE_STRING, TYPE_BOOL, TYPE_RAW, TYPE_EXT_TIME, TYPE_EXT_DATE, TYPE_EXT_TIMESTAMP, TYPE_CONV_UL_TIME, TYPE_CONV_UL_DATE, TYPE_CONV_UL_TIMESTAMP } ColType; and I call a method which initializes the ObjCol structure. I call it from MC++ project and from a C++ project. The problem, however, is that when calling it from MC++ the colType member is undefined, at least this is what the debug think, but I looked in memory where the pointer t ...Show All
Visual Basic Problem in VB.net 2005 using ODBC Provider
when i add new data source via odbc = Microsoft ODBC Data Source (ODBC) using Mysql database using option : use system or data source name when i click finish error showed : One or more error(s) occured while processing the database object(s). click ok to continue anyway or cancel to goback the wizzard and try to fix the errors. <`test`..`tablename1`> Could not retrieve schema information for table or view `test`..`tablename1`. I think this is a bug in vs.net 2005 if you had fixed this problem please send me a patch to fix thank you. Regard Hoang Hello as i knew ...Show All
.NET Development xml documentation
Hi! I've a problem cos my boss wants to do a strange thing (i think so). i'm gonna try to explain it: He wants to know how the .net generates the xml documentation when you programmer with c#. I mean which classes of .net are called to generate this xml. Basically, how (I supose) the compiler read (I supose) the .cs file and take just the documentation tags (<summary>,<param>...). Once you've got just the tags you need, it's easy to generate the xml, but i don't know how to do the before step. I have an idea but i think it's not the optimal one. My idea is: open the .cs file and go ...Show All
SQL Server SQL Server Express Security?
We are releasing an application built on SQL Server Express in the next few months. Our clients are mostly small companies with little technical knowledge, and they will be using our application on desktop computers where everyone likely logs in as the same user. As such, my thinking is that we setup SQL Server Express as in SQL Server Authentication mode. This way they could select an Administrator password upon first installation, and manage user names and passwords from within the application itself. Any thoughts Also, how would we install this scenario We haven't been able to figure out how to custo ...Show All
SQL Server Attach Access Database to SQLServer
Attach Access Database to SQLServer It seems it is necessary if I want to put it on the internet through IIS. I tried add data source through tools and tried most combinations, but nothing led in that direction. I also did a search. If not, the alternative is importing the data into sqlserver 2005. What worries me about this is incrementally importing new tables, views, etc., and new rows. Is this later possible dennist685 > It seems it is necessary if I want to put it on the internet through IIS. No. My guess is that you might security issues. The account of which runs your statement ( ...Show All
Visual Studio Tools for Office where is Access runtime
I installed Visulal Studio for Office 2005 thinking that it has the Access Runtime included, but can't find it anywhere....Even in the setup I dont have the choice for Access, only for Word, Excel and outlook. Is it included or not Similar question was answered just yesterday. See this thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=258458&SiteID=1 ...Show All
