Ajao's Q&A profile
Visual Studio Express Editions Slide
I am lefthanded and want to have toolbox, properties, eg, to be shown on the right side of my screen, I did try to drag it there, but I cannot get it to slide on the right side, at this stage, ever thing is on the left side of the screen I have just adjusted mine to the left, when you grab the toolbar or solution exp, an icon appears in the centre and to the sides where you can attach it to the different positions. ...Show All
Visual C# How do i create a RichTextBox vertical scroll button
Hi guys, I am desperately trying to figure out how to create vertical up/down buttons for scrolling a RichTextBox (i.e. I want to disable the vertical scroll bar and use buttons instead). Any help would be GREATLY appreciated. Hi! To disable scrollers - set Scrollbars property. To add new buttons - add them as usual controls near text box. ...Show All
Software Development for Windows Vista Error in running Windows Workflow Monitor
I just downloaded the SDK for WWF and unpacked the Working Monitor Tool. It compiles and build successfully using VS2005/SQL Express 2005. But when I ran it, an error pop-ups! It seems that it cannot locate a certain 'HostWorkflowRuntime' component or any dependencies files. What am I missing here if you already install the good version of wwf, try to delete and add once again the references to the workflow assembly and run once again. ...Show All
SQL Server Walkthrough Failu "Creating a Mobile Application w/SQL Server"
I am attempting to go through the "Creating a Mobile Application with SQL Server" walkthrough found in the SQL Mobile Books Online help file. Towards the end of this document (under SQL Server Mobile Tasks), they show how to create a new subscription. Unfortunately, after step 10--when you are asked to click finish--I get the following error: TITLE: Microsoft SQL Server Management Studio ------------------------------ Failure to connect to SQL Server with provided connection information. SQL Server does not exist, access is denied because the IIS user is not a valid user on the SQL Server, or the password is incorrect. HRESULT 0x800040 ...Show All
Visual C# How to create an electronic mapping software?
I need to create a software that is able to display digital maps with the necessary controls such as pan, zoom etc (like an online emap). This software should be interactive and allow waypoints to be plotted on the map with the coordinates of the planned route sent to a ground vehicle. At the same time it should be able to receive information from the vehicle via GPS to enable tracking on the map. How do i go about doing that What are the more suitable development tools to be used Are there any suitable APIs which i can make use of I'm very new to development work so any useful resources/reference would be greatly appreciated. Thanks ...Show All
.NET Development INSERT Row to DataTable, data types problem?
(Newbie) (VB 2005) Regarding the INSERT row command below, how do I state my parameters (i.e. the text in brackets below). 1) how do I state a DATE data type, at the moment I am using .ToString , is this correct 2) how do I state the DateTimePicker data type, given that its format is custom h:mm tt Thanks. myDataTableTableAdapter1.Insert(DateInput .ToString , DateInput .ToString , Start_TimeDateTimePicker , Finish_TimeDateTimePicker , First_NameTextBox .ToString , Last_NameTextBox .ToString , EmailTextBox. ToString , RecipientsFirstName. ToString , RecipientsLastName .ToString , RecipientsEmail .ToStrin ...Show All
Visual Studio Team System TF86001: Team Foundation was unable to load the Office AddIn
After dealing with the daunting install process and getting it right, now I'm able to create projects and work with most of the items, however I found a new issue while trying to open any of the Excel sheets included in the default project team solution structure from WSS and I get that error, funny thing is that this only happens with XL files, since I can open Word and Project files with no issues Here's what I'm running on: Server: Windows Server 2003 sp1, SQL 2005 Sep CTP (data, analysis and reporting services), VSTS Server Foundation beta3, WSS sp2 Client: Windows Server 2003 sp1, Office 2003 Pro sp2, VS2005 Release Candidate, VS ...Show All
SQL Server Problem in Context connection of CLR Trigger
Hi, I'm using June CTP Visual Studio 2005. I have Created CLR Object. In my CLR Method i have opened a connection like below public partial class Triggers { //In my CLR Method i have Opened the connection like below [Microsoft.SqlServer.Server.SqlTrigger(Name="ClrTrigger", Target="Triplets",Event="FOR INSERT")] public static void CLRTrigger() { Triggers objTriggers = new Triggers(); objTriggers.Connection(true); ... ..... Test(); // Here i'm calling one more method Test(); .... .... objTriggers.Connection(false); } In this test method i'm Executin ...Show All
.NET Development duplicate columns into datatable
Hi, I have created one DataTable programatically into C#. And I want to add duplicate DataColumns into it i.e. suppose I have one column named "Col1" and I want add one more column with the same name. Its giving "DuplicateNameException". How should I make it possible. Is there any other way. Please provide some code. Thank you. If suppose that you may want to bind your datatable later to a viewer/Editor like datagrid. You could set your viewer/Editor ColumName/Caption to 'show' same 'Name' of column instead of you tying to make it inside datatable. ...Show All
Visual C# Books on C# language needed.
Hi We have bought the following books from Microsoft press: Visual C# 2005 Step by step Visual C# 2005 The language (Core reference) The step by step was easy to read, with good examples, although seems to be aimed more towards beginners. Not our level. The language, was hard to read, difficult english, with "not that good examples"(trying to be polite). Its seems to be more on the right level for us though. So my question is, is there a book that you would recommend, that would be equivalent to "The language" in depth and level. But more following Microsoft standards and conventions, like step by step ...Show All
Visual Studio Team System Check In Pending Changes & Check In
Hello, What is the difference between "Check In Pending Changes" and "Check In" The functionalitie "Check In Pending Changes" is accessible starting from the window "Source Control Explorer" and the functionalitie "Check In" is accessible starting from the Solutions explorer". Thank you for your assistance Amaury There is no difference. Both will bring up the same dialog. The "Check In" button on the Pending Changes toolwindow is slightly different: instead of bringing up the dialog, it will immediately attempt to checkin using the ...Show All
Visual C# Type.GetType Problem
The following is my code to get type from AssemblyQualifiedName. //Full Qualified Name Work Type type = Type.GetType("System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); //Partail Qualified Name Work type = Type.GetType("System.Int32, mscorlib"); //Full Qualified Name Work type = Type.GetType("System.Windows.Forms.DataGridView, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); //Partail Qualified Name Doesn't Work that return null type = Type.GetType("System.Windows.Forms.DataGridView, System.Windows.Forms"); I do ...Show All
SQL Server How To Execute an DB2 Stored Proc with parameters thru ODBC using VS 2003, for Reporting Services
Good day! :-) Anybody who knows the syntax for executing an Oracle Stored Proc thru ODBC connection using VS 2005 for Reporting Services I am having a problem about this. I am using the ODBC connection because VS 2005 does not support Oracle Database 10g in its Oracle Database Connection feature (only 7.3, 8i, and 9i), that's y. While using MS SQL Server 2000, I never encountered any problem. But using Oracle Database 10g, I find it hard to call the stored procedures, an error is generated everytime. Please click the link below for the screenshots: http://www.geocities.com/vrcode2/oraError.JPG http://www.geocities.com/vrc ...Show All
Software Development for Windows Vista Designer and the Toolbox
We are working on integrating the workflow desinger into our suite of tools. Our shell currently has a toolbox that implements the IToolboxService interface. When we create the DesignSurface for the Workflow designer, we pass in our root service provider (which contains our toolbox service). However, the Workflow designer never asks our service provider for the IToolboxService (though it does ask for many other services). How does the list of available activities, etc, get populated in the Visual Studio toolbox Thanks! I'm trying to create activities and workflows on-the-fly (xoml) and drop them onto the de ...Show All
Software Development for Windows Vista tracking when exception occurs
Okay, so I have asked this question before with no response but since it is really the last thing holding up the completion of version 1.0 of this project I will try again... How can I track (or record somehow) the point at which in a workflow where an exception is thrown I have tried using user track point calls (i.e. TrackData) in the fault handlers but these records don't get written to the tracking database. I have also tried to look for an ActivityTrackingRecord with execution status Faulting but that only seems to be there at the root workflow level. For all of this, I have been using the default tracking profile. ...Show All
