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

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

Gary8877

Member List

Matt Sipes
LMcFarlin
asdfj
uanmi
majid12345
Fabián Imaz
Wolfgang51
Charlese
asifbawany
Chris Longo
Scott Coffey
VladTheImpaler
Saravana_Acc
Jeff Williams
msauper
QUANTMCVA
Lamb
Jeff Steinkraus
JimmyB
miztaken
Only Title

Gary8877's Q&A profile

  • Visual Basic getting HTML from a website

    Hi guys, I'm making a project that requires getting the HTML source from a website. I'm not at all sure about how to go about doing this. Any help would be greatly appreciated! Thank you so much in advance! -Robert Robert.... There are women here too. The other two identical questions you asked are in VBE and you marked your question as answered here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=414318&SiteID=1 ...Show All

  • SQL Server Random variable modeling using T-SQL

    Good day. i'm a new person here and not that familiar with T-SQL... the question is: is there any buil-in functions or special libraries in T-SQL that can help to generate correlated random variables with non-normal distribution function It would be also good if someone could advice if there is any application (statistical programm or non-microsoft developed library) that can deal with MS SQL and has modeling and forecasting capabilitie ...Show All

  • Visual C++ msvcr80.dll Problem

    Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin I am having the same problem... I even uninstalled i ...Show All

  • SQL Server Replication Isues After upgrading subscriber to 2005

    Hi There A while ago i migrated a 2000 database to a new instance of sql server 2005 and succesffully setup replication from a 2000 publisher. However to experiment i took an existing 2000 instance with a subscriber databases and upgraded the default instance to 2005. (Upgraded from 2000 Enterprise to 2005 Enterprise) After the upgrade the setup logs were all successful, i also run upgrade advisor before and made sure there were no issu ...Show All

  • Visual Studio Team System VSTS and MSDN Academic Alliance

    After doing some poking, proding and rethinking, we have refined our story with respect to VSTS and MSDN AA.  Recently I posted that VSTS is included in MSDN AA but only by request. We have decided to put the 180 day trial edition of VSTS on the MSDN AA web site and make it available to all MSDN AA members.  There will still be some TBD process to get registration keys to turn the trial edition into a "full" licensed product but w ...Show All

  • Visual FoxPro coming back to foxpro

    used foxpro 2.5 and now have visual fp.  am having trouble lwith iff and if then syntax.  i want to have user enter a zip code and then the city and state are filled in.  thanks for any help You can only use IIF() to handle a single value, so you really need a standard IIF...ELSE IF zipcode = '11566'   REPLACE city WITH 'Merrick', state WITH 'NY' ELSE   *** Whatever *** ENDIF You c ...Show All

  • SQL Server Slow execution of queries inside transaction

    I have some VB.NET code that starts a transaction and after that executes one by one a lot of queries. Somehow, when I take out the transaction part, my queries are getting executed in around 10 min. With the transaction in place it takes me more than 30 min on one query and then I get timeout. I have checked sp_lock myprocessid and I've noticed there are a lot of exclusive locks on different objects. Using sp_who I could not see any deadloc ...Show All

  • Visual Studio Team System web deployment projects in drop location?

    When building a regular 2005 web with Team Build, I get what looks like the contents of the Binaries folder in the drop location i.e. '<BinariesRoot>\Debug\Mixed Platforms\_PublishedWebsites\<WebName>... When using web deployment projects I dont get either. As part of a larger build process the drop location is the area I target for msi generation for example, what do you think is the best way to get the output of all web deplo ...Show All

  • Visual Basic System Error????

    What is a System Error and how do i get rid of them, or how to debug them...I dont know what the problem is with my code maybe you guys can help but it crashed out on my Datareader.ExcuteReader method but i dont know why.....check it out Dim cn As SqlConnection Dim drsql As SqlDataReader Dim cmd As SqlCommand Dim str As String Dim str1 As String Dim cn1 As SqlConnection Dim dr1 As SqlDataR ...Show All

  • .NET Development Problem with .NET 2.0: The request was aborted: The request was canceled.

    Hello, one week ago I have upgraded our application from .NET 1.1 to .NET 2.0. Application is constantly making HTTP POST request to different servers. With new version around 1% of requests fail with error “The request was aborted: The request was canceled.” With 1.1 version we never receive such message, we only, in very rare situation, getting error “The underlying connection was closed: An unexpected error occurred on a receive.” or “The ...Show All

  • Architecture Typed DataSet versus DLinq

    The improvements typed dataset is really cool when compared to untyped datasets. How will ADO.net team enhance the typed features of typed dataset in c# 3.0 is DlinQ the mainstream or an alternative PS: many people I know doesn't want custom business entities. even though its off subject ... "it is a myth,that OO domain models have a better maintaniability over procedural/relational codes" You are correct it being ...Show All

  • .NET Development unable to connect to SQL server

    hi everybody! I am just a beginner in asp.net. i am trying to connect to the sql server and getting an error: Login failed for user 'sa'. Reason: Not associated with a trusted SQL Server connection. the code line for connection is : cn.ConnectionString = "Data Source=DENVER; Initial catalog=pubs; user id=sa ; Pwd=" right click on the server name - properties gives a message saying  only sysadmin can access this feature.  do i need to ...Show All

  • Visual C# When does P/Invoke free a DLL from memory again ?

    From MSDN "a closer look at platform invoke" it listed the steps when an unmanaged functions is called 1. Locate DLL containing function. 2. Load this DLL into memory 3. Locate the function in memory and push its agruments onto the stack. 4. Transfer control to unmanaged function.   The first function I intend to call from the unmanaged DLL initialises alot of global variables which subsequent calls can use. Can I hol ...Show All

  • SQL Server where can I store the mining results from mining models in SQL Server 2005 data mining engine?

    Hi, all here, I am wondering where can I store my mining results in data mining engine For example, I got mining results like accuracy chart, decision trees, and other formats of results based on different mining algorithms I used for my data mining, so where can I actually store the results for reporting service use later Is it possible to do that in SQL Server 2005 Thanks a lot for any help and guidance in advance. It's not a ...Show All

  • .NET Development WebServices and Authentication

    Hi there, I’m developing a webservice for upload and download files, but due to security reasons I’ll have to authenticate the user to access directories/folders based on IIS FTP accounts. How can I perfome that For now, I’m thinking about using SOAP Headers to transmit the user/password and create/set the user credential in the WebService. Is there another way to do that Where could I get some examples Thanks in advanced, Otavio ...Show All

©2008 Software Development Network

powered by phorum