Moje_pink_Squirrel's Q&A profile
Visual Studio Express Editions Visual C# Express connecting to .\MSSQLSERVER instance of SSE
All, I have been searching through the forums looking for any information about using any of the Visual Studio Express products with SQL Server Express using a standard instance instead of .\SQLExpress. I'm trying to use the Amazon-Enabled Movie Collection Starter Kit. I installed SSE as a standard instance on the same system that is running VSE C# edition. I have loaded the project, open the Database Explorer and select modify connection followed by the Advanced button. In the Data Source pulldown I select the .\MSSQLSERVER which is a local instance and select ok. However when I click on the Test Connection but ...Show All
Visual Basic Btn nothing Event
I have a WForm with a button, this button pulls up a word document when a letter is chosen...great......now if a letter is not chosen and i click extract i get an unhandled exception error...any ideas on how i can solve this...so that when a letter is not chosen and i click extract a message box will come up and say no letter chosen....... There's not a lot to go here. I wish we could see some code. VS2005 has some new conditional tests If X is not Nothing then Do action else Inform user endif is now allowable syntax so you can detect conditions where there is ...Show All
SQL Server Incremental Update
Am using SSAS 2005, was trying to process cube on incremental update basis. During configuration of the settings from Object List dialog box, selection is made for measure group, partition, table - data source view. But there's no selection for table schema and name, hence the fact table name is entered manually. 1. What causes the table schema and name dropdown to be empty and resolution 2. Then during processing cube, it prompts "the data source view does not contain a definition for the table or view. The Source property may not have been set" What could be the reason and resolution Appreciate anyones f ...Show All
.NET Development SignData function is detected by firewall
Hi! I use the RSACryptoServiceProvider to sign some data. I instantiate the provider and its parameters, I read the key from a fixed string and the use the SignData function to sign the data. At the execution of SignData my firewall shows a warning that my application is trying to access a specific computer in my network. I think this computer is used as a DNS server. The SignData function waits until I allow or deny this from the firewall and then returns the results even if I press 'Deny'. I tried to use Encrypt and Decrypt function and they do not behave this way. Why is SignData trying to access the network Thanks in advance, ...Show All
SQL Server Dynamic Tool Configuration
Newbie here wanting to get information, links, opinions on how to configure a simple data flow from code. Here's my example. I have a CSV input tool, a SORT tool, and a CSV output tool. I want to call this package from an application running C#. Can I access this package like DataPack("filename","sort","output filename") from the object model Or does XML have to get involved Can I dynamically swap out the input or output tools Any links to the UML mockup of the object model Just getting started here. Thanks in advance, Mitch ...Show All
Visual Studio Can't add MSDN library to x64 install
Hi All, I have an install of VS 2005 CTP July 2005 on my DELL PowerEdge box (dual 64-bit processors). The install went fine, but I can't install the MSDN library that was on the DVD. The install says an unhandled excption in msiexec.exe. Can the MSDN library be installed on 64-bit hardware Or am I missing something else Thanks in Advance! Corey. Don't have a DVD drive. DELL wanted a fortune for them on the PowerEdge 1850.... :P C. ...Show All
Visual Basic dynamically add image datagridview
Using the column editor, I can add a bitmap to a datagridviewimage column. However, I'd like to dynamically add a bitmap (one of two) to a new row while my program is running. Is there simple code to do this I've tried searching to no avail. Thanks. Hi, To create a new System.Drawing.Bitmap object in your code Dim bmp1 As New System.Drawing.Bitmap( "C:\WinNT\Zapotec.bmp" ) To add thsi bitmap object into your DataGridView. Me .DataGridView1.Rows.Add(bmp1) The code above works with a DataGridView with only 1 column of type DataGridViewImageColumn. If y ...Show All
Visual Studio Express Editions Making an app look like a Windows XP app
I am currently porting a VB5 app to VB2K5. I have installed VB2K5EE at home. I am trying to do the basic menu/toolbar. The trouble is that I can't seem to make those two look like regular Windows XP menu/toolbar. I.E. I look at the MSPaint and Wordpad menus and I can't make the menus in VB2K5 look and act the same. I can select System in the RenderMode property but it looks like a default Windows XP menu bar but acts like a Office2K3 menu. What am I missing I tried adjusting the padding property. But that didn't help much. - Ronald Here are a couple of pics to better explain the problem. ...Show All
Visual Studio 2008 (Pre-release) Modal Anything!
Hi, I know this is problably an over discussed topic, but really, when are we finally going to have a modal window dialog By that I mean a dialog that can be show modal and have nice rounded edges and so forth The .ShowDialog window is really ugly and I really need nice modal windows at this point, seeing as the MessageBox itsel is really ugly, I need to make my own MessageBoxes and create Modal Input windows. Please can anyone help me Jaco Hi, Non-rectangular windows are not supported in WPF on Window objects. Dialog's being Window objects do not support these either. Thanks ...Show All
Windows Forms [MSI] DIRCA_CheckFX fails on some PC
Hi, I built an MSI, using Visual 2005, Framework 2, C#, and a setup project.This MSI install an add-in and a Com server. It works fine on some PC (Xp), but fails on others: the first window contains an error message. The message suggest to restart the installation. Note that I already checked that: * the framwork v2 has been installed * the SYSTEM account has full control over the temp dir and where the .msi file resides, * visual 2005 and the XP machins are English. I have read serveral forums, but the error is no exactly the same: http://www.totalblowhole.com/new-800043-3598.html http://www.pcreview.co.uk/forums/thre ...Show All
Windows Forms ComboBox Key Value Pair
Hi, How do I create a Windows Forms ComboBox in C# that accepts a key/value pair, and returns the key while displaying the value. For example: YearOfBirth Name 1970 John 1975 Jim 1980 Janet When I select 'Jim' from the ComboBox, I would like 1975 to be returned for assigning to a variable. Many thanks in advance. Jason Holt Jason Holt wrote: Hi, How do I create a Windows Forms ComboBox in C# that accepts a key/value pair, and returns the key while displaying the value. For example: YearOfBirth Name 1970 John 1975 Jim 1980 Janet Whe ...Show All
Visual Studio VS2005 - Searching other sources for help
When doing an "F1" search or doing Help/Search for help in VS2005, I want to search some local HTML documents on our internal network as well. I was hoping to be able to add "online help" through Tools/Options/Enviornment/Help/Online which gives you a number of different web sites you can also search. But there doesn't seem to be a way to add my own resources. Is there a way to do something like this I would be bery interested to learn more about this feature. So if you could provide a link or something to get more information on how we can do this, I would be thankfull!! Thanks! Philippe ...Show All
Visual Basic Brush and pen disposing
Have a doubt about working with brushes and pens. I'm working on a custom control that inherits from Panel and draw a colorfull desing background on it. Shall i create brushes and pens once and keep them in class scope variables, then overrides Dispose to release those resources. Or shall i create brushes and pens, and dispose them, every time control paint itself in the paint method. What's more expensive brushes creation and destruction or keeping those resources allocated during control lifetime Thanks in advance. Well, consider how much drawing you are doing. If its only 5 or 6 lines without a ...Show All
Visual Studio Team System TFS Beta3 Upgrade - Lost projects??
I have recently upgraded to Beta 3 refresh. Everything went OK eventually. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1. moving the data tier along with Beta 3 refresh. I've backed databases on old data tier and attaching them on new data tier. 2. It seems the FTSb3Upgrade doco I followed from Microsoft site is incorrect. It mentions I should not restore TfsWarehouse database whereas this article http://blogs.msdn.com/vstsue/article ...Show All
.NET Development Invalid URI
Invalid URI When Login in my .aspx page ...Show All
