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

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

cisfreak2

Member List

magicalclick
LeoXue
mranzani
Kaliko
jim-
Photoman
Sime24
Santiago Cepas López
waruwaru
Mark Hsieh
Anand Raman - MSFT
Nisa
Poetjevel
Pintoo Khaira
Ram Pradeep
lemmi
Luiso
DSA_Dietmar
vito1281
vijayalakshmi
Only Title

cisfreak2's Q&A profile

  • .NET Development Class Library using Encrypted XML, best practice?

    Hello all, I'm shipping an API to clients that uses a XML file for settings. The thing is that I need the file to be encrypted. Mainly because we dont want to expose internal components. The API reads the XML file and pass internal objects into objects we expose to the user of the API. We've been looking into using Public & Private keys and the RSA algorithm. Since, according to theory, if we keep one key to ourself and ship the other key inside the API, nobody can encrypt without the Private key...but it turns out that you can only Encrypt with the public key and when you Decrypt you need BOTH Public AND Private key. So it seems pointless to have encryption using RSA if you have to ship the object that Decrypts the data. So m ...Show All

  • Software Development for Windows Vista Trouble with the ManualScheduler service and delays

    Hi, so I have this workflow I've been working on for a few months. It's made of a few parralel branches (5), which look like this : picture The whole thing is hosted in an ASP.NET webservice (in its global.asax file). Along with the ManualScheduler service (with UseActiveTimers on), I'm running a persistence, tracking and data exchange service. And while I thought I did everything right (according to other posts here), expired delays still don't cause the workflow to fire up, so I always have to wait for the runtime to do something (ie : instaciate another workflow, send an event to a workflow, etc...) before anything happens... (this, I assume is what it is supposed to do without UseActiveTimers activated). I really hope ...Show All

  • SQL Server Cannot copy field names in column headings from view results

    When I am using a SQL Query I have an ability to control whether or not I am able to Include the Column Headers when copying or saving results. The control exists in the Options > Query Results > Results to Grid > Include column headings etc. My question is how to get this same ability when attempting to copy the results of a VIEW vs. a Query. The idea is that when I setup a view it’s a drag/drop type of query building (query building for dummies if you will). Once I have a view and click the Execute icon it will return all the records selected by the View. However, when I click the upper left/top box to select all rows and column and then try to copy/paste the records into Excel all the data copies just fine but th ...Show All

  • .NET Development Possible to register a C# program to the R.O.T. for OLE automation?

    Hi all, I was wondering if it was possible to "register" your own created c# program for OLE automation This would be the equivalent of accessing something in Excel via OLE. Like: Dim ExcelApp As Object ExcelApp = System.Runtime.InteropServices.Marshal.GetActiveObject("Excel.Application") Edit: and just to clarify, I understand how the GetActiveObject works (by looking up the object in the Running Object Table). I guess I need to know if it is possible to register a program with the Running Object Table. Great, thanks again Alois. Hopefully this is my last question: I've managed to register my program with the ROT, and I can see it fine with the correct name! :) Now, accessing it is giving me some trouble ...Show All

  • Visual C# error " key not valid for use in specified state"

    i'm working on a c# win application . i can't open my old datasets either can't add dataAdabtors to my new datasets. tnx Hi, It seems similar problem to post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=199339&SiteID=1 also http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=70894&SiteID=1 Hope these may help u.   Thanx, Ch.T.Gopi Kumar ...Show All

  • .NET Development Display autonumber

    I have a main form with an add new button that calls another form called frmNewBooking. My booking table has a primary key named bookingID that I want to display to the user every time he/she adds a new booking. Is there a way to display the generated bookingID in txtID on frmNewBooking when the form is 1st shown and everytime the user adds a new booking Note: Access DB used. Please do not refer me to: ms-help://MS.MSDN.vAug06.en/WD_ADONET/html/d6b7f9cb-81be-44e1-bb94-56137954876d.htm Yes, you are right, and thank you for your suggestions. Now I see where this has been going all along. Now, how do I know what the last Access-generated autonumber was and display that to the user I would like ...Show All

  • Visual Studio Express Editions How to deploy VC 2005 Express SP 1 solutions?

    Hi, I am quite confused about the deployment politics we should use with the Express Edition. Since there is no Support for Setup projects -- with merge modules -- in Express Edition , we had before SP1 the possibility either to use private SideBySide Assemblies (for instance with a local Microsoft.VC80.CRT.manifest) or the vcredist_x86.exe. Using private Side by Side assemblies for the VC Redistributables is not recommended by MS (See for instance in Article "How to: Deploy using XCopy ") Service Pack 1 introduces a new revision of the WinSxS Microsoft.VC80.CRT assembly but the vcredist_x86.exe is not updated. VC20005 SP1 should fix this KB 919588 issue, but I don't see how, since there is no new vcredist_x86.exe for Express users. So I ...Show All

  • Visual Studio Cannot debug MFC source after upgrading to VS 2005 SP1 using symbol server

    I have VS 2005 and SP 1 installed and have enabled the symbol server in "Tools -> Options -> Debugging -> Symbols". It is no longer possible to step into MFC source code when debugging an MFC application. This used to work with VS 2005 without SP1. The only workaround to my knowledge is to disable the symbol server. Then the .pdb from the symbol server will not be used. If I understand this correctly. the .pdb from the symbol server (http://msdl.microsoft.com/download/symbols) now has source information stripped and so will prevent stepping into MFC source with the debugger. Thank you! Yes, that works like a charm. I had to delete all files from the symbol cache first. ...Show All

  • .NET Development Website

    Can Any body help me how can i create a web site that ather than localhost,i want it to have an address like juandelacross.com in my own computer my os is server2003 standard,please i'm an amature. 1. From start menu right click on MyComputer Computer Management dialog comes up 2. In the right pane select and expand |-> Services and Applications |-> Internet Information Services (IIS) Manager |-> Web Sites 3. Select and right click on the "Default Web Site" node, select New --> WebSite or Virtual Directory You will be guided through a series of dialogs asking the name of the site/directory, physi ...Show All

  • .NET Development replacing Thread.Sleep and Thread.Resume

    hrm... second post. dunno what happened to the first. how might I go about replacing the functionality of Thread.Sleep and Thread.Resume thats what I was thinking. oh trust me, I'm all over the pragma's to disable that warning. I ported a bunch of code at work that has the same functionality and I just pragma disabled, but I want my code to be clean. ...Show All

  • Audio and Video Development Feeding Windows Media Player with PHP

    I'm trying to develop a playlist in Windows Media Player where the audio is fed through PHP for security reasons. It works fine in Winamp and iTunes, but Windows Media can't play the file. We're trying this header with PHP: header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); header("Content-type: application/force-download"); header('Content-Transfer-Encoding: Binary' ); // added header("Content-Disposition: attachment; filename=\"".basename($FILE)."\";" ); readfile ( $URL ); And so far we get it where i ...Show All

  • Windows Forms Validation within a data grid

    I am using datagrids for data modifications. I would like to validate from by cell instead of on a form save. In other words, when someone changes a value in a cell, I want to execute a validation routine to verify that cell. I have looked at the Validating event on the Datagrid but it does not seem to fire. I am using VS 2003 C#. Thanks I usually handle the textbox in a datagridtextbox columns validate event using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace DGValidate { public partial class Form1 : Form { public Form1() { ...Show All

  • Software Development for Windows Vista Application Opens By Itelf Fine, But When Opened With Process it fails to load components

    Hey Guys I am trying to find out why this happens. If I try to open an application written in vb6(yah I know) under vista using a .net component using Process.Start it fails to load some components properly. But When I open it from explorer it opens up just fine and does what it is supposed to do. Any reason/explaination of why this may happen. Using Windows Vista Enterprise Edition. I am thinking it has something todo with security but honestly I don't know. Thanks for any help offered. The C# app is using 2.0 plus it is not the one creating the activex components that is the vb6. Which is outputting that error for me on the Process.Start but not on the explorer run. ...Show All

  • Visual FoxPro Source from internet

    Where can I find a source on the internet where will be wethear forcast for Slovakia and the other world... I want to include it in my program, to show the weather forcast, just temperature, humidity, air pressure, wheter it will rain, or snow, etc. Don't know wheather this kind of source exists... Thank for your advice O.K. forget about what I wrote before... I will make it other way... I want to export some infos from site... Is there a way how to do so ...Show All

  • SQL Server Creating a Custom Connection Manager Sample

    http://msdn2.microsoft.com/en-us/library/ms345276.aspx does anyone know where this can be obtained it did not come with the RTM. it does not seem to be available via download either a little help here! As Books Online has been updated, we also have some updated samples to match- Download details: SQL Server 2005 Samples and Sample Databases (April 2006) ( http://www.microsoft.com/downloads/details.aspx FamilyID=e719ecf7-9f46-4312-af89-6ad8702e4e6e&DisplayLang=en ) It is in the SqlServerSamples.msi. ...Show All

©2008 Software Development Network