Software Development Network Logo
  • Microsoft ISV
  • VS Express Editions
  • Visual C#
  • .NET Development
  • Windows Forms
  • Windows Live
  • Smart Device
  • Game Technologies
  • SQL Server
  • Visual Basic
  • Architecture
  • Visual C++
  • Windows Vista
  • VS Team System
  • Visual FoxPro

Software Development Network >> bennettdan's Q&A profile

bennettdan

Member List

Michael Boehm
-pk
SQLMSFT
Erich H. Franke
Coolerbob
Nyqvist
Clark Snowden
Fanel SAVA
ParadoxNut
f a c
SDR_Ar
RobDolin
mancha
ScorpDaddy
erb54238
jetxx
Aeraf
Tryston02
Ricky Bennett
philmee95
Only Title

bennettdan's Q&A profile

  • Windows Forms Connect to SQL Server 2000 through an ASP.NET Web Application

    Hi! I am going to connect to "SQL Server 2000" through an "ASP.NET Web Application". My development environment is "Visual Studio .NET 2003". In my "Toolbox" -> "Data", I drag a "SqlConnection" and drop on the page. It would automatically be named "SqlConnection1". In its "Properties" -> "ConnectionString" -> &quo ...Show All

  • Software Development for Windows Vista Visual Studio 2003 installation issues on Vista 5270

    I cannot seem to install VS 2003 onto Vista 5270, it keeps on saying that it cannot copy a file to the temp directory. Any ideas why it wont install try copying the entire vs2003 dvd image to the local disk .. the error message goes away - don't ask me why... ...Show All

  • Visual Studio Tools for Office Word Template crash

    I have a Word template project that can add custom controls to the document (something like WordDynamicControls example). I am able to open my template and save as a doc file. But it is not possible to save doc file after that because Word crashes. Could someone help me I do not have a workaround for the issue, and I unfortunately could not reproduce the crash (although I did see a hang in Word's code). You may contact Microsoft PSS for further assistance. If at all possible, you may want to avoid using dynamic controls in template, as we'we seen various issues w.r.t. ActiveX controls i ...Show All

  • Visual Studio Manual installation of QuickStart samples - where is ASPNETDB.SQL?

    Hi I have not been able to run the ConfigSamples.exe due to an ASP.NET IIS problem so decided to perform the installation manually according to the configuration details document (ConfigDetails.htm). I have successfully installed Northwind, Pubs and GrocerToGo databases using the command described. However, there is no ASPNETDB.SQL script after VSTS Beta 2 was installed nor on the DVD. Where should it be Thanks in advance. Craig I can only conclude this is a documentation error. I searched online and found mention of aspnet_regsql.exe which I ran successfully. ...Show All

  • Visual Studio Team System Error msg : "The local file you chose to store your solution contains one or more solution files that have the same name as tho

    Hi, After I create the branch I want to open my project from the source control explorer I receive this message: "The local file you chose to store your solution contains one or more solution files that have the same name as those in the source control server folder" Any Ideas why I checked my workspace mapping and it looks o.k.  B est Regards,   Yaarit Reiner Application Engineer Direct-Soltion LTD. Which build are you using I highly recommend upgrading to beta 3 now that it's released (should be on MSDN in the next day or two). Buck ...Show All

  • Visual C# How do I find a value inside an Excel spreadsheet?

    Hi all, I am trying to use the Excel.Range.Find method on a range object in order to find a particular value inside an Excel spreadsheet. However, everytime I execute the find method it throws an exception that says, "Find method of Range class failed." I don't know why this is happening. Here is a snippet of my code: using Excel; string workbookPath = @"C:\somewoorkbook.xls"; Excel. Application excelApp = new Excel. ApplicationClass (); excelApp.Visible = true ; Excel. Workbook excelWorkbook = excelApp.Workbooks.Open(workbookPath, 0, false , 5, "" , "" , false , Excel. XlPlatform .xlWindows, "" , t ...Show All

  • Windows Forms Why only one roll back

    Hi Guys, Is it possible to configure the number of versions that click once can roll back to what if i wanted 3 versions of the application to stay on the users machine. and allow the user revert back to the first of 3 versions In the interest of balancing disk space usage with rollback capabilities we decided to stick with allowing rollback to previous version only. This is not configurable. We did not find enough of a customer scenario demand to justify the additional complexity created by allowing for a fully flexible multiple version rollback model. Most users know that the previous version of ...Show All

  • .NET Development Sorted DataTable: Select() -> not sorted anymore

    I have a sorted DataTable and used Select() to get a DataRow[]. But DataRow[] is not anymore sorted like the DataTable. How can I get DataRow[] in the same order as the DataTable HuberSepp, You can use the sort in the DataTable.Select() to provide the sorting of your datarows. DataTable rows are not sorted by default, so I think you are using a control wich uses a DataView to sort your data. Can you provide me with some more information ...Show All

  • Visual Studio Express Editions Cannot install Visual studio 2005

    Hi all, I don't understand why I cannot install Visual Studio 2005 while my friend could using the same copy of exe file. I keep on getting " Error. Writing to file: Microsoft.VSDesigner.dll. Verify that you have access to that directory. " I am not sure what could be the reason. Could it be low memory Please help. Thanks in advance. You will need to make sure that you are an administrator (Local or Domain) or a power user to install it on the machine. ...Show All

  • Visual Studio Express Editions Taskbar Marquee

    Hey everyone. I'm in a bit of a bind. I'm trying to make the text in the taskbar area of my application marquee like Winamp does. I've been trying for a few days but have found no way of doing it. I've even tried searching Google, etc but still no leads to helping me accomplish this goal. Any help would be great. Thanks in advance. Your welcome and thank you for the intersting post. I'm going to "borrow" some of your code for this to use in my little Weather application that I keep playing around with. Instead of using a popup with the latest weather update, I'm just going to have it scroll the ...Show All

  • Visual Studio User dynamically chooses group-by field

    Hello, I would like to allow the user to dynamic choose which field to group-by in a report. In the Windows form they choose a field by name from a combobox, then I pass that to the report as a parameter. How do I then use that in the report in the group-by dialog I've tried to construct the "Fields" expression using the parameter but I'm missing something. The following does not work. = "Fields!" & Parameter.Mine.Value & ".Value" Thanks Thanks Robert! Can you recommend a few good books that treat topics like this ...Show All

  • Visual C# Loading MDIChild into MDI Wndow from a Dialog

    Hi, I have the following forms: form_MDIChild form_MDIContainer when a user choose a menu item on form_MDIContainer it will display a login dialog a\d i want if login was successfull to load the form_MDIChild into the form_MDIContainer. I tried this code before closing the login dialog but no luck. frmWorkingArea form_MDIChild = new frmWorkingArea(); frmMain form_MDIContainer = new frmMain(); form_MDIChild.MdiParent = form_MDIContainer; form_MDIChild.Show(); the login form is not MDI child. it's a dialog as i said but th WorkingAreaForm is MDI child of the MainForm ...Show All

  • Windows Forms Highlighting row in DataGrid

    I have gone through couple of articles and confused now. What is the most efficient way of highlighting row in Windows Forms DataGrid so that it takes into account both mouse click and keyboard up/down arrow keys.   ...Show All

  • Visual Studio Team System What is the criteria for running web validation rules?

    I have a web page that references a gif file, however the file is not there. This shows up in the results when I run a web test. If I add a validation rule it appears that the validation rule is not run, however if I add a validation rule where I do not have a missing gif file it appears to be fine. Tom I did not see this. Here is what I did. 1) I have a web site and I recorded a web test against the home page. 2) I renamed one of the gifs 3) Played back the test and verified the test failed because of the missing gif. It did fail 4) Added a validation rule to the request 5) Played test again and this time the request failed and ...Show All

  • Visual C++ Can't find MFC80ud.dll error

    I once upgrade my 2002 project to 2005, and it worked without any problem. But after I change the charset from mbcs to Unicode, then when I run the debug version, Windows informs me that "cannot find MFC80ud.dll". After hours of research and compared with the default project created by 2005, I found that the problem was due to manifest file in ".rc" (It was auto-generated by 2002): ///////////////////////////////////////////////////////////////////////////// // // RT_MANIFEST // IDR_MANIFEST            RT_MANIFEST           ...Show All

©2008 Software Development Network