GForce's Q&A profile
Visual Studio Express Editions DotNetNuke install problem or too many starter kit installs
The DotNetNuke Starter Kit 4.0.2 does not show up in the "My Templates" of the "New Web Site" window of VWD (An icon titled "DotNetNuke Web App..." per the documentation). I am wondering if there is a limit to the number of "New Web Site" templates that can be added and show up in the "My Templates". I have installed previously eight (8) starter kits and ASP.NET Site templates. With the "Search online templates... icon, that makes nine evenly spread icons in the "My Templates" section of the "New Web Site" window of VWD. All installed correctly except the DotNetNuk ...Show All
Visual C# Incomplete code snippets for c#
Is there any way to get c# versions of all the vb snippets shiped with beta 1 I was hoping this would be addressed for beta two, but so far whidbey only contains a handfull of snippets. Use the demo edition of our Instant C# VB to C# converter to obtain the C# version of these snippets: www.instantcsharp.com David Anton www.tangiblesoftwaresolutions.com Instant C#: VB.NET to C# Converter Instant VB: C# to VB.NET Converter Instant C++: C# to C++ Converter Instant J#: VB.NET to J# Converter Clear VB: Cleans up VB.NET code ...Show All
SQL Server Express Manager / Management Studio Express
When will the express manager be available for the msdn version that is scheduled to ship later this month. If express manager isn't going to ship then what tool will allow me to create users in my express 2005 database. I'm wondering that also. I think I heard something about MS dropping Express Manager. ...Show All
Windows Forms How to add text to an Image as in photoshop using c#
Hello, I have been trying to create a small paint program. I have finished all of it except just how to add text to the image. I want to add text to the Image through a tool bar button [A] button and then by clicking on the image a caret starts blinking at the position of the click then I can start to add text by writing on&nbs ...Show All
Visual Basic Object reference not set to an instance of an object
hiya, i get the error "Object reference not set to an instance of an object" when adding a new web form to a web site this is what i am doing i launch vs 2005 beta 2 i create a new web site on the solutions explorer, i right click on the site and select " add new item " i select " web form " on the dialog box, and click "add" and that's when i get the error any ideas f Looks to be working in latest builds. Can you select any other items - except web forms and they add to the solution (ie. is it only web forms that are causing this error or all new items) Do you ha ...Show All
Visual Studio Team System Fail Team Project creation
After installing TFS Beta 3, everything seems ok. Can connect to it, manage it, etc. However I cannot create projects sucessfully. When I try to I get this (excerpt from log): Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Message: Unable to connect to the Windows SharePoint Services at TEAMSYS1 Exception Details: The Project Creation Wizard was not able to connect to the Windows SharePoint Services at TEAMSYS1. The reason for the failed connection cannot be determined at this time. Because the connection failed, the wizard was not able to ...Show All
Visual Basic updating an entry in a combo box
Hi I populate the entries in a combobox, and I've got a class to help me with this. e.g. Public Class clsCombo Public txtShow As String Public index As Integer Sub New ( ByVal pText As String , ByVal pIndex As Integer ) Me .txtShow = pText Me .index = pIndex End Sub Overrides Function ToString() As String Return txtShow End Function End Class Then, to add an entry I just call, for example myCombo.Items.Add( New clsCombo( "Apple" , 1)) What I dont' know how to do is to update a given row with a new value - e.g if I want to change 'Apple' to 'Orange' Thanks ...Show All
Visual Studio Express Editions Distributing My App - Verification...
Ok, so let's say I've got a project that when built, puts "MyKillerC#App.exe" in the bin -> release folder. Now I want to turn around, zip that up and post it for downloading from a website for others to download and use. Questions: Should I include a note that says words to the effect of "You need to download and install the .NET 2.0 installer from Microsoft in order for this application to run" I have an about box that has the app name, version number, my name and email address in it. Am I required to have anything else in there, like an acknowledgement that "This app was written using Microsoft's Visual C# ...Show All
Smart Device Development Problem debugging CE5 app with VS2005 (no activesync)
Hello all, After much searching I have been able to get the deploy feature running with my c++ App from Vs2005 to my CE 5 device. Unfortunately, I am unable to debug. I get a "Unable to start debugging" error message from Visual Studio and not much else. The exe makes it to the device and I can run the exe from the device. I just can't debug it. I still have eVC++4 on my machine so I tried that and I am able to debug the same application using eVC++4. The app is just a simple dialog based windows app created by the wizard. I have done tons of searching on the net and the closest thing ...Show All
Visual FoxPro Set talk, set deleted in forms
Hi; I am issuing SET TALK OFF and SET DELE ON in my application. Later on, when the user opens up a form, set TALK goes ON and in some cases SET DELE goes OFF. I have used the debugger, and I can't seem to find where exactly this happens, although its at the load event. There is nothing there to turn it on. So - what am I missing Aleniko Hi Aleniko To add to what Dave says (he is dead right of course) you can find a full list of all the commands that are scoped to the Data Session in the SET DATASESSION topic of the help file. There are many more than just TALK and DELETED and you ...Show All
Visual Studio Team System Team Project Creation Faild- not able to connect to the SQL Reporting Services at http://192.168.0.1:8080/
Installation: ------------ SqlServer 2005 (command line install) SharePoint Service SP1 (command line install) patched with Security Update for Windows SharePoint Services (KB887981) http://www.microsoft.com/downloads/details.aspx FamilyId=6BB93661-0CE7-46CF-B8BB-55546B58A2F2&displaylang=en TFS Beta3, single server Some other facts: ----------------- Reporting Services function well at http://192.168.0.1/Reports and http://192.168.0.1/ReportServer When I browse http://192.168.0.1:8008, I receive en error You are not authorized to view this page However, the information returned from http://192.168.0.1:8080/Services/v1.0/Registration. ...Show All
Visual Studio 2008 (Pre-release) Convert between Func<T> and Expression<T>
Are there facilities to convert a Func<T> and an Expression<T> in order to use something that was intended to be used as a predicate and use it instead as an expression tree -Scott Convert it Runtime I dont think so, its an compiler trick afaik . Im afraid they need an extra layer of indirection for that. So i guess its not possible yet. I tried to achieve the same thing for an kind of Linq query analyzer but ended up writing my own interpreter. There is however a sample on how you can create your own interpreter and create a delegate for it, i guess you can do the same thing with some ...Show All
SQL Server Custom code assembly with config file
Hi! My report has a reference to an assembly of a class library I did. This class library has a config file, classLibrary.dll.config, where I set some parameters, one of these being the "initial path" to the project's folder(for example, project folder is myProject, and you would use the initial path to say it's in c:/projects/tests). When I preview the report everything works fine, but when I publish it I get this error: Absolute path information is required. I guess it's not reading the dll.config file, so it can't see the initial path value and concatenate it with the project's folder. I'm supposing this because at ...Show All
Visual Studio Team System Modify CMMI process description
If I would like to modify the described CMMI processes in the Process Guidance Template (MSFforCMMIProcessImpPG), which (xml) files should I modify For instance, if I would like to modify CMMI Manage Requirements process guidance, so it shows another Step by step and Work Products examples, where do I customize these sections in the RequirementsManagement_ManageRequirements.htm file I have found the overall Requirement Management description in General.xml, but I also need to modify the Manage Requirements page and the Supporting Practices descriptions, and they don't seem to be present in the General.xml file. ...Show All
Visual Studio Express Editions error LNK2019 related to ConvertStringToBSTR
Hello, I'm trying to do a build on an open source project www.quickfixengine.org and getting some errors. The code is unmodified from when I downloaded it. I just brought it into Visual C++ so this should work. Here's the output: 1>------ Build started: Project: at, Configuration: Debug Win32 ------ 1>Linking... 1>quickfix.lib(MSXML_DOMDocument.obj) : error LNK2019: unresolved external symbol "wchar_t * __stdcall _com_util::ConvertStringToBSTR(char const *)" ( ConvertStringToBSTR@_com_util@@YGPA_WPBD@Z) referenced in function "public: __thiscall _bstr_t::Data_t::Data_t(char const *)" ( 0Data_t@_bstr_t@@QAE@PBD@Z) 1& ...Show All
