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

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

DavidSB

Member List

Judy-H
Tryin2Bgood
elephas
Nightman28
avikhinvasara
sorsh
hemo
ShadowRayz
WV John
Gilberto_al
charles C
Ultrawhack
Mathieu DESPRIEE
priyanka.dash
Barry Kwok
MacMark
Mr. Scott X
Dreedle
Trevor E Hilder
PeterVrenken
Only Title

DavidSB's Q&A profile

  • Visual Basic Getting "project location not trusted" with downloaded project but not after renaming it.

    If I download a project and add it to an existing solution and save/reload the solution, I get an error that the location is not trusted. However, it's not that LOCATION that's a problem, because if I resave the project with a new filename, the error msg goes away. (Also, I've applied the fixes for the location being untrustworthy). Any thoughts as to why this would be Is the location of the project on a another machine such as a file share or mapped drive If it is then try copying the file to you local machine before using it. ...Show All

  • SQL Server SQL Server Transaction

    Dear All, I have table with following Structure: Table Name: Test1 Column Name : Test1 Varchar(50) I am writing Transaction block as follows: BEGIN TRANSACTION -- Start the transaction insert into test1 values('4') update test set test = '3' -- If we reach here, success! COMMIT -- Whoops, there was an error IF @@TRANCOUNT > 0 ROLLBACK -- Raise an error with the details of the exception DECLARE @ErrMsg nvarchar(4000), @ErrSeverity int SELECT @ErrMsg = ERROR_MESSAGE(), @ErrSeverity = ERROR_SEVERITY() RAISERROR(@ErrMsg, @ErrSeverity, 1) In My transaction Insert statement is valid but update statement is on the table which does not exists. So, in this case it should RollBack the Tran ...Show All

  • Audio and Video Development Mutl-input and multi-output

    Hello: I am writing a media source that output 2 streams. One is a video stream and another is a audio stream. When start play, I got a error code from session get event (MEError, E_FAIL -> no any meanful information). But if I Deselect any one stream, another stream will play normally. so what is the problem about this issue About other similar issue. I write a MFT which accept two streams from 2 media sources and then output a single stream to audiorenderer. After set topology and play it, I got a error about "not support topology". I don't know what is the problem It is caused by 2 media sources or multi-input MFT Thanks Hi Fei-tian, Whoops, I should have stated this more clearly: The MFv1 pi ...Show All

  • Visual C++ differences win32 console & win32 project app templates

    Hi I have VS2005 In win32 menu, there are 2 templates 1-)Win32 Console Application and 2-)Win32 Project. For Win32 Console Application it says: A project for creating a Win32 console application Win32 Project it says: A project for creating a Win32 application, console application, DLL, or static library But they have the same menu win console,static and DLL.In Win32 Console Application dll or windows app. i can create windows or dll app. too. So why are there 2 templates What are the diffferences creating win or console or dll app.in Win32 Console Application template and Win32 Project template (Maybe in compiler level or something else) Both templates share the same wizard ...Show All

  • .NET Development error 25015 .net framework 2.0

    hi im new to this forum so i dont know if im posting this in the right forum. im having this problem while installing .net framework 2.0 sorry for my bad translation Error 25015.the instalation of assembly C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Web.dll has failed cause of a system error: the system cannot find specified path. can somebody help me pls Moving to the NEW .NET Framework setup forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=1020&SiteID=1 ...Show All

  • Visual Studio Express Editions adding contects of a text box

    I'm am looking to add the contents of three textboxes (ie: 2 + 5+ 6) However, if the textboxes are empty it will not add them and the error essage is (cannot convert string"" to double). Do I have to use an if statement to convert the empties to "0" Or is there a different solution correct. check length of textbox, if current textbox length is > 0 then check to see if the text entered is numeric (using Char.IsNumber or Char.IsDigit) and if it is, finally proceed to do some calc. example: Dim theValue as Double If Me.textbox1.Text.Length > 0 then    if Double.TryParse(Me.textbox1.Text, theValue) = false then       'error, ...Show All

  • Visual Basic Create new instance referencing an already created instance.

    This is an way out topic. In the constructor can I initize the current instance with an already created instance. In short pass, the memory references of the already created instance to the new instance To many this is like the singleton pattern but if possable would use the constuctor. By using the constuctor it would be possable to use auto generated code without mods to the code.. The autogenerated code could try to create an new instance but it would ref back to the origanal (first) instance of the class. ...Show All

  • SQL Server Transfar data between two server

    Ho to transfar millions of data between two server using DTS,Every time we need to truncate records from one server and fill fill these millions of records between another server I used foolwing query, check it. TRUNCATE TABLE [Test-PORTAL].DBO.Header INSERT INTO [Test-PORTAL].DBO.Header SELECT * FROM [TEST-10].[Test_F].DBO.Header Millions of recodes are going to affected by this query and transaction log size may generated up to 10-12 GB , is their any alternative method against this query. ...Show All

  • SQL Server SQL Reporting Services upload Error

    Hi...  I'm hoping someone else has run into this problem..  I have created a SQL report using SQL Reporting Services 2005.  When I try to upload it to the Report Manager I get the following error: The report definition is not valid. Please verify that the report definition uses the current report definition namespace (i.e. ‘http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition’). (rsNotACurrentReportDefinition) Other programmers here have created reports using SQL Reporting Services 2003 and haven't had problems uploading...  What can I do to get my report uploaded   Thanks Chris Bell - Information Technology Specialist 4 ...Show All

  • Visual Studio Team System Managing permissions

    Is there a way to restrict a user's ability to create, edit and delete labels or branches What I want to do is to have only certain users to have permission to manage labels and branches. Can this be done I just realized that if you deny access at the root level and then re-enable it on the subdirectories, you need to re-enable access to all the groups because the "Inherit security settings" option apply to all the groups - not just a selected group. So if you want to restrict just the Contributors from creating branches at the root, you will have to add all the other groups back in at the subdirectory level and add the permissions back in because the "Inherit security settings" opt ...Show All

  • .NET Development Multiple instances of same TraceSource in one process

    I would like to be able to create multiple instances of a TraceSouce specified in app.config and then tweak their settings independently. When trying to do this it seems that if I create them within the same thread they're all sharing the same TraceListeners. If created in different threads they get their own listenter instances, which is what I want What would be the proper way to do this Example code: ts1 = New TraceSource( "Test" ) fileLogTraceListener1 = ts.Listeners( "FileLog" ) fileLogTraceListener1.BaseFileName = "FileName1" ts2 = New TraceSource( "Test" ) fileLogTraceListener2 = ts.Listeners( "FileLog" ) fileLogTraceListener2.BaseFileName = "FileName2" ...Show All

  • Visual Basic To check the running of any process

    Hi All, i want to check the running of any process (e.g. sample.exe) in vb 6.0 and take some action depending on the result of action whether the process is running or not. how can i do it. Pls Help Thanks and Regards Munish Gupta These forums are for VB.Net questions please post vb6 questions in the vb6 newsgroups. ...Show All

  • Visual C++ Reverse Engineering with Visual C++ 2005

    Hi there, I've installed VS2005 Professional and Visio Professional 2003 SP2. According to MSDN there should be a way to reverse engineer an existing C++ project: ' From the Project menu point to Visio UML, and then click Reverse Engineer. ' Unfortunately, there is no corresponding menue item at all in VS. Do I have to configure this first Thanks for any advice Artschi Hi Damien, the source is 'How to: Create a UML Diagram from Visual Studio' in MSDN ( http://msdn2.microsoft.com/en-us/library/ms182015(vs.80).aspx' ). Cheers Artschi ...Show All

  • .NET Development Where to find .NET Framework version 1.1.4322?

    I am trying to install synctoy from Microsoft. This software requires installation of .NET Framework 1.1.4322. The setup automatically leads to a page displaying the .NET Framework redistributable as well as SDK version 2.0 for x86, x64, IA64. I have a pentium 4 machine(not 64-bit). I have tried to install x86 versions of both redistributable as well as SDK version but still I get the same message for running the setp of synctoy. I am not sure what I am doing wrong. Any help will be greatly appreciated. Regards Shamas .NET Framework 1.1 redistributable file: http://www.microsoft.com/downloads/details.aspx FamilyID=262d25e3-f589-4842-8157-034d1e7cf3a3&displaylang=en does this help ...Show All

  • SQL Server send mail using variables from select statement

    I'm getting the error "No recepient is specified". I have set up a dataflow from a select statement into a record set, then have that dataflow point to a ForEach group with a mail task in it. I have set up variables for the username and subjectline. So in the mail task I have no value in the To: line because I specify an "http://www.sqlis.com/59.aspx">http://www.sqlis.com/59.aspx exactly. I couldn't figure out how to included screen shots. Any ideas Okay, found it. I have to set DelayValidation to True . Since the To line is set through ...Show All

©2008 Software Development Network