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

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

rodan_be

Member List

lazy j
Andrew.Fetchko
gabylevy
Omprakash
severino
balaji1987
pdianne
JoelMags
mcobrien
Me.Chris
Helloooo
Steven Hahn
JamesDawson
levogiro
RussianValery
Kushi
GlipNBA
Raven25
Collin B
Mateusz www.Kierepka.pl
Only Title

rodan_be's Q&A profile

  • .NET Development How to import public and prive key in RSA parameters

    Hello, I am using a code like the one below in ASP .NET as I am signing a string with a random generated RSAParameters. I would like to use prive and public keys from a .pfx file, located on the server. How can I import the keys into the RSAParameters private void Page_Load( object sender, System.EventArgs e) { if (!IsPostBack) { RSACryptoServiceProvider rCSP = new RSACryptoServiceProvider(); RSAParameters rsaPrivateParam = new RSAParameters(); rsaPrivateParam = rCSP.ExportParameters( true ); Session["param"] = rsaPrivateParam; } byte [] result; byte [] strToSign; RSACrypt ...Show All

  • Visual FoxPro Need help adding a new auto increment integer field to a table

    Hi     I have a table that I want to add a auto increment integer field. I go into the database designer, Right click on the table I want to add the field to then select modify. Then I insert a field and give it the name client_id set the type to Integer (autoinc) it defaults to a width of 4. Then I tell it to index it accending.    This works but on all the existing records it sets the field to 0. If I add a new record it does increment. My programmer added these fields to some other tables and they added a number and incremented it to all the existing records. What do I need to do to add the number to ex ...Show All

  • Visual Basic Customize combobox index

    Is it posibble to give the items in a combobox a different index Meaning, maybe giving the first item the index 4 and the second item the index 7 and so on. Or is there another way to do this: Im reading some data from a database that contains a number (an index) and a name. Both of these should be in a combobox but only the name displayed The name is put into the combobox and when i select that name, the index that the name has in the database should be known also. No you can't, but you can insert an item into a specific index, here is an example : Dim Name As String = "MSDN" Dim Index As Integ ...Show All

  • Visual Studio Express Editions Registering

    After I installed from CD, I registered my copy of VB Express, got the email ETC.  Now every time I start VB Express, I keep getting you must register.  What else must I do   HELP!!!! Quoted from this link http://msdn.microsoft.com/vstudio/express/register/default.aspx How do I register To register any Visual Studio Express Edition, simply run your Express Edition and click Help -> Register Product . To register SQL Server Express Edition, please click here . Hope this helps Regards, Deepak ...Show All

  • Visual FoxPro UML Design Tool

    Is there a UML design tool I can use that will generate (and ideally reverse engineer) VFP code I want to do use cases, object models and maybe object sequence diagrams. I am currently using Visual Modeler that came with Visual Studio 6 but it has limited VFP support and only supports object models. It's not exactly clear on their website whether or not it still does VFP. The online ordering doesn't seem to say it does. I have sent them an email. See what I get back..... ...Show All

  • Visual Basic Using Call, is it worth it?

    Call funcOne() or funcOne() Is there a difference (besides the obvious aesthetic difference) There is no real difference - many moons back in the mists of time, in VBx you did need to put call keyword in. Its supported for legacy purposes and there should be no difference. There is one or two places where it is still used - but if you havent found where then I wouldnt need to tell you about it. (Clue: you may need to use it if you are using literals) ...Show All

  • Visual Studio Express Editions Build a Web Site Now edition

    Hi I'm sure that you may have been asked this or perhaps you haven't, the published book Build a Web Ste Now put out by Microsoft, is that program free as well after 2006 I have done just what you suggested. I am pleased to write that I am a registered user as of this reply. I have one other question I am greatly interested in the designing of themes such as colors gradients raised and none raised properites... etc. am I to understand that this new atlas program is capable of doing this. dbarselow ...Show All

  • Windows Forms Checkbook register control?

    I'm in need of a checkbook register control.  Does anybody know if there is something like this available   I would like something that looks like Money or Quicken where for each transaction row you have two lines.  The first line contains the date, type, payee, payment, deposit, etc columns while the second line would contain the category and memo columns. If no control exists could one of the current lineup of spreadsheet controls (like Farpoint's Grid Control) do something like this I'm hoping not to have to write my own but I would welcome any suggestions or how-to as well. ...Show All

  • Windows Forms datetimepicker and bindingsource problem

    hi, i have a small problem here with bindingsource and datetimepicker control i bind a data private BindingSource bs = new BindingSource (); bs.DataSource = dataset.Tables[ "my_table" ]; datetimepicker1.DataBindings.Add( new Binding ( "Value" , bs, "begin_date" , true )); datetimepicker1.Value = Convert .ToDateTime(dataset.Tables[ "my_table" ]. Rows[0][ "begin_date" ]); datetimepicker2.DataBindings.Add( new Binding ( "Value" , bs, "end_date" , true )); datetimepicker2.Value = Convert .ToDateTime(dataset.Tables[ "my_table" ...Show All

  • SQL Server equivalent of render command and session header in reporting services 2005

    What is the equivalent of render command and session header in reporting services 2005 ...Show All

  • Software Development for Windows Vista Recognizing Gestures?

    I asked this over in the Avalon area, but it's really a tablet-and-WPF thing, so here goes... Can someone point me to an example of how to recognize simple gestures in WPF I've read lots of "Ink is buit-in in Avalon!" articles, and I've watched presentations that go even as far as using InkAnalyzer to recognize hand writing -- but all I'm looking for is something like recognition of a strike out, and I can't find one for a WPF app. The tantalizing Gesture attribute is there, but I have no idea how to use it! I set my InkCanvas EditingMode to InkAndGesture (or to GestureOnly) and still, no matter what I try, no calls ...Show All

  • Visual Studio How do I get the error and warning count after building a project in a macro?

    I am performing the following operation in a macro: DTE.Solution.SolutionBuild.BuildProject( "Debug" , "my_project.vcproj" , True ) I have not been able to find a way to access the error and warning counts resulting from the operation. Any ideas Solution.SolutionBuild.LastBuildInfo - Gets the number of projects that failed to build ...Show All

  • Visual Studio Trying to find the Word/Excel & VSS integration tool

    In MSDN article Q165496 ( http://support.microsoft.com/default.aspx scid=kb;en-us;165496 ) there is reference to a tool that will allow me to integrate VSS with Word/Excel.  It says to go to the "Free Downloads" at the VSS site, but once I get there I can not find the utility. Does anyone know where to find it   Better yet, can someone provide me with a direct link to the page Thanks! I don't know for sure. Someone in this forum may know better: http://forums.microsoft.com/msdn/ShowForum.aspx ForumID=16 Personally I doubt there will be support added for VB6, which is a 7 yr old application. Al ...Show All

  • Microsoft ISV Community Center Forums VBA erase Image control

    (My English forgives me) I need a help with this code, please help me I have 2 routines Incluir, adds 7 controls image for line whenever he finds the word Graphic Problem1, the image did not manage to put name to Borrar, it must eliminate the images that it is in this sheet Problem2, everything eliminates me and they are only the images those that I want to erase, since also I have buttons and cbo If they want to prove to a sheet in Excel 2003, change the name to brand place 2 CommandButton, write in B10, B25, B45, 60, Graphics and pegen this code --------------------------------------------------------------- Dim ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Lighting and Rendering

    I am just learning DirectX in C#, I have been through many tutorials on the net, gaining a bit from each one, but I can't get the rendering quailty right. I'm sure there is just some little property setting somewhere, but I can't find it. I'm trying to render a simple teapot- right now, it looks like this: http://www.magentastudios.com/cp/teapot.jpg here is the code: http://www.magentastudios.com/cp/teapot.txt I'm using C# 2005 Express, DirectX 9 December 2005, A good Vaio PC. What am I doing wrong :) Looks like your teapot aint normalized correctly. Try loading the teapot mesh file instead (<DXSDK&g ...Show All

©2008 Software Development Network