vazi's Q&A profile
Visual Studio Express Editions Suduko?
I was just wondering if it was possiable to make a suduko computer game with visual c# 2005 express edition i bought the book build a program NOW microsoft visual c# 2005 and did all the projects in the book and wanted to start a suduko game! If its possiable can someone tell me a little on how to start or do it Thanks Well, it looks like approx. 80% of people who download an express edition are working on a sudokan game, so I'd imagine there's probably some examples flying around somewhere, in sites like www.codeproject.com I would imagine the first step is to build a 2 dimensional array to repre ...Show All
Windows Forms Application.Exit()
After exception I need to exit application and Application.Exit() seems not working in my windows application. I'd recommend reading the sticky post on how to ask good questions. 'Application.Exit not working' would be a better subject header for this, and you really need to define 'not working'. What is happening What does your code look like ...Show All
.NET Development .net for erp?
How do we use .net to optimise erp systems ...Show All
SQL Server Advantages of Multiple Instances
Where can I find advantages of Multiple Instances on a single Server. Instances are fairly well isolated from one another. They can run under different service accounts, store data by default on separate disks, etc. In 30 second of looking through BOL I couldn't find a good summary description of instances but I bet it's in there somewhere. Do you have a more specific question or are you looking for general info Are you asking about the SQL Server Engine in particular, or other components Paul ...Show All
SQL Server Which Edition of Sql server can run on XP with utility to create table?
Hi everybody, Which Edition of Sql server can run on XP with utility to create table like query analyzer and enterprise manager Also for viewing the records. By the way, free or evaluation copy only for windows XP OS. Please specify details. Thanks. den2005 Thanks Mark, I would try it if it works. I'll let you know. Dennis ...Show All
Visual Studio Team System Error in Bug rate section
Hi I am getting this error in Bug rate section (and only here): "An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'AreaPathPath1'. (rsErrorExecutingCommand) The default members for the dimension 'Specified' do not exist with each other." I have checked all the report sections under "Reports" and they all seem to work except Bug rate. What can cause this Did you get this sorted I have the same issue and have checked that a) I have a Work Item of type Bug b) Analysis Services is running on the data tier. Any other ideas Cheers, Alan ...Show All
.NET Development Adding URL-encoded '&'s as data in a URI parameter
I'm developing a client application that needs to send the '&' character in HTTP requests as data. I DO NOT want these to be interpretted as the start of a new parameter but rather would like them passed to the application as parameter data. I realize that you need to URL encode characters with special meaning. My problem is that in .NET, when you attempt to create a URI with a %26 (the URL-encoded version of '&'), it automatically converts it back to the '&' character. So for the following URL: http://www.targetsite.com/application parameter1=whatever¶meter2=<script>l ert(&am ...Show All
Visual Studio 2008 (Pre-release) Please, test: 3D WPF chat
We can't believe that we have created a 3D WPF chat application having only 417 Kb! Please test and let me know if it's working for you. Download these 4 files (rightclick): http://www.dmu.com/Tu43v.exe http://www.dmu.com/Tu14p.dll http://www.dmu.com/door.wav http://www.dmu.com/boing1.wav Run the exe file. Wait the contact with our server. Liberate the firewall. You can choose one of two avatares. Run another copy - if possible at another machine. Choose another avatar at this new copy. You can move the avatar using the keys: i, j, k, l You can move the camera choosing one direction an ...Show All
Visual Studio How to add custom control to Visual Studio 2005 Toolbox?
Hi all, I am working on a Windows Forms custom control now and I would like to place my control right on the Toolbox window after installation, however, this seems to be a problem now. I notice that EnvDTE and EnvDTE80 namespace and the DTE2 interface seem to provide customization of VS IDE environment, and I tried as follows: 1> Get a DTE2 instance by Activator; 2> Use DTE2.ToolWindows.ToolBox.ToolBoxTabs.Add to add a new tab; 3> Use ToolBoxTab.Add(name, object, vsToolBoxItemFormat) to add my control. here name="Control1", ie, and object=@"C:\Control1.dll" as mentioned in MSDN. Here is the problem. this method should retu ...Show All
Visual Studio Tools for Office Unable to rebuild my project
Hi, I've produced a C# automation addin for Excel and all works well. However, I'd like to be able to recompile the addin without closing Excel and reloading the addin. I've tried unchecking the addin from the addin list in the tools>addin menu, but it doesn't work. Does anyone know how to rebuild & overwrite the existing file without having to close Excel Thanks !! Thanks for the reply. Soooo frustrating/disappointing. Lets say I'm an addin developer and I typically recompile my an addin 10 times a day - if it takes 30 seconds to close and reopen Excel, over the course of a year I would spend over o ...Show All
Visual Studio 2008 (Pre-release) IQueryable with out GetEnumerator (foreach)
Can I move manually through the IQueryable collection with out using GetEnumerator (foreach) I mean: I have this query IQueryable < Person > q = from c in db. Person select c; and now I want to work with the Person Objects which I get from the query but without using GetEnumerator (foreach) Can I move separately through the IQueryable collection (I haven't tried this) can't you use the indexer <pre>p ,/pre> - where 'n' is the index Sorry, "open square bracket"n"close square bracket" ...Show All
Visual Studio Formatting Negative Currency
I'm trying to display negative currency in a report as ($3,123), but the best I can do so far is -($3,123). I'm using the following expression to format the textbox. =iif(Fields!Daily.Value < 0, "($#,##0)" , "$#,##0" ) Any suggestions Set the textbox to =Fields!Daily.Value. In the properties window for the textbox, on the format tab, set the format code to "C0". The currency format codes are described here: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemglobalizationnumberformatinfoclasscurrencynegativepatterntopic.asp ...Show All
.NET Development Printing Datagrid from ASp.net -- Error Message is displayed
Hi All, I am using this coed for printign a DataGrid in ASP.Net --- The DataGrid is stored under the DIV tags....but whenever i am running this code, i get teh error strOldOne is undefined... I am not exactly getting wht is teh use of the last statement prtContent.innerHTML=strOldOne; ---- Also if i remove this from teh code snippet, i am still facing this problem (Error Message : "strOldOne is undefined") -- Can u please help me on this.....it's really urgent..... Below is the code snippet i am using currently... <script language=javascript> function CallPrint(strid) { var prtContent = document.getElementById( ...Show All
Visual C++ Unicode characters in console-application.
I'm writing a program that prints the date in different languages, but it dosn't work with languages that uses the Unicode Character Set. Here's the source-code: #include <iostream> #include <locale> #include <time.h> using namespace std; int wmain(void) { wchar_t date[81]; time_t currentTime; struct tm tmTime; time(¤tTime); gmtime_s(&tmTime, ¤tTime); _wasctime_s(date, 80, &tmTime); locale swedish("swedish"); locale::global(swedish); wcsftime(date, 80, L"%#x", &tmTime); wcout << "Svenskt datum: \n"; wcout << date << endl &l ...Show All
Visual Studio Tools for Office VSTO Question: Looking for WORD Action Pane example that lists and select contacts from Outlook
Would really appreciate any help or guidence. I want to have an Action Pane in Word that somehow allows the user to select a contact from the Outlook contacts and insert that information in different parts of the document. Are there any examples of integrating contatcs and using the action pane Thanks for any help, VA Actually, you do not need an 'actions pane' example because what you want to do can be done in a variety implementations (winform, user control, etc.). What you are going to do is work with the Outlook OM programmatically to retreive contact names and display them. I have compiled a list of resources to ge ...Show All
