bruce bubello's Q&A profile
Visual Studio Team System Sharepoint Service App Pool always stop automatically
hi, all After my team use team system to manage software development and version control, we found that it is really a convenient and fatastic platform. But few days ago, I found that I cannot access sharepoint web site of team project. And I cannot create new team project, the error information indicates that I have some issues with Sharepoint service. I checked TFS, and found that Application Pools for Sharepoint always stop automatically. The application pools are TFSWSS and TFSWSSADMIN. If someone knows that answer or meet this kind of issue before, I would be appreciate for your help. Thanks. ...Show All
Visual Basic VB2k5: Instantiate a textbox and assigning a text property
Hi, I tried instantiating a textbox with: Dim txt1 as new textbox However, though no error is encountered when I assign it a value, when I pass it to the database, all the fields are null. My insert method is working fine (coz i see rows with null values that are added in my tables), only, it cannot get the exact value of my instantiated textbox. I know i'm missing something.... hmmm probably i still need the property let/get... just guessing... Can someone help out cherrie Without seeing your specific code its difficult to tell whats happening but the functionality appears to work OK. Heres a 3 button example - one creates the textbox, the second sets the value and the third dis ...Show All
Visual Studio Team System Only Team Sytem cube is visible
On my prodcuction server, I can only select the "Team System" cube when creating reports, while on my test server all other cubes (Code Churn, Build, etc) are also visible. Some of the default reports (Bug Rates) are returning an error: "Query execution failed for data set 'PriorityParam'. (rsErrorExecutingCommand)" Others like "Bugs By Priority" are working fine. Any ideas Thanks. Some answers: - the production server is indeed a Standard Edition, the test server is a Developer Edition - (default Agile) reports are working on test server but not on production server - test server has lots of projects and reports are working on all of them - production server ...Show All
Windows Forms System.Configuration.Configuration generated user.config path is goofy
I have a traditional WinForms app. Is there a way I can get the Configuration class not to use the goofy path it uses: <snip>\foo.exe_StrongName_blahblahblah\8.0.0.0\user.config I'm OK with the version number but I would rather just use the product name: <snip>\Foo\8.0.0.0\user.config BTW, is this directory even portable to other machines Say I switch machines and want to copy over my user.config file for a .NET app. Can you not use ConfigurationManager .OpenExeConfiguration(strLocation); and pass it a location of configuration file Have never tried it so it is off the top of my head. James ...Show All
SQL Server Restoring Database through .mdf file
how 2 restore database in MS SQL 2005 using .mdf & .ldf file hi, you can not "restore" a database via it's physical files, but you can attach a database pointing to your available physical files.. please have a look at the CREATE DATABASE .... FOR ATTACH syntax at http://msdn2.microsoft.com/en-us/library/ms187858.aspx regards ...Show All
Visual Studio scale the control in a Div
I have a div that contains a Reportviewer control. The control can grow so that i get a horizontal scrollbar. Can i set a property to the control that it has to keep growing so that i do not get the horizontal scrollbar the height of the control is fixed but i have a dynamic numbers of columns and i do not want the control to show the horizontal scrollbar, i already have a scrollbar of my div element that contains the control. thanks Brian, that stil doesn't work for me, the control still has scrollbars :-( Here i cannot post a screenshot but i will enter my reportdefinition here. Maybe if you send me your email address i can provide a screenshot <rsweb:ReportViewer ID="rvBrutNe ...Show All
.NET Development Can't pass a datetime parameter from C# application to MSSql server
I use a condition in my query WHERE (ussrf1.rdate >= @aa) In code set parameter this .sqlDataAdapter1.SelectCommand.Parameters.Add("@aa",SqlDbType.DateTime); CultureInfo culture = new CultureInfo("ru-Ru"); culture.DateTimeFormat.ShortDatePattern = "dd.MM.yyyy"; DateTime date = DateTime.Parse("31.12.2005", culture.DateTimeFormat); this .sqlDataAdapter1.SelectCommand.Parameters["@aa"].Value=date; after call this .sqlDataAdapter1.Fill( this .dataSet41); it fails what's wrong Without "where" the query works OK, as from application, so directly to SQL server. when i use in application ussrf1.rdate >= CONVERT (datetime, '10.01.2003') ...Show All
Smart Device Development res://ieframe.dll/dnserrordiagoff.htm
i cant seem to enter any of the website as "res://ieframe.dll/dnserrordiagoff.htm" seems to appear everytime i try to enter a website if anyone could help me it would b great!!!! This forum is smart device development related. Since your question is not related to smart device development, it's off topic here. If you’re having a hardware issue, please contact hardware manufacturer or reseller. If you having an issue with 3rd party software, please contact respective software manufacturer or reseller. Otherwise please post to relevant forum or news group: http://support.microsoft.com/newsgroups/default.aspx Closing as off topic. ...Show All
.NET Development NO error, but I got only part of what I want to get.
No error was complained! The following program is to write a whole year's month,day,weekday in a MSSQL table. But somehow, for many times I have tried, but each time I got only part of what I intend to get: the whole year with 12 monthes, instead, I only got 3 or 4 months' content in the table. Can anybody tell me why calendar.dll using System; using System.Configuration; using System.Data; using System.Data.SqlClient; using database; namespace calendar { public class calendar { private int _nian; //year private int _yue; //month pr ...Show All
Visual Studio 2008 (Pre-release) DataView Cell wraping
Hy, I have writhed a DataGrid using ListView and GridView, my main problem now is that text in text in going out off the cell and I can't find a way to make it wrap, here is the xaml for the datagrid: <Grid> <StackPanel> <GroupBox Margin="1"> <GroupBox.Header> <Grid VerticalAlignment="Center"> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition /> </Grid.ColumnDefinitions> <TextBlock Grid.Column="0" Name="headerText" VerticalAlignment="Center"> Grid header </TextBlock> <Grid Grid.Column="1" HorizontalAlignment="Right"> ...Show All
Internet Explorer Development Open MS Word from IE
Hi, Is it possible to open MS Word from IE without using ActiveX And if so, how Thanks, Claudia Hi Dave, I am supposed to implement a new functionality for a CMS. The idea is to allow users to edit content not only in the browser (IE) but also in MS Word. So I would like to launch Word (when a user clicks the “edit in Word” link) and transmit several information such as the current URL, which content is to be edited, etc to the Word document. Thanks for any hint!! Claudia ...Show All
Visual Studio Express Editions Encryption
I got a problem with the IO class.. i try to encrypt something but i keep get a critical error says request is not supported... what can i do thats code System.IO.File.Encrypt("D:\\Adobe\\Adobe Photoshop CS2\\Photoshop.exe"); tryed other files but stil no worries. The reason it doesnt work for FAT32 is simple, because well, it's an old technology and not as secure as NTFS - this is what NTFS is good at, security and has all the features that FAT32 does not have therefore some functions in .NET may not work, such as this one in this case. ...Show All
Windows Forms drag & drop
How would one go about implementing drag & drop functionality with taskbar buttons as in allowing the user to drag buttons from the taskbar and drop them onto an application so it can determine what application was dropped there. Similar functionality is acheived in the program taskbar shuffle, and a few other programs like it. That would take several major tricks. The shell doesn't initiate a drag & drop operation when you click the taskbar button. To get one started anyway, you would have to use a global mouse hook. First, it needs to detect that the mouse is in the taskbar area. Then it would have to discover the button. Then it would have to reverse-engineer the button to the associated applic ...Show All
SQL Server Is SQL Server CE really the solution?
Hi, So far, with other programming platforms, I used to have the facility, embedded within application .exe, to: 1- Interface with already existing "multi-user" database (ex: Oracle, Access, etc.) 2- Create/access "local"/"Single-User" files for processing purposes. (try to minimize network trafic...) So far, I've read a lot about SQL Server products (SQL Server, Sql Server Express, SQL Server CE), at least all articles I could find, and would like to have your opinion on what would be the best approach 1- What SQL version to use for "multi-user" databases &n ...Show All
.NET Development Allocating large array -> out of memory
Heya, I tried to allocate a large byte array in C#, like this: byte [] buf = new byte [len]; (where len = 1gb) But I get an out of memory exception. I have 2gb of memory in my machine, so it should work Are there alternative/better ways to allocate large amounts of memory /Bo Is it possible to update any binary to use large address, including one that was compiled by someone else (no source available) and not even created in visual studio, like for instance say in Delphi ...Show All
