Jo0815's Q&A profile
Visual Studio Express Editions DLL project with C++ Express
Hi, I've just start to use the Express version and so far I'm very impressed with with. Nice option from Microsoft to release this versions of their tools for the developers to start trying with. Anyway: I'm looking to work on a DLL project, but I can't find this option in any new project or wizard. Altough there is a screen where that option is grayed. I'm missing something here or this is not possible with this versions If it's not p ...Show All
Visual Studio 2008 (Pre-release) Why the reverse German-like syntax?
Why do the LINQ queries have to look like a SQL query in German If you are trying to make it easier and are adding SQL-like keywords to the language, at least keep the ordering the same as SQL. The way this is, I have to know C#, SQL for triggers and stored procedures, and LINQ for the in-code queries. I don't see how this is going to make my life any easier. As I recall from the spec, the ...Show All
Visual C++ intellisense include path
What is the format for the intellisense include path I'm using vc++ express 2005 beta 2 and want to include boost, platform sdk, directx9 and my own source headers. I tried "C:\Path1";"C:\Path2";... and several other variations and none seemed to index properly (at best, only one of the header paths specified would be indexed by intellisense). Also, is there a way to use environment variables in this path I tried %FOO% and $(FOO) and neither wo ...Show All
Visual C# Create thumbnail
hi there im new in this forum.... sup... well i have a problem creating a thumbnail to my C# windows application.... heres the problem: i got this code from msdn: Image image = new Bitmap("C:\\Dibujo3.bmp"); Image pThumbnail = image.GetThumbnailImage(50, 50, null, new IntPtr()); e.Graphics.DrawImage(pThumbnail,50,50,pThumbnail.Width,pThumbnail.Height); i think i alllready have the thumbnail there but how can i show it on a picture ...Show All
Visual Basic image conversion component..
hi ppl.. well i m developing a wallpaper changer.. and i am not to expert to write a code to convert a .jpeg or .jpg file to a .bmp file.. while the bit depth should remain 24 bits.. like windows does.. i have searched a function in vb6 ,but it isn't there or any winapi function that i can call.. as i am a student i can not buy anyone's properietery component also.. all u guyz are proper developers .. it would be really nice if u guyz can give m ...Show All
SQL Server Error in execute sql task
I get the following error when trying to execute an sql statement in oracle and returning the results into an object variable with the execute sql task. Error: 0xC002F210 at Execute SQL Task, Execute SQL Task: Executing the query "select <columnlist> from <tablename>" failed with the following error: "The SelectCommand property has not been initialized before calling 'Fill'.". Possible failure reasons: Problems ...Show All
Visual Studio Help crashes Visual Studio 2003
I am a computer science major at a university that has Visual Studio 2003 available through the MSDN academic alliance. I installed VS without the MSDN library for an assignment and everything was great, then when I later tried to install the library it won't work. If I try to directly open the library, a message comes up saying "updating help..." then Document Explorer crashes. If I open VS the same message comes up and the whole prog ...Show All
Visual Studio Express Editions How to get started in Visual C++
Hi I have basic knowlege of C++ (DOS environment), Please advise the best route to learning the basics of Visual C++, books, training etc. Regards Greg Ps I have down loaded the MS Visual C++ V 5 MS VC++ V5 Do you mean 2005 If you are already familiar with the C++ language then I think you should look into if it is .NET or Win32 that you would like to learn more about. At the Visual C++ Deve ...Show All
Visual Studio Express Editions Installing over VS 2005 Beta 2
Question 1: What is the correct way to install VS 2005 Standard over VS 2005 Beta 2. Should Beta 2 first be removed and then install the Standard VS or is it ok to install over the Beta 2 version. Question 2: I have been trying to use the different starter kits and the .vsi files are not recognized by VS 2005 Beta2. I am hoping that by installing VS 2005 Standard this will take care of this issue or is there something else I ne ...Show All
SQL Server array as parameter for IN statement
Hi, I thought TSQL of yukon would have a way of passing an array of values to a SP which can be used by it in an IN statment. ie: List<int> idList = new List<int>(); idList.Add(5); idList.Add(7); SqlCommand cmd = new SqlCommand("sp_Core_GetDetails"); cmd.Parameters.Add("@idList", idList); cmd.ExecuteReader(); ... SP would look like (fragment) select id, name from DetailsTable where id in (@idList) is there such a feature in yukon ...Show All
Visual Basic class help
need help am having difficulties with trying to use a class i created the class has only 2 properties each of which needs to be able to be set from a dialogbox, then need to add the new class object to an array. Perhaps if you post some of the code, or psuedo code of what you're trying to do I'll be able to answer a little better but going on what you've said.... I'm not sure this is the best way to do what you want, but it ...Show All
SQL Server URGENT! - - Unable to connect to SQL 2005 Server
Hello, I have a SQL 2005 Developer edition server, its freshly installed. I am unable to connect up to the server using the server IP. I just get a error message, when I do a port scan on the machine, it shows port 1433 is closed. I have gone into the SQL server configuration manager, and the TCP/IP port is enabled. I dont have firewall enabled on my windows XP pro SP2 machine , nor do I have any anti virus programs on this machine. ...Show All
Windows Forms Form.Focus() and Textbox Enter event not working
Hi everybody, I am trying to put focus on the second form called from the first form. I am not using MDIForms. How exactly to fixed this Focus() and Activate() does not work. Also, the enter event of Textbox is not working as it should, when you pressed enter it should execute the codes inside it. This works in C# fine. Thanks in advance. This code below place on Load event or constructor has the same effect [code] &nb ...Show All
Visual Basic Interesting Calculations
Hello everyone, I have a interesting problem. I'm trying to calculate how many pallets, boxes and units I need out of a ordered number of pieces. Let's clarify this by an example: I need 6852 pieces in total: (I keep this info in a database, so this info is available for use) * 1 pallet = 4000 pieces (20 boxes) * 1 box = 200 pieces * 1 unit = 1 piece The goal is to calculate how many pallets, how many boxes and ...Show All
Microsoft ISV Community Center Forums Selecting Data By....
the color of a cells Is this possible Tiger Hi tiger, Yeah it should be. This is code that sets the colour of a selected cell to orange With Selection.Interior .ColorIndex = 44 .Pattern = xlSolid .PatternColorIndex = xlAutomatic End With It includes the pattern. To make it easier make sure the pattern is consistant for all the cells. As you loop over the cells, or access a cell, ...Show All
