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

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

steveareno

Member List

IBRAHIM ERSOY
jh0483
Ragnvald
JinMengcheng
Mr Pro Tools
Anarchy
StijnV
mattii
kas1972
GoDaddy
lkld999
Jarodtweiss
Zulbaric
Johnny606
shafiqm
Yeshia
FedericoC
MaggieChan
Tovdb
Ademaure
Only Title

steveareno's Q&A profile

  • Visual Studio Team System How to detect a conflict?

    Hi, can someone help me understand a bit better how to detect a checkin conflict programatically I mean, if I want to do a non-exclusive check out, modify a code and then try to do a check in automatically, how can I verify that a conflict is occurring The Checkin method call will throw a CheckinException instead of returning back a changeset.   The message (if english) will be something like TF10141: No files checked in: resolve the conflicts and try again, and you can check the Conflicts property on the CheckinException itself to access the conflicts if there were any. ...Show All

  • .NET Development Error 25007.Error occurred while initializing fusion. Setup could not

    Hi, I am trying to install .net framework 2.0 on Windows XP OS. I get the following error " Error 25007 . Error occurred while initializing fusion . Setup could not load fusion with LoadLibraryShim().   how do i solve this     Hi wommat, what do u mean with all VC80 dlls Dlls starting with that name All is started when i tried to install the SP1 of vs2005 and i've had an error during it. Since then, even if i remove everything, i can't install anymore .net framwork 2.0 and i have always the error in the subject :( Anybody can help me rgds Simon ...Show All

  • .NET Development .NET Frame Work 3.0, New Controls

    Hi Everybody, Please help me regarding whar are the new controls available in .NET Frame Work 3.0 for the latest release. Thanks in advance. Vara When I check out the site, the site had this news item for RC1: The online documentation for the Windows SDK for Vista RC1 and the .NET Framework 3.0 RC1 is also now available. Here are the direct links to the documentation for the .NET Framework 3.0 technologies: ...Show All

  • SQL Server SQL n data mining

    what i know about data mining is it's a database system with automanagement. i would like to know more about this since there is lots of research work going on here. You are welcome to this community. You can find a lot information on how to use SQL Server Data Mining at these web site/links: http://www.sqlserverdatamining.com/DMCommunity/ http://msdn2.microsoft.com/en-us/library/ms175609.aspx Jamie's blog is also very informative: http://blogs.msdn.com/jamiemac/default.aspx Good luck, ...Show All

  • Visual Studio Installing windows Service

    Hi, I am newbie in .NET 2005. I have created a Windows Service program. Now I want to create a Visual Studio Setup wizard. This is what I did: 1) Go to New Project->Other Project Type->Setup & Deployment->Setup Wizard 2) In my Application Folder, I added the exe of my Windows Service, and then just build the solution. 3) Then I run the setup executable. I found that the windows service is not registered to my services list (I thought it will appear on Control Panel-> Administration Tools->Services ) What is wrong Did I miss anything Please advice. I promise to grade you. Urgent. Thanks Hi Taylor, Thanks for your explanation. I think I have already added the insta ...Show All

  • Visual Studio 2008 (Pre-release) Load Testing Problem

    Hi, I am load testing our server's WCF service, which is running on a 2003 box. The service uses a WSHttpBinding binding. I have a simple console application that starts up a number of threads (currently 20), creates a proxy on each thread, and invokes the service every 30 seconds from that thread. In perfmon on the server, the ASP.NET 'Requests Current' counter remains at a steady 2, indicating only 2 requests from the client are being served at a time. Eventually it gets through them all, but if I up the number of threads to, say, 200 I get these errors: System.ServiceModel.Security.MessageSecurityException : An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault c ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA certification exam

    I apologize if this is not the right place to ask, but I've seen some requests for DirectX certification, for which there were(/are) no plans, and I've been wondering this about XNA since I first noticed it on the Startpage of VB express: Is there going to be an XNA certification exam, as part of a current development cert, or a MCGD cert for example (covering Net2.0 framework + C# + XNA ) It would justify spending some more time on learning all the ins-and-outs rather than 'just' what I need, and I'd love to see some MS Training Kits on XNA... If there is, can we expect to see a beta around the holidays or is this something for on the long term  I'm sure there will be a demand for such a cert from students, professi ...Show All

  • .NET Development Get Hardware Detail from Drive Letter

    Hi all, May i know how we can get hardware detail from a Drive Letter by using VC++ .Net Hardware Detail are like GUID, Hardware ID, Friendly Name and etc. Regards in .NET 2.0 you can use the DriveInfo class to get a list of all drives installed or mapped on the system. Example: DriveInfo[] theDrives = DriveInfo.GetDrives(); foreach(DriveInfo curDrive in theDrives) { MessageBox.Show(curDrive.Name); } away from this....and into WMI. I see DiskDrive class has the DeviceID and the LogicalDisk has the Name. So somehow you need to perform some similar SQL Join statement or something. Ill see what I can try ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Newbie question - spawning new objects

    Hi folks, Apologies for asking a really simple question in the forums, but I'm hoping someone may be able to help me. I'm basically trying to create a very simple 2D XNA game in a week, from a background of not having programmed anything more complex than a VCR since Spectrum basic - it's for a magazine article, hence the need to cut a few corners when it comes to learning... I have a problem which - I'm sure - the solution will provide me with a Eureka moment in understanding how this is done. I've followed the excellent videos on LearnXNA.com and the built-in tutorials and have figured out how to draw sprites on to the screen and move them around. It's not much, but it's a start... How do I then add in new sprites as the game progr ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Game Development Team

    Looking to get a few people together to create a Worms / Scorched Earth clone. i have people doing art. the game will essentially be a physics game. and alot of fun physics related effects I have coding and problem solving skills, along with audio. ive been doing Dev now for roughly 3 years in C#. just getting started within the last month or so with XNA. if you are interested, mail me at N3Solutions@Gmail.com ...Show All

  • Visual Studio Express Editions Tried Everything, apart from what's needed.

    I want the picturebox (pbCrop) to show and be the same size as the selected image, I've tried everything I can think of but none of the solutions that I come up with work. The code is below, at the moment pbCrop is the same size as pbResize and is blank apart from the selected area. I did manage to get pbCrop to the same size as the selected area but the selected area was out of site. Dim b As New Bitmap(pbResize.Width, pbResize.Height) Dim g As Graphics = Graphics.FromImage(b) Dim z As New System.Drawing.Drawing2D.GraphicsPath If radEllipse.Checked = True Then z.AddEllipse(cropX, cropY, cropWidth, cropHeight) g.SetClip(z) Else z.AddRectangle( New Rectangle(cr ...Show All

  • Windows Search Technologies WDS closes

    I'm not a developer, but couldn't find another forum to post a question. here's what happens: I type in search words in the WDS deskbar search box. A list of choices appear I click on a file or on "more" WDS application opens Then immediately closes. I have completely uninstalled and re-installed 2 times, following all the instructions I could find on this forum. Here are a few of my "specs": Windows Deskbar Search--02.06.5000.5378 XP Pro 2002 SP2 IE V6 Hello Seprice, From the information given, there are a few potential issues. 1. Do you have any anti-virus or anti-spyware programs on your PC If you do, I would check these to make sure that t ...Show All

  • .NET Development Refresh Data obtained from a stored procedure data source

    I have a datagrid view that is bound to a binding source that is bound to a table that gets filled from a stored procedure in my database, how can I refresh the data in my table without clearing all the data in it first Friend tblRegCustomers As New DataTable Friend BSCustomers As New BindingSource() Public Sub Reload_RegCustomers() Dim SqlComm As String = "GetRegCustomers" GetData(sqlcomm,"SP",tblRegCustomers) 'GetData is a function that fills the table from a stored procedure End Sub In the form Load code, I have a datagrid view that is bound to the binding source Me .DGVCustomers.DataSource = BSCustomers BSCustomers.DataSource = tblRegCustomers All the above ...Show All

  • Software Development for Windows Vista DIrectShowNet: How to set videoWindow to be display on a panel?

    **Coding GetInterfaces() 'attach the filter graph to the capture graph hr = captureGraphBuilder.SetFiltergraph(graphBuilder) DsError.ThrowExceptionForHR(hr) 'use the system device enumerator and class enumerator to find 'avideo capture/preview device, such as a desktop USB video camera. sourceFilter = FindCaptureDevice() 'Add Capture filter to our graph hr = graphBuilder.AddFilter(sourceFilter, "Video Capture" ) DsError.ThrowExceptionForHR(hr) 'Render the preview pin on the video capture filter 'use this instead of graphbuilder.renderfile hr = captureGraphBuilder.RenderStream(PinCategory.Preview, MediaType.Video, sourceFilter, Nothing , Nothing ) DsError.ThrowExceptionFo ...Show All

  • Visual Studio Team System How i can use ImagXpress with ASP.net

    dear sir i want to use an ImagXpress with ASP.net(web form) you should know the ImagXpress belongs to Pegasus imaging co. www.pegasusimaging.com imagxpress supports only windows form thank you Ghassan Rashed Ghassan, This forum is for TFS related questions, and your question is more related to ASP.NET. Please try posting to one of the following forums for more information: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=46&SiteID=1 http://forums.asp.net/ Happy Holidays! ...Show All

©2008 Software Development Network