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

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

EmilG

Member List

manderso
Joao Cunha Lopes
Troy Jerkins
marcus42
Alex James NZ
DishanF
Kevin Schaefer
Nahas
Bravo2007
pgloor
tyrus
Roger One
Ars_Maxer
Fire Fox gug
Xena Systems Limited
MarkErickson
Coatesy
Cagdas Top
iknownoone
bri5
Only Title

EmilG's Q&A profile

  • Visual Studio SourceSafe Internet Plugin and IIS on W2K Server

    I have setup a VSS database on a file server and installed VSS 2005 on our web server. I followed the directions in the MSDN "How to: Set Up Database Access via Visual SourceSafe (Internet) Plug-In" (http://msdn2.microsoft.com/en-us/library/ms230206.aspx) When I reached "To enable Internet Access for an Existing database on a different computer than the web service" step #7 things got weird. First the VSS Web Service is running on a Domain Controller so it did not appear in the "Computers" list (sub-step 2) rather it appeared inthe "Domain Controllers" list. So I opened it's properties (sub-step 3). Th ...Show All

  • Software Development for Windows Vista Uninstall Microsoft SDK

    Hi everyone ! I hope this is a good forum for my question. I didn't find any better. I would like to unsintall "Microsoft SDK Update February 2003 (5.2.3790.0)" I don't need it at the moment and would like to recuperate disk space. The uninstall string is like this: "C:\Program Files\Microsoft SDK\\Setup.exe" "C:\Program Files\Microsoft SDK\Default_Local.htm" The target file (Default_Local.htm) is missing. Thanks for your help in advance Jean Hi Keith ! Thank you for your reply. In fact I did exactly as you suggested. Since i had no succ ...Show All

  • Visual C# IPAddress and IComparabe<T>

    Can anybody explain the reason why IPAddress does not implement IComparable interface I wanna use IPAddress in my binary search tree and using the GetBytes() method of the IPAddress for comparing seems to me very inefficient. Any alternatives Maksim, I can't tell for sure, but since there isn't a "natural" ordering of IP addresses, any implementation of IComparable would have been arbitrary. For instance, you might use network order, or host order with much different results. Instead of GetBytes you might want to use GetHashCode, which not surprisingly returns an int representing the IP Address (you will get it reversed, s ...Show All

  • .NET Development SOA code example

    Does anyone know of a good link with downloadable example code that discusses SOA and web services.  I've read several articles about wrapping messages within XML, but no code downloads. Thanks, Jake Hi Jake, The following example is quite a good resource to get started on SOA: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvsent/html/FoodMovers0.asp frame=true Regards, Vikram ...Show All

  • Windows Forms docking ...

    why can we not have two controls on a form and both have Fill set for Dock property, so that when one control is collapsed the other one takes the remaining area and vice versa  In the <A HREF="http://www.windowsforms.net/Applications/application.aspx PageID=20&tabindex=8">TaskVision</a> sample application is an xPander control you can leverage to do& ...Show All

  • Visual Studio Express Editions Black Screens

    I have installed microsoft visual basic 2005 epxress edition on my works pc, but now al the top bar of tool, eg are black. see screenshot screenshot How can I let it show what is in the toolbaar bagain. Thanks Hello, One way to try to fix this is to reset your IDE settings. To do this, open VB Express, select Tools...Options...Import and Export Settings... In the dialog box select Reset All Settings... and click Next. You can then choose to backup your current settings if you would like, or just select "No, just reset settings, overwriting my current settings" and click Next ...Show All

  • Windows Forms ContextMenu problem...

    How can I obtain the Parent of a ContextMenu I succesfully patched the problem in an "unelegant" manner (Added a Parent Property to my class and I've assigned it after the InitializeComponent...) that works... but sucks!!! Thank you! What do you mean by Parent   A ContextMenu control does not belong to any particular control. ...Show All

  • .NET Development Begginer:Need to get the object of a webservice.

    I am relatively new to .Net Web Services. I have a web service on my local server named TEST_WEB_SERVICE.wsdl. I have added the webreference of the service into my .Net Application. Now, I want to create the object to access the methods of the webservice. Pls help me out!! I am using .Net 2005 beta 2. There must be a namespace named "localhost" (or the name of the machine where the WSDL was get from) in your project with a class defined in that namespace that is the proxy for your service. Good luck, ...Show All

  • SQL Server T-SQL Formatter in SQL 2000

    Hi, Does anybody know of A T-SQL formatter If so, are there any good formatters :-) TIA Regards, Sander ...Show All

  • Visual Studio Express Editions Problem in installing VWD Express 2005

    Hai, I have downloaded image file for  VWD Express 2005. I have followed the procedure for manual installation and used ISOBuster 1.8. Windows Installer and .NET 2.0 are installed properly. But while installing  Visual Web Developer it is displaying a message as follows: --- Error 1335 : The cabinet file VNSSetu1.cab required for this installation is corrupt and cannot be used.  ... ---- I tried to find that file but that is not part of  image file at all. What could be the error    I am using  Windows XP SP2. Can any one help Is any one haiving the same problem Thank you, P.Srikant. ...Show All

  • SQL Server Access Permissions on server scoped objects for login

    We are having problems with the response times from UPS WorldShip after switching from SQL Server 2000 to 2005. I think that the problem can be fixed from the database end by setting the permissions correctly for the user/role/schema that is being used by WorldShip to connect to the server but, I'm not sure how to do it. The Setup Client UPS WorldShip 8.0 running on XP Pro SP2 Connecting via Sql Native Client via SQL Server Login Connection is over a T1 via VPN Server - SQL Server Standard Edition on Windows Server 2003 2x3ghz Xeon processors w/ 4gb ram The user that is being used to connect runs under it's own schema and role ...Show All

  • SQL Server Puzzled by concurrent update

    I have a puzzle in my mind here. I will thank anyone who can solve my puzzle. I am not familiar with SQL and its theories behind, so please bear with me if I am asking a stupid newbie question. My puzzle is generally a problem of generating sequence numbers. The following SQL is only a stripped down version - it fetches the max number, add 1 to it and updates the table with the new number. DECLARE @max int SELECT @max = MAX(next_number) + 1 from sequence_numbers UPDATE sequence_numbers SET next_number = @max WHERE next_number = @max Now if user1 gets 100 and user2 also gets 100 and they both try to update the tabl ...Show All

  • Visual Studio 2008 (Pre-release) Embedded UI Elements in RichTextBox Controls - Why Disabled?

    I am trying to embed user interface elements inside a RichTextBox control. In particular, I would like to embed a RichTextBox inside a RichTextBox. I can't seem to get the embedded control to be enabled for editing (or clicking in the case of a button). Setting IsEnabled = "True" in the XAML doesn't do the trick either. What should I be doing Is this even supported e.g the embedded button with the "Click Me!" caption in the XAML sample below is not click-able: <Window x:Class="WindowsApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://sch ...Show All

  • Visual Studio 2008 (Pre-release) WBAs and web services

    I have read that WBA applications will not support integration with web services via WCF (Indigo), at least not for release 1. I've seen mention of using ASP.NET-based web services (ASMX) instead, but no references to examples of how to do this. Is anyone aware of a simple example that demonstrates how a WBA can talk to an ASMX-based SOAP web service I dont' have any samples however there is no difference between using ASMX in a WBA and using it in a Windows Forms application - open your project then add web reference etc. ...Show All

  • Visual Studio Team System web test fails every time

    Hi, i have created web test for my application. After recording the web test when I am running the web test for many objects it is showing as 404 not found ( for save button – showing as save.gif not found) and showing message as page cannot be displayed. For .js files alos it is showing as page cannot be displayed. Why these error messages are occurring Is it that VSTS tool unable to recognize the objects clearly (save button in this case) How to make the web test to pass all steps Before or after recording should I do any settings or changes This means that the tool re ...Show All

©2008 Software Development Network