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

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

MA2005

Member List

enric vives
watch is
GeraldH
Michael Kramer
Novelle
mrmckeb
CJW99
Jonas.S
ReneeC
NewbieElliott
Lil endian
Ashish Saxena
deen
Ekta
Bob Reinke
BlueMikey
nevermore
dave234
Jef Patat
ecsinusa
Only Title

MA2005's Q&A profile

  • Visual Studio VS2005 Help missing

    Since installing SQLServer 2005 client to get the SSRS project template, I only get the SQLServer help contents when clicking on the help button. How can I get the VS2005 Help context back or even better, have both VS2005 and SQLServer 2005 available TIA jim Continuing this thread here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=322942&SiteID=1 Thx! Jeremy ...Show All

  • .NET Development Socket closing problems

    HOW TO CLOSE A SOCKET(SERVER OR CLIENT) WHEN I TRY TO CLOSE WITH SOCKET.CLOSE() THE ERROR DISPLAYED IS "A BLOCKING INTERUPTION...." OR "AN EXISTING CONNECTION IS FORCIBLY CLOSED" HOW EXACTLY WE CAN CLOSE OR DISCONNECT A SOCKET try socket.Shutdown( SocketShutdown .Both); socket.Disconnect( false ); ...Show All

  • .NET Development Problems with enabling/disabling Services in Microsoft Management Console!

    I'm getting the following error message: WBEM error features not available. Upgrade WMI to a newer build. How do I do this This is not related to managed networking APIs. Please refer to other forums/usegroups at http://www.microsoft.com/communities ...Show All

  • Visual Basic File to Array and general Array help/information.

    Hi, I have been trying to get a file of data written in the following format:- 0001 – (16bit numbers in decimal) 0002 0003 0004 And so on (upto 25000 results) Into an integer array:- myFileContents(0) = 0001 myFileContents(1) = 0002 (and so on) My code is as follows: - Dim myFileContents(10000) As String Dim i As Integer OpenFileDialog.Title = "Load File" OpenFileDialog.Filter = "Text Files (*.txt)|*.txt|All Files (*.*)|*.*" OpenFileDialog.FileName = "" OpenFileDialog.FilterIndex = 1 OpenFileDialog.InitialDirectory ...Show All

  • .NET Development problem with xmlHttp

    I am making an chat system.my OS is win2k, installed IIS 5.0. The problem is when i use Microsoft.Xmlhttp to refresh the page, i found this object truncate the request string's space always,then i downloaded some codes from MSDN for test. and found it works incorrectly too,here is some test code,hope some one can help me. --Test.htm <html><head>test</head> <body> <script language="JavaScript"> function PostIt(sUserId,sUserName){ var oHttp = new ActiveXObject("Microsoft.XMLHTTP"); var userInfo = "userid="+sUserId+"&username="+sUserName; oHttp.open("POST","Server.asp",false); oHttp.setRequestHeader ...Show All

  • Windows Forms How do I host Windows Forms Controls which are having dependencies in Internet Explorer?

    Hi, I am having one control which is having dependency on some another XML file. So how can I host that control in IE. One more thing is troubling me that, if there is some third party control which requires licence to use it, in that case how can I use that control Please reply to these queries.... Thanks in advance. Regards, Harish ...Show All

  • Visual Studio Tools for Office Outlook 2007 Add-in only installs for one user

    Hi After reading http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=357677&SiteID=1 I see that you can fix the outlook 2003 all user installation problem by moving the keys from HKCU to HKLM. That works fantastically for outlook 2003 but it it doesn't work for outlook 2007 which complains by saying that it cannot write information to any HKLM keys. Does that mean that its not possible for anyone but the user that installs the plugin for outlook 2007 to actually use the plugin And if it is possible... how do you do it It depends on the type of add-in. COM add-ins and Shared add-ins can be installed in HKLM or HKCU and Outlook will load them. For VSTO based add-ins, they must be installed to HKCU otherwise Outlook will ignore ...Show All

  • SQL Server Using Execution Plan generates strange errors

    After installing SP2 for SQL Serve 2005, I get strange errors when using either "Estimated Execution Plan" or "Actual Execution Plan". Using "Estimated Execution Plan" generates this error An error occurred while executing batch. Error message is: Error processing execution plan results. The error message is: There is an error in XML document (1, 3998). Unexpected end of file while parsing has occurred. Line 1, position 3998. Using "Actual Execution Plan" generates this error An error occurred while executing batch. Error message is: Error processing execution plan results. The error message is: There is an error in XML document (1, 4001). Unexpected end of file has occurred. The following ele ...Show All

  • Visual Studio 2008 (Pre-release) Newbie: WCF without Admin rights

    Hi, Sorry if this is such an obvious thing (I've had a search on the internet but honestly can't find the answer). I want to build a simple WCF webservice for desktop applications to use. However, when I run my client app on Vista with non-admin users I get a message saying that my App is not responding. However, the same application runs great on XP. I then logged in as admin and modified some settings (adding a url acl) and the client application works okay. So my question is, can I write a WCF webservice which does not require you to be admin (and doesn't require an admin to previously set permissions) for my app to work If so, can anyone give me a code sample Thanks! As far as I know (but ...Show All

  • Visual C++ DELAYLOAD in C++/CLI

    I have C++/CLI library which is linked to unmanaged library FGCamera.lib. I want to use FGCamera.lib as delay-loaded Dll. In the Linker Properties, Input, I have FGCamera.lib in the Additional Dependencies. Now I add FGCamera.dll to Delay Loaded Dlls. Result of linking: LINK : warning LNK4199: /DELAYLOAD:FGCamera.dll ignored; no imports found from FGCamera.dll C++/CLI Dll is called from C# exe client. Delay loading is not working. How can I fix this I made the same test with unmanaged MFC project linked to this library, and got this message: LINK : fatal error LNK1194: cannot delay-load 'FGCamera.dll' due to import of data symbol '__imp__FGResolutionStr'; link without /DELAYLOAD:FGCamera.dll Cannot und ...Show All

  • .NET Development What can I append to the end of an expression...?

    I am currently working on a problem and need a way to work around an issue in the Regex object in .net. The basic issue is that if the parsing expression contains this: … " price="( <price>.* )"net="( <net>.* )" … But the text being parsed looks like this: … " price="44.54" net="0.26" volume="592100" … (These are just snippets, the expression and the text are both a lot bigger) The Regex.Matches(strStringToParse) continues to try to find the "net=" pattern so it knows when to stop for the data in the price group… it continues to look on beyond the end of the string… the end of the file… and on into the system. ...Show All

  • Visual Basic get text by line ?

    hey , im trying to upgrade my programs so that i can have one file save files i know how to get them all in one (one line per value) but i dont know how to get all the text of a specific line, like : get text textbox1 line 5 if anyone could help me pleaz (i have visual basics - visual studio 2005) MsgBox(TextBox1.Text.Split(vbCrLf)(4)) Use split function to convert a string to an array , the split of string is done according to a delimiter which is the Carriage Line Feed CrLF. Starting index of the split function is 0 , so we use index #4 to get line 5. Hope this can help! Best Regards, Amr Ouf ...Show All

  • Windows Forms Unable to cast object of type 'X' to type 'X'

    The actual projects structure is: + MyServerFramework |---QueryComponent.cs ... + MyServerFramework.Design |---QueryComponentDesigner.cs ... The MyServerFramework.Design project has a reference to MyServerFramework, and is compiled alone in its own solution which also contains MyServerFramework, and then placed in a folder that is referenced the SOFTWARE\Microsoft\.NETFramework\AssemblyFolders key so the IDE can find it. The MyServerFramework project is then used in other solutions which don't contain the MyServerFramework.Design assembly. And here is where I'm seeing this error. This happens in the following line, which is in the verb handler in QueryComponentDesigner: QueryBuildStorProcDialog dlg = n ...Show All

  • Visual C++ trouble getting started

    I have no programming experience and I have just installed microsoft visual studio 2005. I have a book on C++, it a few years old but i thought it would give me a start on learning c++. I want to compile one of the examples out of the book. How do I do that The book is teach yourself C++ by Al Stevens. Can anyone please help me out   nick865 wrote:   I want to compile one of the examples out of the book. How do I do that The book is teach yourself C++ by Al Stevens.  Can anyone please help me out You did not say which example. Shall use the default  example i.e. Hello World. Start a new project and select "CLR Console Application" as application type. This will generate the default "hello w ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can someone point me to a thread that will tell me how to add collision detection to my game?

    I know tons of threads exist, but I looked through a few of them, and they didn't really help me to learn how to start a collision detection code. Thanks This is a great tutorial on collision detection in XNA: http://sharky.bluecog.co.nz/ page_id=113 ...Show All

©2008 Software Development Network