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

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

SecurityAdmin

Member List

Joe Brinkman
dEcib3L
nards_ocampo
MCFH
cdrkeen
Dinesh Kumar M.G
Leslie Brown
Dan anos
Shivakumara V
Gilles Muys
Instalectual
Flounder
MariaW
Jason Hillier
BillFugina
Boai
Madhukar Bhalerao
ames
Avia
Jayender
Only Title

SecurityAdmin's Q&A profile

  • Visual Studio Support for generics in code model

    I have a problem with getting information about generics from code model, e.g. how can I obtain information about generic parameters from CodeClass2 Any ideas How are generics supported by code model (I have found only isGeneric method in CodeClass2/CodeInterface2/...) I think that ther should (an probably there is) better support. I have been looking for it in EnvDTE80 namespace, but I have not found any interesting classes/methods... Thanks for help, Jarek That's coincidence. I've had the same problem few days ago and asked the same question in http://groups.yahoo.com/group/vsnetaddin/. It seems that co ...Show All

  • Visual Basic How do you open an embedded resource?

    I am trying to make a program that will will make it easier for me to access some of my smaller frequently used program. I am new to Visual Basic and just discovered how to embed a .exe file into the project. I just dont know how to open it now. Basically there is a button and when it is clicked it needs to open up a .exe file, lets just call it 1.exe. I have looked around everywhere on how to do this and all I found was some resourcemanager commands but I have not been able to get them to work can someone please help me and post some sample code because like I said I just started using visual basic. Thanks ...Show All

  • Visual C# HOW TO CONVERT STRING to INT without using any inbuilt functions..??

    Hi all, How to Convert my String str=10 into int s=10; without using any inbuilt libraries like parse or convert to int etc . I had this question in interview...but i tried something in binary level but not accepted.pls clarify how internally data conversion takes place... thanks. Maheshkumar.R www.snipurl.com/guac well, i never had an interview like this, but I guess they want to see you doing it manually ;) somehow like this: string sx = "10"; int ix = 0; for (int i=0; i<sx.Length; i++) {   ix *= 10;   ix += sx[ i ]-48; } ...Show All

  • Software Development for Windows Vista Dyanamic State Work flow

    Hello: Order processing state machine workflow sample given on www.windowsworkflow.net has fixed states that a PO can go through. My question is, if based on kind of PO/Products/Customer involved, we need to dynamically decide the states for a PO, can it be done If so, what should be the steps Thanks Jatin Jatin - I can think of two ways off the top of my head - but there may be other (and potentially better) ways. One would be to create a StateMachineWorkflow template, and for each PO/Products/Customer use WorkflowChanges and dynamic change to dynamically add States to your workflow. Anothe ...Show All

  • Windows Forms event handler question

    hi guys, i have a form that has two buttons, Button1 and Button2, both of them has a onClick event, my question is how can i fire the event in Button2 if i press Button1. thanks a lot!. lets say you have an accept button, and a cancel form. In the Accept form, you do some validation and want to bail out. An easy way, lets&n ...Show All

  • Visual Studio Team System More than just VSS 2005?

    I know the source control in TFS uses a SQL Server 2005 backend, but how else is it better than VSS 2005 Has the branching and merging operations changed Are there more features Basically, has it been completely re-written or has it just been upgraded to work with a SQL backend The only VSS code in Team Foundation is the client diff/merge tool (and even there, you can configure your own tool.) Everything else is brand new. There's tons more on MSDN; start here . ...Show All

  • Visual Studio Team System Team System unit testing and config files

    If you set up one project as a class library production code and another project for you tests in the new team system how can you read a configuration file as below: string connectionString = ConfigurationSettings.AppSettings["ConnectionString"]; I know you can add a connection string in the [TestMethod DataSource ...] but this does not seem to be in the mode of TDD -- so how would you do it. thanks grs If you specify an app.config, and set it copy it to the Output Directory. We will pick this up and use it as the configuration for the app domain in which the tests run. You can also name this <testDll>.dll.config. ...Show All

  • Visual Studio Splash screen icon size problem

    I have a managed package that implements IVSInstalledProduct and sets UseManagedResourcesOnly = true in the registration with an icon having both 32x32 and 16x16 image types for the splash screen/about box logo. The 16 x 16 image is not used for the splash screen, instead the 32 x 32 image is resized for the tiny splashscreen icon space which doesn't look good. Before I switched to use managed resource only, the logo works fine with my satellite dll resource. I changed the C# sample comes with the October CTP and it also only uses the 32 x 32 icon for both splash screen and about box. Am I missing something Does anyone ha ...Show All

  • .NET Development Access Connection String

    I have developed an access database on my local machine that I wish now to host on network server. Local Address: Friend ConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = c:\DB1.mdb;User ID=admin;Password=" The server name is E287868 How now do I configure the Data Source to  represent the new full path to the database   Do I need to create a share folder on the server and place the Access database in it Thanks, Fred Herring   David is right.  Place the Access database on a network share and give users permissions to the folder.  But I would be very careful not to give th ...Show All

  • SQL Server How can I turn off the encrypted login feature?

    Hi all. My question is, is there any option that turning of the login encrypt I've read many post that they said the login encryption is always on and can't turn that off. With MSSQL2K, I made some program that audit who try to login and when and access which db. But I can't check with MSSQL2K5 because the server and client always encrypt the login info (via TLS ) Someone said that profile the client but when the site is busy, that feature give heavy stress to server.. The port mirror server is another machine so I need 1. decrypt the login info or 2. turn off the login encryption feature. Is there any possible way to solve this ...Show All

  • Visual C++ char array

    I am trying to create a 3-dimensional array that stores records in 38 rows, with 3 columns. This array has a mixture of letters and numbers, so I declared a char array, the problem is, the rows with more then one character get truncated (00, 10, 11 become 0, 0, 1). Is there a way I can declare this array properly in order for it to allow me to have 2 characters in certain sections Below is a sample of the array. char array[38][3] = {{'0', 'G', '1'}, //3 dimensional array; number, color, column {'00', 'G', '3'}, {'1', 'R', '1'}, {'2', 'B', '2'}, {'3', 'R', '3'}, {'4', 'B', '1'}, {'5', 'R', '2'}, {'6', 'B', '3'}, {'7', 'R', '1'}, {'8', 'B', ' ...Show All

  • Visual Studio 2008 (Pre-release) Problem uninstalling orcas march ctp

    When trying to uninstall the orcas installation from march ctp I get the errormessage "The application data folder for visual studio could not be created". What am I to do Thanks for your reply, Chrichton Did the same as u mentioned but nothing / no good as the reg key still was fine  Tried another guys theory of doin this   "%programfiles%\Microsoft Visual Studio 8\Common7\IDE\devenv.exe" /setup in cmd prompt it ran the VS8 but than when closing it wouldnt open jus through start and program files etc.. any else got any ideas..  Bassically all i am doing is copyi ...Show All

  • Smart Device Development How to build the LAP sample code?

    Hi, I am trying to implement a custom password applet that displays instead of the standard builtin password screen. This was possible using pre-WM5 by creating an applet and setting (amoungst others) the Redirect registry setting for the password control panel applet. Using the letmein msdn example (which i have digitally signed to allow it to load at boot-time), this functionality no longer appears to work - the standard builtin password screen always displays. I have successfully managed to get other signed files to load at boot time. Is there any way to load a custom password applet, or has this functionality been removed in Windows Mobi ...Show All

  • SQL Server Where to begin?

    Hi, I'm totally new to sqlexpress and I'm trying to create a database to store websites that my desktop application will manipulate; however, I don't know where to start, I've read many articles on msdn but they all are either non-existent or wasn't very helpful. All I want to do is create a table. Do I use vb.net express 2k5 or sql server express manager I figure MS have to have created some kind of GUI for designing databases, if not I guess I'll just start hand writting the tables. Thanks for any help. -novice vs.net'er Also there is a command line only tool that comes with SQL Express: sqlcmd. It is useful for batch processin ...Show All

  • Visual Basic How to use Microsoft Office Document Imaging inside vb6 application

    I need to add a viewer in my vb6 application that opens a tiff file. I would like to use MODI and it's functionality (i.e. zoom, etc.). I am having trouble getting MODI to view any picture--it won't accept the "filename", but I can view the picture through MODI externally so there's nothing wrong with the .tiff file. Can someone help Prze These forums are for VB.NET and there are better places to find answers for older versions of VB. MODI Reference http://msdn.microsoft.com/library/default.asp url=/library/en-us/mspauto/html/diproTop_HV01040652.asp Maybe the VB6 newgroups http://msdn.microsoft.com/newsgroup ...Show All

©2008 Software Development Network