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

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

nef001

Member List

VikasAgr
Eeraj
goku_simon
Shaantu
mivecxtr
Perwel
Esenthel
Tdah
scharland
waddies
obricker
Thunder2002
mcse127
Haziman
stallion_alpa
Stephan Smetsers
TRACEYMS
Steven Hawkes
Joe Hegarty
jfb628
Only Title

nef001's Q&A profile

  • Visual Studio Team System Share a file to a folder?

    Hi, Is it possible in TFS to share a file between folders. For example I have an xml file that gets managed in one location but I also need it to exist in one of two other physical folders. I tried in VS to add existing item, select the file and click "Add as link" but it does not get added. Any ideas Thanks Donal only way out is branching , you can branch and update periodically , you can write code for this also . I had same situation and here is my question to Brian Harry http://blogs.msdn.com/bharry/archive/2006/09/26/772371.aspx#1053904 Does SP1 support something like "linked files" in VSS We are working on a multi-location parallel development projec ...Show All

  • Smart Device Development [C++] 'ifstream' : undeclared identifier

    Hi, I'm trying to deal with files on windows mobile 2005, i'm using VS studio 2005 beta 2. When i include #include <fstream>   No probleme but as soon as i try to create a fstream a ifstream or a ofstream i get an error ! Error 1  error C2065: 'ifstream' : undeclared identifier d:\Mes documents\WorkInProgress\C#\WinTelecopie2005\LogMachine\LogMachine.cpp 9    So here is my question, does these functions are supported on windows mobile 2005 And if yes why i can't use them PS : In the fstream file in evc8 include folder i found a declaration of basic_filestream even whith that i still got an error Error 1  error C2065: 'basic_ifstream' : undeclared identifier d:\Mes do ...Show All

  • SQL Server Visual Studio crashes when editing data flow task

    I used an evaluation version till last week. Was working fine so I decided to buy a Standard License. Installed during the weekend, I had many problems till I decided to reinstall completely Windows. I have installed SP1 Everything worked fine then, ONLY not one of my SSIS packages still works; I get following error when editing the data flow task The thread 'Win32 Thread' (0x7e8) has exited with code 0 (0x0). Unhandled exception at 0x54fc5e89 in devenv.exe: 0xC0000005: Access violation reading location 0x00000000. Please help, this is a disaster otherwise geertdeprez wrote: I used an evaluation version till last week. Was working fine so I decided to buy a Stan ...Show All

  • Visual Studio Express Editions Reading Lines in a Text File

    Hi I currently have a text file (textfile1) which contains 40 lines. Each of these lines contain data stored in the following way: nameofthis = value nameofthis2 = value nameofthis3 = value What I would like to accomplish, is to read these values, with a variable assigned to each "nameofthis" variable. I thereby mean that the program should read each line, check what the name before the "=" is, and then check if the variable for this value exists. If it does, it should read the value after the "=", to the specified variable. For instance: TEXTFILE CONTENTS (textfile1): name = Johannes surname = MySurname email = me@myself.com PROGRAM: ' Variables Dim name as String Dim email as String ' Read the ...Show All

  • .NET Development How to use xpath to an xml element with default namespaces in javascript?

    Thanks a lot! ...Show All

  • Visual C++ Please Help Me...

    Hi everyone, My name is Krishna Prasad, i recently joined America Online(AOL-BDC) and currently working on VC++. Actually, am facing here a problem and badly need a soluiton for it... As, am a fresher i'm in a sort of confusion. I need to retrieve the path and names of the files that are zipped i .e : I need to retrieve the name of files and paths f all the files zipped in a single folder ... Please,help me in solving this problem. With Anticipation, Thanks, Krishna Prasad H I'm afraid this question isn't very well suited for this forum, as it deals with the C++ language, as implemented by MSVC 2005. I suggest you head over to the news groups, e.g. http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public ...Show All

  • Visual Studio Express Editions Help in capturing CMD output

    Hello again. I have been working on quite a few programs lately. One thing I’ve been working on is a program to help me with my Game Design, Halo CE. One of the tools that are used is in the creation process is tool.exe. It’s a command-based program but I’m trying to make a GUI for it. I know of the “variable = New ProcessStartInfo” but it just doesn’t seem to work with this. Xdfgsdfga Appreciate This is my code to read the output of the tool.exe program: If Trim(txt_ToolCMD.Text) = "" Then MsgBox("Please Enter A Tool Command.", MsgBoxStyle.Exclamation, "Tool UI Error") : Exit Sub If chk_Append.Checked = False Then txt_ToolOut.Text = "" Dim exe As ProcessStartInfo Dim sLine As String ...Show All

  • Software Development for Windows Vista OwnershipTimeoutSeconds does not work

    Hi, In order to be scalable we have two servers running our workflows. Any server should be able to take over at any time. The workflows running on the servers make asynchronous requests via msmq to other services. The replies should be able to come back to any one of the servers and still be processed. What happens is that when the reply comes back to a server which did not make the original request (and then wait on an event), the server cannot fire the event on the persisted workflow, because it's still "locked" for use by the workflow. I am currently configuring the workflow instance ownership to be 2 seconds, and it takes longer than that before the response comes back to the server. I'm using the released version o ...Show All

  • SQL Server Cannot enlist with MSX server

    We have a server with the default instance and 2 additional named instances running SQL 2000 SP4. Recently I installed another instance for SQL Server 2005. We also use MSX/TSX approach to manage the servers so I tried to enlist the SQL 2005 instance with the master server using the msdb .. sp_msx_enlist @msx_server_name = N 'SQLMON' , @location = N 'Datacentre. Margin Lending overnight copy' and got this error, Msg 22026, Level 16, State 1, Line 0 The enlist operation failed (reason: SQLServerAgent Error: Unable to connect to MSX 'SQLMON'.) Looking at the text for this procedure it looks like it reads the wrong registry keys. The procedure it hardcoded to read, HKEY_LOCAL_MACHINE\ SOFTWARE\Microsoft\MSSQ ...Show All

  • .NET Development Active Validation of Licience

    I have written a program which I would like to licence out at a price/year. But I still don't know how to make the application licence expire. I can use the date but what if someone changes the date on their computer Can somenoe tell me what is the best way to protect my software The only solution I have come up with is to force the customer to do verification checks online every 10 times they use the software. This way I can check with a database and make sure that they still have a licience for it. If so what is the best way to implement this Thank you in Advance for all your help! Search Code Project for: Trial Maker and Application Licensing as 2 seperate searches. There are very good articles o ...Show All

  • SQL Server SSIS - Web Service task

    I just started using the Web Service Task in my package. I set the HTTP Connection Manager with URL & required credentials and the test connection was successful. And I saved the wsdl locally and selected the wsdl. In the Input I selected the WebService and as soon as I do that I am getting the error: "Item has been already added. Key in dictionary: PosDataSet Key being added: PosDataSet I am using this web service elsewhere in a console app and it is working fine. Any idea what could be causing this Any input will be greatly appreciated ...Show All

  • Visual Studio Express Editions Power Point Show in WebBrowser Control ? can it be done ?

    how to view power point show inside a web browser control in an application form thank you ahmedilyas wrote: sorry whats the problem :-) you seem to have it right.... this.webBrowser1.Url = new Uri(@" file:///c:\whatever\yourpresentation.ppt ") it doesn't work with me , so i wonder is it something with the power point file extention , or is it something with the way to use the webbrowser control ...Show All

  • SQL Server Connecting to SQL Server on a different port

    I have a server running SQL Server 2005 Dev behind a firewall that blocks the default SQL Server port. So, I changed the port that SQL server uses to another port. How do I connect to the database instance with SQL Server Management Studio. I have tried: xxx.xxx.xxx.xxx\MSSQLSERVER xxx.xxx.xxx.xxx:port\MSSQLSERVER name.of.machine\MSSQLSERVER On all of these, I get an error 25 - Connection string is not valid. I have the surface area configured correctly (i.e. named pipes and TCP/IP are both turned on), and the sql server browser is running. I can ping the server just fine, and when I go to GRC.com and do a shields up report it lists my port of choice as being open. What am I missing I also set the native client configuration's default p ...Show All

  • Software Development for Windows Vista Duration change not reflected in WMP (EC_LENGTH_CHANGED)

    hi, i have build a source filter, when the source file length changes I send a EC_LENGTH_CHANGED, CComQIPtr<IMediaEventSink>(m_pGraph)->Notify(EC_LENGTH_CHANGED, 0, 0); this works perfect in all directshow players, but not in windows media player. i get asked for the new stop position, but nothing changes. the duration  keeps always the same. can somebody help me please. thanks.       hi, i cannot find anything about that problem in that forum, maybbe there ist another direct show way to tell wmp that duration has changed. as i think wmp caches the duration time, and dont updates that value. in my opinion this should be changed in futur ...Show All

  • Software Development for Windows Vista Comments, Suggestions, Features and WHAT THE HECK WAS THAT!?

    Hopefully, that got your attention. We're starting to sketch out designs for the next version of CardSpace. I'm starting this thread and makin' it sticky so we can continue a dialog around new features. Now, I realize that CardSpace ain't even out the door yet, but the planning is beginning. I can't promise anything, but I can tell you that I'll listen, and I'll bring everything to the team. So, What do you want to see in the Next Version of CardSpace g Garrett Serack | Program Manager |Federated Identity Team | Microsoft Corporation blog: http://blogs.msdn.com/garretts Hey Garrett, I am not sure if this is fixed as of > RC1 and I have been meaning to mention this for sometime so ...Show All

©2008 Software Development Network