city_ash's Q&A profile
Smart Device Development Vb express with smart device
i want to create smart device app. in vb express . how can i do this and i'm computer eng. student in university . can i get vb2005 pro ed. for educational porpuse can msdnaa help for me this please Hi, The VB Express SKU does not support development of device projects. You can opt to use the Standard SKU (Academic will also work for you which I think ships with MSDN). Please check with your local Microsoft office about the availablity and pricing of the SKUs. Thanks Amit ...Show All
.NET Development HTML to Image
C#, .NET 2.0, Windows App Simple question... open to any ideas... I have an html file on my disk. I want to create an instance of an Image (or Bitmap) object that represents what that HTML looks like when it is rendered in a Browser. I know the size the Image has to be. I know IE7beta does this and also AOL's browser... Any thoughts, ideas Thanks Rob Ultimately I wish to draw a picture of the HTML on top of a form in a given rectangle. I can't use the WebBrowser control, it needs to be drawn like any other Image using the Graphics object. Maybe the WebBrowser control ...Show All
Software Development for Windows Vista must DependancyProperty variables be suffixed with "Property"?
It seems that if you want to create a DependancyProperty your variable must be suffixed with "Property". I tried to create a DependancyProperty like so: public static DependencyProperty suppliedMessage = DependencyProperty.Register("suppliedMessage", typeof(string), typeof(SupplyMessage)); But I kept getting the error: Could not create activity of type 'Ex01.SupplyMessage'. System.ArgumentException: Type 'Ex01.SupplyMessage' does not define dependency property with name 'suppliedMessageProperty' So after a puzzling few minutes checking my code for errors I changed my variable to suppliedMessageProperty: public ...Show All
Visual Studio Team System New To Team System? Check out these resources
Welcome to the Visual Studio Team System forums. My name is Ajay Sudan and I am a Product Manager for Visual Studio Team System. If you are new to Team System, then you'll want to check out the resources on the Getting Started with Team System page. Thanks, Ajay Sudan Product Manager Visual Studio Team System http://msdn.microsoft.com/teamsystem I would also add a series of webcast: http://www.microsoft.com/events/series/msdnvsts2005.mspx Regards, Pierre ...Show All
Visual Studio Can't set crystal report properties vs2005
Hello, I have the following problem: Whenever I try to set a crystal report properties, focus is on the property name which is read-only and when I click out of name I get the error: "property value is not valid" and in details: "property name is read-only". This blocks me totally (the message shows up continuously and I have to close the report -or even the whole application- in order to get rid of the messages. And I cannot edit any report property of course . Please help! Hello, You can find this at: http://lab.msdn.microsoft.com/vs2005/get/default.aspx We don't have a patch for Beta 2 so you will have ...Show All
Visual Studio Express Editions drawing lines in windows forms application.
I use Visual VC++ Express Edition.it seems that it doesn`t have MFC.so i used windows form application instead.i was going to create a form,put some bottoms on it and by clicking on the bottoms some lines and rectangle (that are used in drawing flowcharts) appear in the form in different positions.i create a class (with class wizard)and wrote codes for drawing this lines...i used these functions: CClienttDC dc(this); Cpen *pen1=dc.SelectStockObject(WHITE_PEN); dc.lineto(50,50); AND these are error messeges: .\shekl.cpp(14) : error C2065: 'CClientDC' : undeclared identifier .\shekl.cpp(14) : error ...Show All
Visual C++ NMAKE : fatal error U1052: file date.mak not found
I am self-coaching myself VC++. I don't get it error. Could someone tell me where I went wrong Much appreciated. Thanks in advance. Header file: #ifndef Date_dot_h #define Date_dot_h 1 // Address class using dynamically-allocated strings class date { protected: int year_; int month_; int day_; public: date(); date(const int& d, const int& m, const int& y); bool valid() const; int day() const; int month() const; int year() const; void set_day (const int& day); void set_month (const int& month); void set_year (const i ...Show All
Windows Forms How to Store state of controls on a Form?
Hi All, I will be writing a Windows Forms application with potentially a large number of forms, which each contain text fields, dropdowns and so on. The user will want to be able to open one form, add values to the text controls, change the dropdowns and so on and then close the form. The user will repeat the process for other forms, but  ...Show All
.NET Development save to table without primary key
Hi, I use VB 2005 Express. Problem: When I save some data back to a table (Access) with a primary key everything is fine. But when save data back to a table without primary key I get an exception error: Update requires a valid UpdateCommand when passed DataRow collection with modified rows So my question is then: 1. Is it possible to update a table without primary key 2. in that case, how I use the following kode for updating: Me.Validate() Me.TblTunablesBindingSource.EndEdit() Me.TblTunablesTableAdapter.Update_(Me.TunablesDataSet.tblTunables) I have exported the table in Access from an external software, ...Show All
Windows Forms Tree View Label Edit
How can i use the paint event for the treeview. I want to edit a lable in tree view but after editing it and refreshing it it is showing the new values at two different node. I have the same problem however I am not using the BeginUpdate and EndUpdate methods. When the tree loads the first time, all the nodes display correctly. If I add a node, it gets saved to the database, and I clear out the tree and repopulate it for the new node to show. However, now the new node I just added, appears in another location (same issue as first guy). Any ideas on how to make the treeview refresh correctly I have stepped throug ...Show All
SQL Server Problem populating temp table from linked server.
Hello, I have a 2000 sql server linked to a 2005 sql server an I am trying to return data across the link. If I just run the sp I get the data back fine but if I try to Insert the data into a temp table the process just hangs and has to be killed. This works fine: EXEC [MyLink].[MyDocs].[dbo].[spGetSearchWrapper] -- (returns 156k records in about 2 sec.) However inserting the results into a local temp table never returns. In fact the process never really runs. CREATE TABLE #tmpOrgResult ( intObjectID INT &nbs ...Show All
Visual Studio Team System FXCop: Exclude specific files from analysis?
Is it possible to exclude whole files from code analysis My scenario is where I have a web reference that generates a web service proxy class. This reference will get updated periodically so I don't want to supress 500 messages every time I update it. Is it possible to exclude a whole file I still want the rest of the files in the project to be analyzed. Has this been addressed since your original post I'm using the IdeaBlade toolset, and it generates base classes that you don't modify and final classes that you can modify. I need to exclude the base classes from fxcop in team system so I don't keep gett ...Show All
Visual C++ Compiling C Win32 code in VC2005 B2?
I try to compile my VC6 app, written in C for Win32 API, with the new VC2005 Beta 2. It tries to find windows.h and fails. How can VC2005B2 (Express) be set to compile normal Win32 API apps Where is the windows.h file now I am just gonna use Dev C++, seems to be a nice IDE and it uses the GNU compiler. You can get it at www.bloodshed.net for free. Everyone at gamedev.net swears by it as far as free ones go. ...Show All
SQL Server Help with ordering the SSIS packages the way they appear in the project
In solution explorer under SSIS Packages there are many packages. I name them specifically so that they should be ordered with their names, but no the solution explorer shows them in the order I added them, I couldn't figure out a way but removing all the packages and adding them in the right order to fix that problem. I have to kinda redo this if I want to add a new package not to the end. Any ideas All here: http://solidqualitylearning.com/blogs/erik/archive/2005/08/08/1269.aspx -Jamie ...Show All
Windows Forms TextBox, enter key, shift+ enter problems
Here is what I basically want to do: I have a multi-line textbox. When I press enter I want it to fire a button press event ( I am pretty sure that I should not be using the AcceptButton property because of what else I want to do.) When I press shift + enter, I want to append a "\r\n" to the end of the text. Wh ...Show All
