&#169&#59; Ţĩмό Şąļσмāĸ's Q&A profile
SQL Server cannot start report server on local computer
HI, I tried to deploy reports on locahost. Yet, I still need to start the mssqlserver service on local computer. I tried all the possibilities shown from the help but still i can't have it started. How will i start mssqlserver service on local computer alone thanks soWillingToLearn, What are your settings for the msSQLserver service LogOn Can you check your application log file under Event Viewer to see what error message is being generated. Ham ...Show All
Visual Studio Prevent control from showing in toolbox?
I have a C# control library (Windows.Forms controls) containing several controls. Some of these controls are base classes I don't want the user to have direct access to. I would like to prevent these base class items from showing up in the toolbox when the library is added to the toolbox via 'Choose Items...'. The question, then is how does one prevent a control from appearing in the control list when the library is added to the toolbox (I have no problem supplying custom bitmaps for the items I DO want displayed.) Add the <ToolBoxItemAttribute(False)> attribute to the base class. See: http://msdn2.microsoft.com/en-us/library/tx1k7z59.aspx ...Show All
Visual C++ enum declaration - newbie can't do it! :)
i'm using VS C++ 2005 native, and I can't seem to get an enum declared. I can do it in a CLI app, but not native C++. There was a larger example in my book, but I can't get a simple app that ONLY declares the enum to compile. Here's the error. Following is my code. I know the enum declaration is in the main() function; I've also tried declaring just before the main() function. Thanks in advance for any suggestions/help! Brian Error: Error 1 error C3168: 'bool' : illegal underlying type for enum c:\documents and settings\<user>\my documents\visual studio 2005\projects\c++\enum_test\enum_test\enum_test.cpp 10 Code: // enum_test.cpp // #include "stdafx.h" #include <iostream> using n ...Show All
Software Development for Windows Vista How to call a sequential workflow Synchronously from a hosting windows application while workflow could operate on forms.
When we host a sequential workflow on a windows application, the workflow may have to change the state of hosting form. If we want workflow to return back to application before going forward we generally use AutoResetEvent.WaiOne and Set methods to control the flow. Now if there is a scenario where the workflow need to operate on the hosting form, say to populate a listview, then we use a CallExternalMethod activity. But to populate the listview we need to Set the AutoResetEvent which will make the main appliaction thread run. Now I want that the application thread runs to populate the listview and returns to workflow and hang. To solve this issue I will put a SuspendActivity after each CallExternalMethod activity and will use BeginInvoke ...Show All
Visual Studio Express Editions Im a noob !HELP! plz
So anyway it has been a while since i have fooled around with VB. Just wondering if anyone would be willing to help me a little. So my idea is basic im sure. I want to make a simple program that has two buttons, two text boxes, a calander, and a print button. It will keep track of the time i work. a clock in and out button and two textboxes for them. heres the problem i dont know how to save the date and the time in the txtboxes to notepad or how to print that document. I also thought maybe i could eliminate the text boxes and just when i press clock in save the date and time to notpad. Any suggestions. Any help please. Thanks. So with this code is print a button or when I clock in and out it prints. It lo ...Show All
SQL Server Where can I download SQL Server Express SP2?
Where can I download SQL Server Express SP2 This page still refers to SP1: http://msdn.microsoft.com/vstudio/express/sql/download/ Thanks. Same here. I've been watching the SQL Express download page and it has yet to be updated to reflect SP 2. Hopefully they will get this up today - I've been waiting for the Vista support. ...Show All
Windows Forms Add checkbox to a datagrid
Hi! I am working with an sql database that it's loading into a datagrid. I would like to personalize my datagrid and add checkboses on the first column. There is my code : public class PersonnalisationDataGrid : Form_Consult { private System.Windows.Forms.DataGridTextBoxColumn Column1; //private System.Windows.Forms.DataGridTextBoxColumn Column2; //private System.Windows.Forms.DataGridTextBoxColumn Column3; public PersonnalisationDataGrid() { // // TODO: Add constructor logic here // this .Column1.HeaderText = "Column1"; } private void CreateMyDatagrid() { //DataGrid MyDataGrid = new DataGrid(); dataGrid1.Bounds = new Rectangle( new Point ...Show All
Windows Forms Problem with List<T> and TypeConverter
Hi, I am having a bit of difficulty with TypeConverters and Generic Lists and I was hoping that I could get a bit of advice. I have a type converter that is used to create the constructor code for my component. (It is an XNA a Game Component, but I don't think that that has anything to do with the problem because it appears on a Winform) inside another component. For instance I have the following: public class A{ private string s; public string SProp { get { s = value;} set { return s;} } public A() { s = "" ; } public A( string inS) { s = inS; } } By itself, when class A is an object on a form (or in my XNA Component) the TypeConverter code works fine, the property grid on t ...Show All
Smart Device Development could not establish connection to network
HI ALL, i just create a webservicein vs.net 2005.When i used to connect the service tothe device,i got the error msg like this.please help me to solve it(iam using windows pocket pc emulator) That's all very well, but when I change the 'localhost' to be the machine's name, it reverts back to localhost automatically in Visual Studio.... ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Keyboard State and color manipulation of textures
Hello, I have a couple of questions and I'll do my best not to babble on. First, a little description of what I'm doing: I'm currently working on a little XNA application that effectively draws a game board in 2D (all textures) and then places new pieces on the board when I press the 'N' key and if I click on a piece, then I can move it. If I click on it once more, it will be 'let go.' Here's the questions: 1) When I press 'N' quickly, I get 6 new pieces (since it cycles through update 6 times before I let go... what can I say too slow on the draw ;) ). To fix this, I created a variable called nPress. Here's the code: bool nPress = false ; KeyboardState keyboardState = Keyboard .GetState(); if (keyboardState.I ...Show All
Visual Studio Express Editions Retrieving Dialog Box Information Collectively Using Objects
The title of this thread is the title of one of the walkthoughs in the Visual Studio 2005 Express-help. The URL is ms-help://MS.VSExpressCC.v80/MS.NETFramework.v20.en/dv_mancli/html/81692df6-723d-416c-8e70-14d4a99d121c.htm I did everything in the walkthough down to the last part where it says: Go back to the code for InformationForm , and add a UserInformation property. Handle the Validated event on each of the TextBox controls so that you can update the corresponding property on UserInformation whenever one of the values change. Add handlers for the Validated event to each of the TextBox controls on your form, so that the new value of these controls is assigned to UserInformation whenever the user change ...Show All
Visual Studio Express Editions Autocomplete Combobox
I'd like to mimic Access's autocomplete combobox with the NotInList event. User can start typing and if the text exists it will appear... if it does not and user hits enter, an error messagebox "does not exist" is shown. Please can someone help direct me to a solution in C# Works great! I had the code in the wrong event. Once I placed it in the KeyDown event all was well. I appreciate your patience in walking me through this. ...Show All
SQL Server SSIS interview questions.
Could some of the expert(s) list interview questions that might come up when applying for ETL/SSIS developer I or II positions. Thanks Chris Honcoop wrote: In re: to your original question... Do you know SSIS well yourself I've seen some questions on web pages for SSIS (maybe even some posted by Jamie) that focused on some specifics that maybe you can ask in a phone screen but they will not really get to the heart if the person applying is a good SSIS developer. If you know SSIS yourself I would make up some situations and ask the person applying for the job to give an outline etc of how they would design a package to overcome the problem. On the basic level you can tell right away if they u ...Show All
Visual Studio Team System This should actually be easy - remove the Project param
Hello All, Is there a product out there to show how all projects are progressings Something like the sharepoint portal for an individual project but would be for a CIO level to see the progress on all projects. Thanks, John Hi John, We do not deliver such a thing out of the box but you could create a dashboard with various reports using the reporting web part and setting it up to point to the reports you want to display. It would basically ressemble the project portal page but instead of having one report, you could resize the control and include more reports in the page. Thanks, Othmane ...Show All
Microsoft ISV Community Center Forums ISV Software Requirements
Hello all, Sorry I'm new here and was unable to find an answer to my questions using the search feature. Because Microsoft requires several MCPs to satisfy their non-ISV competancies, I need to take the ISV route to get Certified Partner status. If I was to go for the ISV Competancy, what kind of application are they expecting me to develop I read on the lionbridge site that games and office productivity applications were not allowed for "Certified for" testing. What would I develop then Would an alarm clock be adequate providing it met the other operational requirements Thank you, -Bunny Hi Bunny, Here's a link to the ISV Software Testing Framework: https://partner.microsoft ...Show All
