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

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

adorer

Member List

Yogesh Ranade
Walter30140
robben07160
Michael Luke
Javier_Uy
Tamim Sadikali
Gagan Rajpal
sdj_dk
Wendell Wang
Wicket
DagoFlores
Fatlabmonkey
Marek Istvanek
mako_123
Juliano.net
Juan Carlos Trimiño
gqlu
hehongyu2000
Derek Ju
KitGreen
Only Title

adorer's Q&A profile

  • Windows Forms How to code "Find" feature in .NET Browser control?

    Hi Guys! Any way to code the "Find" feature using the .NET Browser control Matt If you just want to bring up the Find Dialog box; this . axWebBrowser1 . ExecWB(SHDocVw . OLECMDID . OLECMDID_FIND,SHDocVw . OLECMDEXECOPT . OLECMDEXECOPT_PROMPTUSER); ...Show All

  • Smart Device Development random TypeLoadException

    I am having real issues with a TypeLoadException that occurs generally randomly. I've been working on a .NETCF 2.0 app all day, debugging and generally being productive. All of a sudden, with no changes to the assemblies, I get a TypeLoadException on one of the types in one of my referenced assemblies. It's one of my own assemblies, and I checked the manifest and didn't notice anything untoward. // Metadata version: v2.0.50727 .assembly extern mscorlib { .publickeytoken = (96 9D B8 05 3D 33 22 AC ) // ....=3". .ver 2:0:0:0 } .assembly extern retargetable System.Data { .publickeytoken = (96 9D B8 05 3D 33 22 AC ) // ....=3". .ver 2:0:0:0 } .assembly extern retargetable System.Xml { .publickeytoken = (96 9D B8 05 3D 33 22 AC ) ...Show All

  • SQL Server Upgrade scripts for SQL Server Mobile Databases

    I am looking for a tool that can generate upgrade scripts for all deployed versions of my db application. Does anyone know of such a tool Not sure if there is one that deals with .sdf files. This might work with .sdf file... http://www.red-gate.com/products/SQL_Compare/index.htm gclid=CJSQruT-z4cCFRRtQwodsA4-QA ( you can get a free trial) ...Show All

  • Visual Studio 2008 (Pre-release) property initializers and immutable classes

    The way property initalizers are now implemented, it is not possible to create classes that are immuatble that also support property initialization. Id like to propose the use of the readonly keyword on properties, which makes the setter accessible only at initialization time, and that readonly fields should also be accessible during initialization time. If the class implements ISupportInitialize (or something like it), then BeginInit/EndInit methods would be wrapped around the initialization. Consider this: class Foo : ISupportInitialize { private int _bar; public readonly int Bar { get { return this._bar; } set { this._bar = value; } } } Foo foo = new Foo { Bar = 12; } would get tra ...Show All

  • Windows Forms ClickOnce 401 error problem over VPN

    Hi all, We're deploying a ClickOnce app on an Intranet, and it's working fine for users within the office network. However, when users try to access the application while logged in from a VPN, when the ClickOnce application is launched an error message is displayed, and the error log shows a 401 error. The server is using Integrated Windows Authentication for security. I understand that there are limitations with this approach, and the recommended workaround is to click "save password" when the user is first prompted (as documented here and here ). However, the "save password" checkbox does not appear on the dialog box. What can we do to give users this option Is there a setting somewhere that we're missing Thanks, Darren. ...Show All

  • Gadgets Flyout autoclose

    It is possible to avoid the flyout autoclose when the user clicks outside the gadget ...Show All

  • Visual Studio 2008 (Pre-release) March CTP New Features

    Hi, Where I can see all new features of March CTP Regards, Alexnaldo Santos Hi Alexandro, you can see the list on download pages http://www.microsoft.com/downloads/details.aspx FamilyID=B533619A-0008-4DD6-9ED1-47D482683C78&displaylang=en Hope this helps ...Show All

  • Visual Studio Tools for Office Disable VBA script "on click"

    System: Microsoft Office 2003 Word VSTO Solution using Document Template. I have developed several custom WinForm controls that canbe added to a word document from a "controls toolbar". When the template is opened to be edited and the form is placed in design mode, if the user double clicks on one of these controls in the Word document, Word opens the VBA editor. Is there a way I can prevent that from happening I would have thought this would be easy to resolve, but the solution seems to be avoiding me at the moment. That's a challenge :-) As far as I know, short of removing VBA from the installation, there's no way to prevent this, directly. However, it appears sinking the WindowsBeforeDoubleClick event should work. I tes ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. lens flares

    i have read something about lens flares. the position of the lens flare are calculated by the vector which goes from the sun until (0, 0, 0). but in many games i see the following effect: when i look into the sun and turn left or right the lens flares are turend left or right to. do they calculate the angle between the camera direction vector and the lens flare vector and turn the lens flare vector by this angle i implemented lens flares with billboards because i didn't wanted to use sprites in order to work with world space. the question is, how do i calculate the vector from the sun to the center of the screen ...Show All

  • Visual Studio Visual Web Developer Express Edition can intgrate simple telephony system??

    Hi all, Recently i use Visual web express edition to build simple internet application. I need some advise if this express edition can support the coding for simple telephony system like recording voice message If yes, any best recommend resource for similar configuration or integration Cheer:) Regards Hi, The Express editions can not be extended with add-ins or SDK packages, which is the purpose of this forum, but since your question is not related to that but to coding a telephony application, the first thing that you will need is to download an Express Edition for VB.NET or C# development, not for Web development. Then you need some telephony API. Before the .NET era I used TAPI for that purpose and you can find ...Show All

  • Visual Studio cehck in file on vss usgin my own web application

    hye friends i have got a problem i hope u guys will help me in sorting this out the problem is that i m creating a document on the web application say ....as we write e mail on text area..and then i convert that into .doc file now i want to check in file onto the vss usgin my own web applicaton so plz tell me the way how i can do this .... SourceSafe has a COM interface that you can use to programmatically checkin files. The documentation is here: http://msdn2.microsoft.com/en-us/library/microsoft.visualstudio.sourcesafe.interop.aspx ...Show All

  • Visual Basic err.description??

    Hi everyone, I wonder, error old VB6 object aside, what stuff is intended to do the same in .NEt It's a little bit naive to write err.description and so on... Thanks in advance and best regards, Try 'Write you code here Catch ex As Exception MessageBox.Show(ex.Message) End Try ...Show All

  • SQL Server Sequence Clustering error

    I get this message when I deploy my sequence clustering model: Error 1 Error (Data mining): Duplicate Key Sequence values in an input case for SeqCluster. Ambiguous case(s) may lead to unreliable results. Disambiguate the data (recommended) or increase ErrorLog KeyErrorLimit server parameter. 0 0 I don't have any duplicate keys in my case table. I'm using a date for my key sequence column in my nested table. Is that the problem It's likely - the KEY SEQUENCE should be basically 1,2,3,4,... It's just there to order the steps within one case. If, for instance you had KEY SEQUENCE 1,2,2,3,4, the algorithm wouldn't know which "2" to pick. If you follow the advice given by the error message, the algorithm will arbitraril ...Show All

  • .NET Development Quiet Dialog Box

    Is it possible to use MessageBox.Show without any sound effects, but only for this application Set the 4th argument to MessageBox.Show() to MessageBoxIcon.None or MessageBoxIcon.Question to keep it quiet. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Changing sprite origin from top-left to center

    In the XNA help I see the following: The origin is a specific point on the sprite—by default the top left of the sprite (0,0). How do I change the origin to the center of the sprite Is this something that is done in the DirectX Texture Tool Thanks in advance! When you draw your sprite, the following overloaded method can set the origin of your sprite. There are other overloads available to suit your needs. Check the overload list for the Draw method in the Help. The 'origin' parameter is a Vector2. spriteBatch.Draw(myTexture, position, null , Color .White, rotation, origin, scale, SpriteEffects .FlipHorizontally, layer); ...Show All

©2008 Software Development Network