RhodeHummel's Q&A profile
Visual Studio 2008 (Pre-release) Custom Root Element
I have a page class (PageRadioWide) in which I want to inherit from UiPageFeature but I'm getting the following error: PageRadioWide.xaml(2,5): error MC3074: The tag 'UiPageFeature' does not exist in XML namespace 'clr-namespace:ACPUi'. Line 2 Position 5. Can anyone provide some assistance Thanks in advance. Here's some additional information: XAML File: <MyACPUiNS:UiPageFeature x:Class="ACPUiTempTestApp.PageRadioWide" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:MyACPUiNS="clr-namespace:ACPUi" xmlns:ACPUiNS="clr-namespace:ACPUi;assembly=ACPUi" xmlns:ACPUiTempTestAppNS=&q ...Show All
Visual Studio ContextGuids ?
In my ever searching quest to understand the DTE objects inside and out I have been searching for information on the DTE top level class ContextGuids. It states in MSDN help that Context Guid: Contains context GUIDs, each of which represents a given IDE or tool window state, such as a debugging is in process, an empty solution is loaded, or the IDE is in design view. How would I write code that would find each one of the above examples And is there a place that lists these ContextGuids I use C# but can decipher VB (I hope). Oh and while I have your attention can someone tell me why I would want to use the DTE2 level ProjectKinds instead of PrjKind or PrjKinds found in the language specific class Thanks so muc ...Show All
SQL Server Login failed for user ''. Reason: Not associated with a trusted SQL Server connection.
Hello, I have some problem here. I have a sql server installed on one machine and I have another development machine for my asp application. How could I actually access the asp application and sql server at the same time from another machine within the network. I kept on getting the error message above. Thank you for your help :) I have some trouble understanding your particular scenario; let me try to describe what I understand, please correct me if I am missing or misunderstanding something: Dev_machine can connect to SQL_Server_machine You are connecting using Windows authentication Are you using your own credentials or using IIS service account to connect Other_machine cannot connect to SQL_Server_mach ...Show All
Visual Studio 2008 (Pre-release) Orcas December 2006 CTP
What happened to the Orcas 2006/12 CTP It was recently announced on MSDN that this was imminent; a message was posted on this forum; both were deleted. It's OK to change your mind on a CTP release; it's Orwellian to completely erase history! Joe I saw that message too but I guess it was a fake; first of all the person who wrote it was not an official LINQ developer/project manager/etc. Second, the post contained bad words. Best, Fabio Ferracchiati's LINQ Blog: http://www.ferracchiati.com ...Show All
Software Development for Windows Vista what's wrong with the DocumentViewer's Find method ?
I open one XPS document with the control DocumentViewer, invoking the control's Find method which would pop up find dialog on the MSDN specification, but nothing to happen. Why Heather, When you say "inserted into that", what do you mean Somebody else suggested that If I created a " PART_FindToolBarHost " that had the same naming convention and element tree, that it was possible. Any ideas Thanks in advance. Peter ...Show All
Windows Forms Moving to a new row in a Datagrid
Howdy, When the AddNew button is clicked on the BindingNavigator, a new row is made in the datagrid and the row selector moves to that newly created row, what is the method that moves the selector to the new row I have created a method that calls the AddNew method on a DefaultView and creates a new row. I need to move to that newly created row and get the value from a auto-incremented cell in the new row and then populate a combo box with that new value. I am using C# in Visual Studios 2005. Any suggestions on how to accomplish this task Thanks Try calling the BindingSource's AddNew method instead. ...Show All
Visual Studio 2008 (Pre-release) Reliable Messaging and custom transports
Hey, first i got to ask if anyone happens to know of some sort of step-by-step tutorial for implementing reliable messaging Then on to my question... I'm doing some request/reply-communication over mail, and want to add some reliable messaging. The plan is that the client sends a mail to the server, with the message supposed to be sent AND the CreateSequence piggybacked on it. The server then replies with another message piggybacking both the CreateSequenceResponse and SequenceAcknowledgement. Finally the client sends an TerminateSequence over mail to the server. (This should work, right ) The big problem is that when my Proxy calls Channel.Request(), the message I get is a CreateSequence instead of the message i sent over Proxy.Request() ...Show All
Visual Studio Express Editions How I..............
Hi, i got a Toolstrip with buttons on it how can i program it such that will perform the following: For Example i have a two pages , when i press button1 on the toolstrip page 1 appear on the form and when i press button2 on the toolstrip page 2 appear on the same form replacing page 1. Just drag the control from the toolbox to your form, set its Dock property to Fill and edit TabPages by clicking the button with the TabPages property. You can later select tabs by clicking on them and drag the controls on each tab. Andrej ...Show All
Visual Basic Copying and pasting data in Excel in vb.net
I want to copy & paste a data ,that is stored as string,in selected cells but most of the times i get some casting or conversion errors and i want this code to be in for loop so that code must not be lengthy & must look simple.At last It shouldn't be hardcoded.So can any body help me regarding this in vb.net.I will be highly obliged. Thanks for replying,I will definitly post the code. Please also suggest me book on vb.net excel so that i can have a proper knowledge in it. ...Show All
Windows Forms Events issue
Hi, i have a shared WithEvents button on a form. now several forms have a reference to that button. mybutton = mainform.mainbutton and then each form has a mybutton_click method. so now all instances that are live are causing their mybutton event to occur if it occurs for any one of the form. how do i get it to only occur for the respective form. should i manually do it or my declaration shared is wrong. what i basically need is that the shared withevents hold only 1 forms ref .. whichever has focus. like static, declared once and instantiated multiple times, hold 1 value at a time. so how do i go about that I made some assumptions according to your code: mySuppliersManager is the class of the MDI children of your ...Show All
SQL Server comparison between Data Stage and SSIS ?
Hi , Can any one give a summary of difference between Data Stage and SSIS . we are in process of Migrating existing Jobs in Data Stage to SSIS .so i am prepareing a comparitive report between Data Stage and SSIS . help us pls Jegan ...Show All
SQL Server I would like to search another Table(rateTable) using the data retrieved by my first select statement instead of displaying the
I would like to search another Table(rateTable) using the data retrieved by my first select statement instead of displaying the results on the sceen. I have a stored procedure that selects records from 3 tables and I want to use the results of my previous SELECT as a search string for another table(rateTable). Below is the code for my Stored procedure. Any help is appreciated. Thanks CREATE PROCEDURE CalculateTax USE Vertex DECLARE @stateName VARCHAR(25), @cityName VARCHAR(25), @countyName VARCHAR(25), @zipcodestart VARCHAR6) SET @stateName = 'Nebraska' SET @cityName = 'Omaha' SET @countyName = 'Douglas' SET @zipcodestart = '68164' AS BEGIN SELECT LocCity.LocGeoState AS LocGeoState, LocCity.LocGeoCounty AS LocGeoCounty, ...Show All
Gadgets How to Save User Preferences on Spaces?
Can someone explain to me how to save user preferences on Spaces or point me to some instructions If there is a way to determine whether a gadget is on Spaces or Live, that would be good to know too so that I can hide the preference link in Spaces view mode. I got one of my gadgets to save user preferences on Live but it's not working on Spaces. Thanks I'm sorry it took a while for me to reply back to you.. This should work.. I didn't test it.. Let me know if it works, I'm to tire to test it tonight. If it doesn't I'll play with it tomorrow. if (p_args.onDashboard == true ) { //Basically, you're running on live.com. So preview mode should be view mode, so call the function that creat ...Show All
Smart Device Development Configuring ActiveSync over serial port
hi, I have been trying to configure ActiveSync on my smartphone to connect to my desktop.But, I am not using Microsoft's native Bluetooth stack on the Smartphone. It's a third party stack on my smartphone. Could you tell me how i can configure the ActiveSync to use a serial port on the smartphone side.!!! Actually, i need to use a Bluetooth Virtual commport on my smartphone, and NOT the ActiveSync Bluetooth profile..!! Is that possible thanx! To use a Bluetooth connection, do the following: Step 1 Set up a Bluetooth COM port Step 2 Set up ActiveSync to use the Bluetooth COM port Step 3 Start Bluetooth sync from your device STEP #1: Open the Bluetooth Devices Contr ...Show All
Visual C# Make a File readable only by my application
HI, I'm developing a windows application in c# and i use video with DirectX. My problem is that i don t want the video to be readable by classic players and only by my program. I ve try to use cryptography but it take to long to charge the video. If anybody as an idea... Sorry for my english, and happy new year, Laura. Hi, 1. I am not sure how above method can work, but try using the following link, http://support.microsoft.com/default.aspx/kb/307010 Other good links for crypto, http://www.codeproject.com/csharp/FileEncryptDecrypt.asp http://www.codeproject.com/dotnet/DotNetCrypto.asp it will guide you how to encrypt, decrypt a file. 2. If you know about header info which will be typi ...Show All
