Software Development Network Logo
  • Windows Vista
  • Visual C#
  • Audio and Video
  • .NET Development
  • Visual FoxPro
  • SQL Server
  • IE Development
  • Smart Devicet
  • Visual C++
  • Visual Basic
  • Game Technologies
  • VS Team System
  • Microsoft ISV
  • SharePoint Products
  • Visual Studio

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

LeeroyB

Member List

just_Curious
Zhao_Gil
McGeeky
Dave Le
Beetle54
pharaonix
Douglas McClean
neo_assyrian
nirnet
mcnamaragio
netpicker9
Dee_dotnet_79
mrbelk
Mobo81
patloeb
ruleDWorld
krhoover
etcheverrjc
Chirag vm
Seradex
Only Title

LeeroyB's Q&A profile

  • Visual Studio Team System Getting Latest Version Error (TF30063)

    I got an error when I try to get the latest version from TFS. TF30063: You are not authorized to access Microsoft-IIS/6.0. Please advice! Thanks Are you using the shipping version (not beta 3 or RC) Are you using the version control proxy Does this happen for all files or a particular file Did this just start happening or has it always been a problem If it just started happening, what changes have been made lately to the server Buck ...Show All

  • Smart Device Development Audio Muted when making a phone call.

    Hello experts, Windows mobile 5.0 pocket pc phone edition. The background music is muted when I make a phone call. Our application won't allow this interruption. Could anyone give me a hint to solve this problem Thank you! Xu Hi , This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forums for this type of queries. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286724&SiteID=1 Thanks Srikanth Bogadapati ...Show All

  • SQL Server Capturing Previous Value

    When updating the value of a field in a table, is it possible to capture -- either for insertion in another table or as a variable -- the previous value of the field Thus, if a field value is 'Value1' and a user updates it to 'Value2' is there some way to hold 'Value1' as a variable Lynn Trapp Hi Lynn, In good db design, there should be a new record inserted, not continual updates to existing records and you track the history through timestamps. However, if you want to just capture the previous existing value, it would be more practical and efficient to add a field called oldMyField and record the old value in your existing table instead of creating an entirely new table to record ...Show All

  • Visual Studio Tools for Office Very odd excel list object issue

    I have a list object that is bound to a data set. For technical reasons I have a few extra columns in the list that i don't want the user to see (the first and last columns), so I hide them away by making the columns hidden (Format -> Column -> Hide) so they have a width of 0.00. If I then use the filter on the list to filter out some of the records, editing a value causes the data cells to shift one to the left, so say I had User ID (hidden) |First Name | Surname | DOB, and edit the DOB value once commited to the dataset the cells have UserID (hidden) | User ID (now shown in First name column) | First Name (in surname col) | Surname (in DOB column). The dataset hasn't been altered as if i commit it back to the database it saves t ...Show All

  • SQL Server Configuration File not always used

    I have a simple SSIS package (stored in the file system) that gets a file path from a configuration file. The configuration type is an indirect XML configuration file that uses an environment variable to store the location of the configuration file. When I run the package using dtexecui, or just dtexec from a command line, the package successfully picks up the file path from the configuration file (for verification I am writing out the variable containing the path to the log file). However when I run the package from a SQL Agent job it appears that the configuration file is not being used (the path is set to the same dummy path that I used during development). I have tried running the job as both a CmdExec and an Integrati ...Show All

  • Visual Basic How. to handle multiple pages of graphics in VS2005.

    Hi, I'm working on a graphics program which permits the user to select a drawing from a table, add required dimensions and other information, save the data in Sql tables, then produce a PDF file, and/or print out the page. Usually only one page is required with each page having a max of 6 drawings, however, on occasions there may be more than six, so a number of pages would be needed. So far I have reached the point where I am satisfied with the result, if drawings are <= 6, however, I am completely at a loss as to how to handle multiple pages. At present I am using the Paint Event to allow the user to see the result prior to saving or printing. However the print out takes about 15 seconds. Using Print Page Event, I believe ...Show All

  • SQL Server How do I install SQL Server Management Studio

    From everything I read SQL Server Management Studio is only installed when you install SQL 2005 server. I am using SQL Server 2000 sp3 so I have the Enterprise Manager. Is there a way to install it or some other tool I can use to manage/view my sql everywhere database You could install the SQL Express management Tools and try them. ...Show All

  • Visual Studio Team System VSCover80.dll Vista 64bit, VS .Net 2005 TS

    Hi, I have a strange problem, I installed VS .Net 2005 Team Suite edition with full install. My tests can't run code coverage becuase VSCover80.dll is missing. I reinstalled VS but same problem. Does anyone know why Is this a Vista known problem I also tried SP1 beta for 2005 but no VSCover80.dll either. So anyone know why thanx Johan / NSquared2 www.johannormen.com/blog Johan, No this is not a known problem with VSTS. So after running a full install all of the profiling dlls are installed except for VSCover80.dll VSCover80.dll should install to either system32 or SysWOW64 depending on the 64-bitness of the OS, have you checked both of those location for this file Also, if you do not see the file there could you l ...Show All

  • Software Development for Windows Vista Media Player style panel

    Hi, I want to create a panel that has a background like the Windows Media Player 11 toolbar or the Windows Photo Gallery, but I have no idea how to paint this. Just to make this clear the problem is not where or when to paint, I just don't know how I can get this glowing gradient. Any help with this (no matter if for WPF or WinForms) would be great! Thanks so far, but that was not exactly what I was looking for. What I'm interested in is a way that I can create this myself (I need it for a WPF app). Do they use some kind of gradient brush for it in WMP and Windows Photo Gallery or is it just a bitmap brush ...Show All

  • Visual Studio Express Editions Left side solicits unassigned variable error

    When assigning a value to a variable, I get the error Use of unassigned local variable 'outgoing' The compiler is complaining that the variable on the left side of the equals sign has not had any value assigned. I have two problems with this: First: I understand that the new used in the class should set all array members to zero. And second, this is on the receiving end of the assignment. What does it matter if it has not had a value assigned. Its getting one now. I used the same structure as the incoming argument in that called procedure Update_Raw_Data() and it compiles without error. This is the only error in the project. There simply must be something I cannot see. Please clue me in. If needed, I can zip and email the e ...Show All

  • .NET Development Problem with SqlBulkCopy when destination table name has apostrophe (').

    I have a problem with tables names like a'b. WriteToServer(IDataReader) throws Exceptions: Exception type: System.InvalidOperationException Exception text: Cannot access destination table 'BPMExpert.dbo.[a'b]'. Inner Exception type: System.Data.SqlClient.SqlException InnerException text: Incorrect syntax near 'b'. Unclosed quotation mark after the character string ''. Escaping the name using surrounding brackets, as the documentation says [<database>.<owningschema>.<tableName>] , doesn't help. Simple select "SELECT count(*) from BPMExpert.dbo.[a'b]" works great. The problem exists only with apostrophe ('). With other characters, such as ampersand (&),percent (%), etc, ...Show All

  • SQL Server Opening database with SQL Server 2005 Express directly from DVD

    Hi, I have a database that is archived onto DVD, the dvd contains .MDF, .LDF and .NDF file. The database was created on SQL Server 2000 machine. I don't have access to the database until it has been archived onto DVD... Is it possible to open it read-only (even though database on DVD is not marked as read only in it's database properties) directly from the DVD. Ideally want a quick way to view the data on the DVD but at the moment it seems that I have to copy it to hard disk first before I can connect to it. This process takes about 10 min on the machine I'm using as it is a 3 GB .NDF file. From research I've done so far it seems to be impossible which is quite unfortunate, but if anyone has any idea of how it might be possi ...Show All

  • Windows Live Developer Forums Thematic maps?

    Is it possible to build thematic maps using the virtual Earth SDK For example making regions different colours based on their population density. Thanks, Andrew Static is not thematic ! Of course it is. Thematic maps hasn't got anything to do with whether the data is dynamic or static. It's just about showing a "theme" like the example I mentioned earlier - the theme there was showing population density, which makes it thematic. ...Show All

  • .NET Development .NET remoting and local web server

    We have a backend application and ASP.NET web application running on customers' sites. Once in a few weeks they would report that they could not run our web application. They get the "Cannot find server" error on the browser. If they try to go to  http://localhost/   they will get  the same error.  The ASP.NET application communicates with the backend application through .NET Remoting.   To fix it, they would have to kill the backend application and restart it. Then the web app would come up just fine.   What could be the problem in the backend app that caused the local web server down Any help would be greatly appreciated. hong2007     ...Show All

  • Visual Studio 2008 (Pre-release) RichTextBox, current inline element?

    How can I find the ”current inline” element at the cursor position If I use “this.richTextBox1.CaretPosition.Paragraph.Inlines” I get all the inlines in the current paragraph. Best regards, Thomas S. Andersen You can cast it, currentInline = this.richTextBox1.CaretPosition.Parent as Inline, so obviously if its not an inline, it will return null. ...Show All

©2008 Software Development Network