ron nash's Q&A profile
Visual Studio 2008 (Pre-release) The project type is not supported by this installation.
After having installed all the RC1 parts, including "Orcas" and try to create a new project in VisualStudio 2005 (Windows Application, XAML Browser Application or Custom Control Library) I get an error message: "The project file '.....' cannot be opened. The project type is not supported by this installation." I've tried reinstalling everything but it's still giving the same error message. Could it be because I'm running a swedish version of Windows XP Although I haven't had this problem with other releases. Got the same problem.. Updated to RC1 and now I can't work.. Pleeeaaase resolve this for us Microsoft! "The project type is not supported by this instal ...Show All
Visual Studio System.Security.SecurityException while trying to create a file in Visual Studio 2005
Hi, My project on a network drive was running successfully on my local machine till last week in VS 2005 debugger mode. Now I receive following System.Security.SecurityException on code line StreamWriter w = File.AppendText("IMAA_QB_Pdf_Gen_060720.CSV") The full text of the exception is: System.Security.SecurityException was unhandled Message="Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed." Source="mscorlib" StackTrace: at System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet) at System.Security.CodeAccessPermission.D ...Show All
Visual Studio Team System Workspace concepts
I need some help understanding the Workspace. Are there any good docs on it Here are some things I think I have learned... but are they true Please comment and amplify. Thanks! ====================================== - Within a TFS Server database, a workspace is uniquely identified by (Name, Owner) - A workspace has one or multiple mappings to the local drive system. Each mapping associates a local folder with a TFS project folder. - A local path cannot be mapped to more than one project. This also means that a local path cannot be mapped to more than one workspace. - Certain static and/or dynamic properties of a workspace are cached on the client. The client side of a workspace definition can be ...Show All
Visual Studio 2008 (Pre-release) Charts with Xaml
in my work i need a WPF chart that I can use it in xaml code i search about it but i can't find any chart, just ChartFX of softwarefx website i download it but it is not working please i need this chart , any one know where i can download it ok I found the solution to my deployment problems in this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=517152&SiteID=1 This link now works: http://150.101.100.238/~john/TestApplicationWeb/Swordfish.WinFX.TestApplicationWeb.xbap ...Show All
Smart Device Development Enhance Windows CE performance by TCM of ARM 926EJ-S ?
The arm 926EJ-S supports TCM(tightly couple memory) and could Windows CE use TCM to enhance its performance . If it is possible, how to achieve it Thanks. This forum is smart device development related. Since your question is not related to smart device development, it's off topic here. If you’re having a hardware issue, please contact hardware manufacturer or reseller. If you having an issue with 3rd party software, please contact respective software manufacturer or reseller. Otherwise please post to relevant forum or news group: http://support.microsoft.com/newsgroups/default.aspx Closing as off topic. Hint: ask in Windows CE news group. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. (search) 3d prog to create/edit *.x files directly
Hy @ all. I'm searching a 3d prog to create/edit *.x files directly, without all the exporting/importing issues. The only one I knew is MeshX, are there any others gonzo883. So if nobody knews a standalone prog for *.x-files, please tell me how do you create and edit your 3d models , which prog's/plugins do this job best I've tryed out a lot the last weeks, but not with the wanted success. If anybody can tell me where I can get a tutorial that explains p.e. how to create a cube and a fitting cubemap and than export it to *.x-file format (for a skybox), I would be very glad. Sincerely,gonzo883. ...Show All
Software Development for Windows Vista Live UDF
Hello There, What is Live UDF Does the optical platform support third party UDF implementations How do we ensure compatibility of Live UDF with OSTA standard Rgds, We do not perform any special checking to restrict 3rd party Live UDF software. Can you provide some context as to, what problem you experienced and what 3rd party application you were running when you experienced this problem Minway wrote: I'm sorry to ask how about the 3rd party Live UDF software compatibility Vista Beta2 Explorer seems to have some special checking which may prevent 3rd party Live UDF software from working correctly. ...Show All
Visual C# Return memory information?
Is there any way to retreive the computer memory information I am currently running WindowsXP SP2 and have 512MB of physical memory. How can I return this in C# Thanks, Add this class to your code: public static class Utility { [DllImport("kernel32.dll")] public static extern void GlobalMemoryStatus(out MemoryStatus stat); public struct MemoryStatus { public uint Length; //Length of struct public uint MemoryLoad; //Value from 0-100 represents memory usage public uint TotalPhysical; public uint AvailablePhysical; public uint TotalPageFile; public uint AvailablePageFile; public uint TotalVirtual; public uint AvailableVirtual; } } C ...Show All
Windows Forms Child redraw in transparent panel
Hi, I have a transparent panel in which there are some pictureboxes. The panel is set to transparent using the code: this->MyPanel->BackColor = Color::FromArgb(0, this->MyPanel->BackColor); These Pictureboxes can be dragged and dropped, and when they are a copy of the picturebox is created at 50% opacity that follows the mousecursor. When the panel has a solid background (i.e. the line of code above is removed) then this works fine; the 50% opacity copy follows the mouse cursor, and is visible all the time (as long as a picturebox is being dragged and dropped). However once the panel is set to transparent then the 50% opacity copy is only visible when the mouse is stationary when dragging and dropping a picturebox; whi ...Show All
SQL Server Why date Columns default to 1900 after inserting dates in SQL Server Everywhere.?
I have created a sample Database for the school project, After executing the query below, the Date column is supposed to have the dates I have entered before, However the dates shown are 1900. Any idea why is this happening I appreciate your help. Thank you. Query: Drop table AccountReceivable GO --BEGIN TRANSACTION Create table AccountReceivable ( AccountRecID int identity ( 1 , 1 ) not null, PatientID int not null, PresentCharges int default 0 not null, PaymentMade money default 0 not null, PreviousBalance money default 0 not null, BalanceDue money default 0 not null, LastPay ...Show All
SQL Server HOW to Cast an AS ConnectionManager into a SriptTask?
In fact, we could use AMO in the Sript Task, just by include the AMO.dll, many guys have talked about it on the forum. But now, O my god, I met a big problem. I declare a AS connectionManager in the SSIS package. In the Script Task I can't use it. If this is a OEL DB ConnectionManager and connect to SQL Sever, I know I could write this inside the Sript Task: Public myKPIConnection As SqlClient.SqlConnection myKPIConnection = _ DirectCast(Dts.Connections("CYF.KPIOperation").AcquireConnection(Dts.Transaction), _ SqlClient.SqlConnection) Then I could use myKPIConnection inside the Task. But, How to do the similar thing to a AS ConnectionManager I need to DirectCast the AS connectionManager ...Show All
SQL Server Can not Subscribe a Report
Hi, I just create a report using Whidbey and deploy it to the Project reportserver. And I can access that report correctly, but I can not subscribe that report, what's going on Additional, I create that report using Shared Data Source (connected to Analysis Service of my TFS DT) which I created in Whidbey. The exception info is below: The current action cannot be completed because the user data source credentials that are required to execute this report are not stored in the report server database. (rsInvalidDataSourceCredentialSetting) Thanks. I finally found it. SQL Server 2005 does not allow credentials when connecting to analysis services. So I can view the report, but I cannot create subscriptions ...Show All
.NET Development Starting point for 3D graphics in VB.Net
I am using VS2005 (VB.Net). My program need to import 3D (x, y, z) points and display their relative location in a window. In the past I have only worked with 2D (x, y) points which were not a problem. My questions are: Is it possible to simulate "limited" 3D graphics in VB.Net What would be the best way to plot 3D points in VB.Net Thanks Hi The GDI+ does not support 3D primitives therefore you must handle how you want to represent the third dimension within your code. I found an example for you to start with http://www.codeguru.com/columns/VB/article.php/c8185/ . But, my suggestion will be to use DirectX in order to render your points, it will take you half/day to understand the basics but once you ren ...Show All
Internet Explorer Development get_Document returns NULL in IE7
Has anyone seen this behavior In IE7, when get_Document is called on IWEBBrowser2, it returns NULL. Basically, I am doing the following in the OnCreate of the explorer bar (my explorer bar is based on an HTML control): CAxWindow wnd(m_hWnd); HRESULT hr = wnd.CreateControl(IDH_HTML_SPLASH1); CComPtr<IDispatch> pHtmlDispatch; CComPtr<IHTMLDocument2> pHtmlDocument; hr = wnd.QueryControl(IID_IWebBrowser2, (void**)&m_spBrowser); if (m_spBrowser) m_spBrowser->get_Document(&pHtmlDispatch); After the above last line, pHtmlDispatch is NULL. This seems to happen only in IE7. What could be the reason And if pHtmlDispatch is NULL how else can I get hold of the document Thanks Reza, One additiona ...Show All
Visual C# Hi!! again i have a problem here ,,,,i have hexadecimal saved in file...now i want ....
Hi.. now plz read carefully......i have a hexadecimal text file.such as file.txt saved on disk..... so format of the hexadecimal stored is.....1a 2a 14 01 3d 23 45 12 2c 1c 3a remember there is space between every hexadecimal .. i want to read this file of hexadecimal as follows: i want the when this file is read ,,first it should be stored in array see follows example. array[0] = 1a2a , array[1] = 1401 , array [2] = 3d23 ,array[3] = 4512, array [4] = 2c1c.... very important see that at every array position u have read two hexa decimals...at one array position stored it,,, now these hexa decimal has been read from file and stored in a array,,,, seconldy i want that array should be of integer,,,means the ab ...Show All
