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

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

Frankelman

Member List

Edentheguy
Cactus77
Binu Jeesman
Seefer
XNA Rockstar
Mike Lapierre
ROSE3000
enric vives
EricEric
Andreas_M
ogagnol
codetale
dba_sql
Belliez
Alexey Vishnyakov
RobFellows
NickMcCrea
pc_bond
chrissav
SunilN
Only Title

Frankelman's Q&A profile

  • Visual Studio Web Plug-in for SourceSafe 2005

    I am trying to connect to my web based SourceSafe database using the 2005 plug-in from Visual Studio 2005 Team system on a client. Each time I try to access the machine I get an 0xC00CE556 error with no explanation. Does anyone know what this means and more importantly how to fix it Thanks for suggestions, but they are not helpful. I had try it, but with no success. In the web folder for SourceSafe web service are two files with XML text - web.config and VssService.asmx (there's a directive only). Both the files looks good, but the error resides... Some other ideas Thank you Vlado ...Show All

  • .NET Development Treeview in asp.net 1.1

    I could not find the treeview control in my tool box. can any one tell me how to use treeview control and the working of it in asp.net 1.1 C# thanks basith The treeview was added in v2. For v1.1 you'll need to use either a third-party control, write your own or use the IE WebControls unsupported library from MS ( http://msdn.microsoft.com/library/default.asp url=/workshop/webcontrols/webcontrols_entry.asp ) Michael Taylor - 1/9/07 http://p3net.mvps.org ...Show All

  • Visual Studio Team System Access is denied: Could not create metadata cache directory

    After installing a web application that interacts with the TFS API for Work items I get an exception. This works fine on Windows XP, but I'm sure there is a problem with the permissions on some folder, any idea what folder I should give permission to Access is denied. (Windows) Could not create metadata cache directory '? 耇 ? '. (Work Item Tracking Metadata Cache) The system cannot find the path specified. (Windows) Could not create metadata cache directory '? 耇 ? '. (Work Item Tracking Metadata Cache) Could not open file '? ? ? '. (Work Item Tracking Metadata Cache) Access is denied. (Windows) Could not create metadata cache directory '? 耇 ? '. (Work Item Tracking Metadata Cache) The system cannot find the path specified. (Windows) Co ...Show All

  • Visual Studio 2008 (Pre-release) Paint the region between different Paths

    Hi guys, Is it possible to paint all the region between the different Paths. If I put Fill property to the Path which is ArcSegment in my case, only the Arc will be painted of course. <Canvas xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml "> <Path Stroke="Black" Fill="AliceBlue" StrokeThickness="1" Data="M 10,300 A 180,10 0 0 0 400,300" /> <Path Stroke="Black" Fill="AliceBlue" StrokeThickness="1" Data="M 30,230 A 180,10 0 0 0 380,230" /> <Path Stroke="Black" Fill="AliceBlue" StrokeThickness=" ...Show All

  • Audio and Video Development Saving stream settings

    I'm trying to save streams settings (e.g. audio/subtitle track numbers) on titleEnd system event and what I've noticed that Tosh player trigger this event after loading the new title, so I couldn't use currentTitle to collect settings because it already point to the new one. Can anybody give an idea where is the best place to save these Thanks Peter! it's clear now. DrumAllDay wrote: Why save the user's track settings when the title ends What about when they just change the tracks with the audio_track and subtitle_track events I had a scenario where user could jump between titles with different advanced applications and the settings should be kept. ...Show All

  • Visual Studio Tools for Office commandbars from HELL!

    Greetings, I created a brand new VSTO Word Template project and am trying to implement a SIMPLE commandbar in my project. My code follows the code from the MSDN article found here: http://msdn2.microsoft.com/en-us/library/scff9c7c(VS.80).aspx I will paste the full code here: private void ThisDocument_Startup( object sender, System. EventArgs e) { AddToolbar(); } private void AddToolbar() { try { commandBar = Application.CommandBars[ "Test" ]; } catch ( ArgumentException ex) { } // Toolbar named Test does not exist so we should create it. if (commandBar == null ) { // Add a commandbar named Test ...Show All

  • SQL Server BUG: UPDATE updates not listed fields

    Hi Everybody, I am in this forum for a first time. Today, I think, I found a bug in SQL Server 2000. I tried it on SQL Server 2005 and it is alive yet. Before I explain exact the problem I have a stupid question. Is there any type of award if I have found a real bug. It is about a situation when I try to update some fields in a table and I get updated some other wrong fields. There aren't any triggers ot something else. Create a new table, insert one row, update some fields but other ones get changed too. Is there something known about this Thanks, Hristo. Mike, This is a simple example what happens: ************************************************************************ CREATE TABLE [db ...Show All

  • Visual Studio Team System Test not found in TFS build

    Hi The test run fails with warning in buildlog.txt: "Test mytest cannot be found". The .vsmdi file loaded fine. Storage attribute in the .vsmdi file points to right folder where mytest placed. I've checked all properties - testlist, paths - everything looks fine, but the paths in "Search path(s) for tests" are still wrong, they point to solution folder. How can I add or change the "Search path(s) for tests" paths Zeev I think you're misunderstanding the SearchPathRoot property - this specifies the path to search for the binaries containing the unit tests, not the vsmdi file. Notice the Loading d:\Builds\DefenseAnalyzer3\...\DefenseAnalyzer.vsmdi line just above ...Show All

  • SQL Server Error: Subreport could not be shown.

    I work for a Microsoft Gold Partner and I am having a problem with subreports in SSRS 2005 SP1. Essentially, I have a report that contains subreports. The main report has a table that passes a parameter to a subreport in each row. The report renders properly when I preview it in Visual Studio, but once deployed to the server it only renders the first subreport for the first row, and every subreport thereafter displays the error, "Error: Subreport could not be shown." I tested each subreport individually on the SSRS sever and each executes and displays fine. I turned on traces in the web.config file and found some additional information: Hi, this is definetely a bug. Please post your information about this at ht ...Show All

  • .NET Development Expose library as web service correct pattern

    I want to expose the whole functionality of a library through a web service. In order to do that of course I've created web methods for all public methods in this library. Because only public data and no logic or private fields is transferred through web services, I need to know what is the correct pattern for invoking the methods of the proper objects. By now I've found two possible patterns: 1) Objects are created on the server and then passed to the client ( Of course now they have only data and no logic ) and when invoking a webmethod pass this object as a parameter so that the server now has object with the correct data and methods and just invoke the method from this object. The proble ...Show All

  • SQL Server SSIS package & variables

    I have a SSIS package that was migrated from DTS 2000. It had a variable that I passed to the DTS package when executing. Now when I try executing the SSIS package with the variable, I get the following error: The package path referenced an object that cannot be found: "\package.variables[user::SnapShotDate].value". This occurs when an attempt is made to resolve a package path to an object that cannot be found. From everything that I can find, I am passing the variable correctly. If I look at the package within BIDS, my variable is listed under the variable window & it is scoped for the package. Any ideas on what I might be missing here This is my first SSIS package that contains a variable. Let me know if you need mor ...Show All

  • Visual Studio Express Editions URGENT - The Parameter Is Incorrect message when adding a new table

    I have recently installed VB Express 2005 with SQL Server option on Windows 2000 Professional with Service Pack 4. The install had no problems. I can create basic forms with no access to a DB. When I try using the DB from VB I get "The parameter is incorrect" error. This error happens when I add a new item to my project - choose SQL Database - go to Database Explorer for new DB - right click table folder icon - add new table - should see empty grid - but get "The parameter is incorrect" message with no grid. I am unable to define the table or columns for the table. At the moment my VB installation is useless without access to the SQL Server. What is missing from the VB installation How els ...Show All

  • SQL Server Option to select which report to "Jump to"

    Hi Is it possible to set a "jump to report" option where the user can select which report to jump to from a list. E.g If I click on the Company field it allows me to select to either jump to the company sales report OR the company purchases report thanks One possible solution is to jump to intermediate report that has two links, something like "Click here to open Sales report", "Click here to open Purchases report"   ...Show All

  • Visual Studio Express Editions Link

    Hi, im new to C++ and I was would like to know how to make a link in it. What do I need to add to the click event Thanks, jrcdude. It's getting closer but I still cant get it to work right. Can you take a look at my click event and tell me if you see something wrong   Thanks, jrcdude. This is just supposed to open Internet Explorer.  } #pragma endregion private : System::Void linkLabel1_LinkClicked(System::Object^ sender, System::Windows::Forms::LinkLabelLinkClickedEventArgs^ e) { Process::Start(S "C:\Program Files\Internet Explorer\iexplore.exe" ); }     ...Show All

  • SQL Server HELP: REPORTING SERVICES Pie Chart Point Label Formatting

    I'm trying to complete a report with a few pie charts. these charts need to show the category, the associated revenue, and the % of total. I can get the first two but am having a problem with trying to add the % to the label. This is the only show-stopper for my report. thanks You can calculate the percentage by using an expression for the data point label. E.g. =Sum(Fields!Sales.Value) / Sum(Fields!Sales.Value, "ChartName") See attached sample report. -- Robert ================================== < xml version="1.0" encoding="utf-8" > <Report xmlns=" http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition " xmlns:rd=" http://schemas.microso ...Show All

©2008 Software Development Network