Software Development Network Logo
  • SQL Server
  • Visual Studio
  • Visual Basic
  • .NET Development
  • Microsoft ISV
  • Visual C#
  • Visual C++
  • VS Team System
  • VS Express Editions
  • Smart Device
  • Windows Forms
  • Game Technologies
  • Visual FoxPro
  • Architecture
  • Windows Live

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

joseadolfo

Member List

Marcel Kulicke
AustinMyers
Pete Farmer
Chris
mon2jan2
Richie_C
Ben Hellquist
Nishantha
boexi
Shawn.liang
fireladie
TheSoddy
Jaswant Singh Rana
JavedAnwar
Tim Daniels
Aziz Ahmedabadwala
ZenBP
RichardSs
Chris Tao [MSFT]
tehama1
Only Title

joseadolfo's Q&A profile

  • Visual C++ Where is uuid.lib in VS .NET 2003?

    Hi Dennis! Does anyone know how to either: 1. remove the uuid.lib dependency (I cannot figure out where it is coming from) 2. download uuid.lib It should be in the following directory: %ProgramFiles%\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Lib -- Greetings Jochen My blog about Win32 and .NET http://blog.kalmbachnet.de/ Dennis, It is possible ...Show All

  • Visual Studio Team System tfsbuild delete working but report not changing

    There's a cryptic title. Here's the situation: I created a couple of builds using Team Build and everything was correctly published. I used tfsbuild delete to delete these items because they were test items. The items were reported as deleted (and all of the build information was deleted (drop location, build location, etc.). However, when I re-ran the build report, those builds were still listed there. Is this a known bug or is there a manua ...Show All

  • Smart Device Development Named mutex in C# - P/Invoke?

    I need a named mutex in C#.  Where can I find the documentation on how to do P/Invoke calls for this Thanks. I don't have V2... Anyone have any ideas for V1 PInvoke I need to create/open/release a mutex. Thanks. ...Show All

  • SQL Server Simulate ROW_NUMBER () in SQL 2000

    I would like to generate an incrementing column value to each row found in a query in SQL Server 2000.  My understanding of SQL Server 2005 is that you can accomplish this approximately along these lines:    insert into MyList (myNo, lName)    select ROW_NUMBER() myNo, lName    from Employee    select * from MyList    order by myNo    myNo   &nbs ...Show All

  • Windows Forms vb express and sql server express

    Hi, I am trying to use the combo "vb express and sql server express" to know in advance what these two products will be like; I haven’t done anything yet because I am unable to create a Data Source. When I open the New Data ...Show All

  • Visual Studio Tools for Office functionalities in Excel Chart

    I am trying to programmitically add some functionality to excel chart that I am creating, one thing I am trying to do is to have the tool-tip/bubble show up for every time series being plotted by moving the mouse in the x-axis of the chart(line chart). Say I have 3 time series data and I created a line chart, so X-axis is a time line and say y-axis is share price, we will have three lines for 3 time series, if I place the mouse on any one time s ...Show All

  • .NET Development could not load type "_Default"

    Hi everybody :) I'm doing a web app for some university coursework, its the first time I've used ASP.NET C# and I'm loving it but when I put the files on the remote server I get the error on this page. http://www.apixelmind.com/email/ Someone told that I need to copy a project or something and do it that way, I'm using the Visual Studio 2005 Beta 2 version and I can't find this function anywhere.  If anyone could help with that or give ...Show All

  • Smart Device Development List Control

    hi, how do we add a row dynamically to a list control in evc++ any links to the tutorials for list control in evc++ Hi, Are you talking about CListbox if so you can read about it here: http://msdn2.microsoft.com/en-us/library/y04ez4c9(VS.80).aspx I use AddString. If you aren't using MFC and you aren't on a Smartphone (no MFC support) I suggest moving to MFC. It makes life way easier ...Show All

  • Windows Forms BindingSource.Find throws exception on empty DataSet

    I have a problem with a bindindingSource very similar to the problem reported here but I've tried the solution outlined (explicitly setting the bindingSource's DataSource before the call to Find) but it doesn't help me (the DataSources for my BindingSources are correct) - so there's no chance for the DataSources to get set incorrectly. My situation is slightly different because I'm adding the BindingSources from the toolbox (not by ...Show All

  • Windows Forms Login Error

    Can someone tell me why I get a error when I try to login to the database. It tells me to check the errorlog, however it doesnt' write anything to the '\bin\errorlog file. 'DefaultDomain': Loaded 'c:\windows\microsoft.net\framework\v1.0.3705\mscorlib.dll', No symbols loaded ...Show All

  • Visual C++ Compile error! I want you help

    I am trying to build my solution but I am getting the following errors.Can you show me the way Thanks.I use WinXP+VS6.0+SP6.  --------------------Configuration: TSPApp - Win32 Debug_NuMega------ Compiling... stdafx.cpp NOTE: WINVER has been defined as 0x0500 or greater which enables Windows NT 5.0 and Windows 98 features. When these headers were released, Windows NT 5.0 beta 1 and Windows 98 beta 2.1 were the current versions. For this rel ...Show All

  • Visual Studio Team System Useless output from TFS source control

    It pains me to see that even the new Team System source control writes the same pointless drivel to the Output window in visual studio: ---- Operation started at time 3:32:18 PM ---- ---- Operation completed successfully at time 3:32:18 PM ---- ---- Operation started at time 3:32:18 PM ---- ---- Operation started at time 3:32:18 PM ---- ---- Operation completed successfully at time 3:32:18 PM ---- ---- Operation started at time 3:32:18 PM ---- - ...Show All

  • Visual C++ Resource Editor: Add/Remove operation is impossible '(null)' is read only

    MESSAGE: Resource Editor: Add/Remove operation is impossible, because the code element '(null)' is  read only   So, I moved files from /ProjectA/ProjectA to just be /ProjectA fixed the project settings deleted and added files to go with the changes.  My 'ClassView' contains duplicate classes CMyClass and CMyClass with two different paths one in /ProjectA/ProjectA and the new one /ProjectA; I can't delete the old /ProjectA/Project ...Show All

  • Visual C# Detection of Windows-Version

    Hi, I'm writing a class, whitch detects the Version of the installed Windows. On the MSDN, I found this link: http://msdn.microsoft.com/library/default.asp url=/library/en-us/sysinfo/base/getting_the_system_version.asp This works good, but I need more information. How can I detect the different WindowsXP Media Center Versions (2002,2004,2005) How can I detect the WindowsXP Edition N-versions Can anyone give me some information about this ...Show All

  • SQL Server IIf problem

    I'm using that expression in a select statment in generic query designer, but there is a problem with it. I'm wondering what would that be. IIf(Parameters!StartDate.Value = "" or Parameters!EndDate.Value = "", "", "where (Date between '" & Parameters!StartDate.Value  & "' and '" & Parameters!EndDate.Value & "')") Thank you Deepak for your help. Actually it worked with one double quote, the pr ...Show All

©2008 Software Development Network

powered by phorum