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

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

MikeBzz

Member List

GMohr
Lila
steveinoly
Arjunyerla
michaelp
Professor X
Liberato78
jackie2526
zzc
GeorgesZ
SanderV
Atis
kkiran
yudee
sadietz
Umachandar Jayachandran - MS
Cos
Erpman
Andrew McCall
kp6452
Only Title

MikeBzz's Q&A profile

  • Visual Studio Should the LAN Booster Service work in Beta 2?

    I tried configuring VSS 2005 to enable the LAN 'booster' service but it didn't seem to have much effect.  Putting network monitor on the line it looks as though Visual Studio 2005 is still using SMB to communicate with the VSS Server. Is there some configuration I need to do on the client end to get this working   The Visual SourceSafe help file doesn't say too much more than that the booster service is optional.  I took that to mean I didn't need to configure it at the Visual Studio plug-in end but perhaps I'm wrong   Alin Constantin - MSFT wrote: the 06ba error is RPC_S_SERVER_UNA ...Show All

  • Visual C++ implementaion of unwinding

    I have troubles finding information on this subject, so I'll try to ask here: What kind of unwinding mechanism implementation is used by VC8.0 Is it the same old and slow 'update structure on the stack while we go' (like it was up to VC7.1) Or MS finally decides to go after GCC & others by separating successfull execution path on compile stage (which is significantly more efficient) Bye. Sincerely yours, Michael. (1)(a) " __try/__catch instead of range checks " -- just as before: I hope you know what you are doing. Invalid data usage results not only in AV or DIV -- it could also results in memory ...Show All

  • Visual Studio Team System Hidden Form Fields

    I'm recording web tests in prep for eventual load testing. The recording then assigns an extraction rule for hidden values including one for a form field called UIApp. Now our developers tell me (a QA) that our app frequently (but not on every page) uses the UIApp hidden form field to pass page status along on the client side. The web test recording does not seem to grab this value, because when rerunning the scripts, it reports that the value was not found in the test context on pages that rely on UIApp. Supplying a static value for UIApp will do no good because it is a dynamic value that changes in reaction to data entry and for each ...Show All

  • .NET Development .net 2.0 Web Service Bug? args is null

    I wrote a sample web service like this: [WebMethod] public string Hello(string who) { return "Hello " + who; } I test it in web test page and a sample .net 2.0 winform application,it's run as my will. But when I wrote a delphi7 program,I found "who" arg is null,if you use arg as int ,it's 0. I also test it in java. I think it 's a bug in .net 2.0 why It sounds like the toolkits that you are using are not sending the right XML. You can use a tool like tcpTrace (available from www.pocketsoap.com ) to trave the XML traffic to try to see what is going on. Here is the actual XML that should ...Show All

  • Visual C# Mid statement in C#

    Is there an equivalent of Mid statement from vb in C# for example i wanna do: string myval = abcde; mid(myval,2,1) = "x"; // myval = "axcde"   As VB.NET and C# are OO, they don't have these sort of non class methods.  Instead, in this case, it's the SubString method of the string class, or to do a replace, use the Replace method.  Beware - this is an expensive method, a new string is created each time a string is modified.   ...Show All

  • Visual C# Dynamic Fields

    Hi, i'm trying to write an application that converts binary files to XML. The binary files contain a number of predefined fields. Now I want to be able to change the fields of the binary file without having to restart the application. This means that the application has to find a list of all fields in the binary file and their type somewhere. Now the question: how do I do this the most clean way Do I make a config file with all fields, do I make a database,... What do you think Hi! Do you mean that you make application that read fixed format binary file and export results in XML Can you ...Show All

  • Visual Basic save webpage in vb 6.0

    hi everybody Please help i am getting a problem in saving web page in visual basic 6.0.(window application) i have url of the webpage and i want to save this page in my local folder. i think it can be done, but right now i don't have any idea. so if anybody have any idea please tell me. thjanks in advance These fora are for Dot.Net software. If you have a VB6 question, please make use of the Visual Basic 6.0 Resource Center to find a solution to your problem. ...Show All

  • SQL Server Analysis Manager: Cannot connect to repository. Analysis Server: <server name>.

    While trying to connect to a remote Analysis Server using Analysis Manager, I get the following error in a pop up window: ================================================= Analysis Manager: Cannot connect to repository. Analysis Server: <server name>. Error: Provider cannot be found. It may not be properly installed. ================================================= Can somebody help Thanks, John T Pete, A coworker of mine helped me figure this. I knew there was somethign wrong with the Jet engine on my machine but repeated attempts to fix the Jet did not seem to help. Finally we used Microsoft Acce ...Show All

  • Visual Studio IIS vs Apache

    Hiya, Just a quick question which probably has a very obvious answer (which I expect is going to be 'No') - is it possible to run the Visual Studio IDE and develop asp.net using Apache instead of IIS as the web server Cheers, We do not currently provide support for using Apache instead of IIS as the web server for development, but I am pretty sure that if you search the web for keywords: asp.net and apache you will find a solution to what you are looking for. Best Regards, Steve ...Show All

  • Windows Forms Localized resources for Controls

    I am trying to create a control derived from MonthCalendar so that I can implement culture-aware resource loading.   The MonthCalendar control in VB.NET does not seem to be culture-aware, so I was wondering if it is possible to derive a class from it to implement culture-awareness.  Has anyone tried doing this   I tried overiding the Wndproc method and ...Show All

  • Windows Forms Adding Controls to a User control

    Hello, I'm trying to add custom controls to a user control, and render them to it. I have a viewer user control in which several of these controls are built: //Create a verse item and assign the values to the property VerseItem verseControl = new VerseItem(); verseControl.Visible = true; verseControl.Enabled = true; verseControl.Anchor = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right; verseControl.Number = verse.Number; verseControl.Text = verse.Text; //Add the control to the collection this.Controls.Add(verseControl); Then after the for loop, I invalidate the user con ...Show All

  • Visual Studio Team System Webtests in Internet Explorer 7

    I tried recording a webtest with IE7 installed. Unfortunately it doesn't seem to work as no button clicks are recorded, only page requests. Uninstalling IE7 made webtests function but I really like IE7 :) Is there anything I can do to get both The current IE7 beta releases have a bug in them that prevents form POSTs from being recorded by the web test recorder. I have been working with the IE team to make sure this gets fixed before the final IE7 release. Josh ...Show All

  • Visual Studio Express Editions Web Panels

    I'm working through the walkthroughs in the Visual Web Developer and am stuck on the Web Panel Walkthrough. I have followed the directions exactly, and when I view the page in a browser, I do not see the menu that shows the available verbs. I have double checked that I didn't miss a step. Are there any things I should verify Thanks, Frank Hi Frank, I looked at the code you sent.  It is missing the DisplayMode.ascx file that the walkthrough mentions you need to create and then add to the webpartsdemo page. This is described in the following section in the walkthrough: Enabling Users to Edit Pages and Cha ...Show All

  • .NET Development ODBC can't connect to SQL Express

    Hello there, I'm trying to use the SQL Express via ODBC but the system keeps failing... and the SQL server is local. In SQL Server ODBC Source Test: [Microsoft] [SQL Native Client] TCP Provider: No connection cloub be made because the target machine actively refuse it. Thanks Ricardo Ricardo, With SQL Server (9.0) Express edition, TCP is disabled by default. You will need to enable it, to use it using SQL Server Surface Area Configuration (which can be found at Start - All Programs - Microsoft SQL Server - Configuration Tools - SQL Server Surface Area Configuration) Thanks, Sushil. ...Show All

  • Visual Studio How do I remove the "main report" button in Viewer

    I am creating a report using the Crystal Reports that comes with VS 2005. I have a report that I shwo in the viewer. Under the viewers toolbar there is what looks like a button with the text "main report". How can I remove this button I can't find any properties. Thanks Simmy   Hi.. I am using VS 2005 with VB. Is there a way to get the name of all the open views or tabs that the user has opened by means of drill down. Thanks ...Show All

©2008 Software Development Network