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

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

pschla

Member List

paso
Adriaan W
Mick .
Neo the 1
Drew Marsh
Venkata Prasad K
forrestcupp
VinceG
Ken S
Lariamon
nmirhan
Dan Crowell
SQLChamp
Philip Jaques
nick5454
Bug-free
Mainship
wms103006
zeeshan hirani
Srdjan
Only Title

pschla's Q&A profile

  • Visual C++ How to unregister a activex component once it is used by the page moved to new page or using different event

    We implement an Activex component and sign the component, etc. Our application security requirement make us it work like an Applet with respect security and how it is stored and deleted. e.g. If a html page has an applet, it is instantiated in that page and the javascript can use that applet the applet life cycle ended when we move to new page. As I understand it, ActiveX component is downloaded and registered to windows registry with respect to our implementation of DllRegisterServer in the component. We implement DllUnregisterServer() also. But When you move to new page IE does not call unregister this component What am I doing wrong if not how to achieve something like this Can a component call unregister itself explicitly Regards Kr ...Show All

  • Visual C++ Build error converting C++ 2003 to 2005

    I have an unmanaged C++ project in VS 2003. I converted it to VS 2005 without any problem. However, when I build it in 2005 I quickly get a message 'Build failed' in the bottom left hand corner. But the error list is empty! Can anyone help Thanks Thanks for replying. Not sure what you mean by custom steps. I simply build the project by selecting build project from the build menu. What custom steps could I have ...Show All

  • Visual Studio Express Editions Getting started for beginners

    hello, I am VERY VERY new to all this. I would like to know if their are tutorials and stuff that help you start from square one. Like NOT KNOWING ANYTHING. I don't know one bit about coding and want to pick it up at a relatively early age. So as I was saying, how do I get started. What are some great tuts to make the simplest of simple games and any other useful info to help get a noob started. Also I just got downloading Visual C# 2005 Express Edition, and about to d/l the XNA thing. Overall I am kind of confused with all of this, like what do I need to make the games XNA or C# Express Edition Can someone just PLEASE start from one explaining EVERYTHING Such as what exactly do each of these programs do Thanks to everyone that will help ...Show All

  • Visual Studio Team System Must projects be added under binding root of solution?

    If you don't you get: " The project that you are attempting to add to source control may cause other source control users to have difficulty opening this solution or getting newer versions of it. To avoid this problem, add the project from a location below the binding root of the other source controlled projects in the solution." Is there a way to allow a project in the solution to be at a higher level parent than the solution itself The short answer is "yes". The message you see is just a warning and can be ignored in most circumstances (i.e. just click Continue). You can also click the "Don't display this dialog again" to keep from being shown this dialog i ...Show All

  • .NET Development Accessing one forms class properties from another

    I have a main form which has created instances of various classes it uses. When a menu option is clicked I want to open another form ,a bit like a dialog window, which enables the user to set various properties in those classes. How do I do this so that this second form has access to the properties of the first forms class instances The properties I want to access are not static. Regards, Gareth by default, all controls are private meaning that its only accessible to the form/owner itself. To make it accessible by public then you need to make that control public (pretty much change private to public) However it's bad practice accessing a control from another form - there should be anothe ...Show All

  • Visual Studio Express Editions Stocks Program

    Please, I’m trying to create a program to manage my stocks. Yahoo provides CSV files for day and historical informations, that can be downloaded. For exemple, I took PETROBRAS stock ( http://br.financas.yahoo.com/q/hp s=PETR4.SA ). The historical data can be downloaded from: http://au.rd.yahoo.com/finance/quotes/internal/historical/download/*http://ichart.finance.yahoo.com/table.csv s=PETR4.SA&a=0&b=3&c=2000&d=10&e=23&f=2006&g=d&ignore=.csv were a is the initial month, b the initial date, c the initial year, d the end month, e end day, and f the final year. But it only gets 200 days max. So, if you like to have all historical data, you should do splited downloads, and compare if the informatio ...Show All

  • Visual Studio Express Editions Bullet Points in a rich text box.

    Any ideas on getting bullet points in a rich text box Thanks Try something like this: RichTextBox1.Text = " Hello world" RichTextBox1.SelectAll() RichTextBox1.SelectionBullet = True ...Show All

  • Visual Studio Team System Different deploy requirements for differrent environments

    Hi, I have an unanswered thread here: https://forums.microsoft.com/MSDN/ShowPost.aspx PostID=912956&SiteID=1 about how we manage differrent requirements for different environments. Here's an example of a problem I'm having. Our developers are all grouped together in an AD group called SomeDomain\Developers. That group has various permissions assigned in our dev environment. We also have those same permissions setup in our DBPro project. However, we don't want that group to have the same permissions on our other environments. In fact, when we go into our live environment we don't want this group to have any permissions at all. If we use DBPro to do all of our deployments then, unless we change something, that group will ...Show All

  • SQL Server Another Mysterious issue in SQL 2005 & SSIS

    Explain this: Package runs successfully from BIDS It runs successfully in SSIS store It runs successfully when I manually execute the Job JOB FAILS EVERY FREAKING NIGHT Have you checked the NT Event log for any signs of an error I often forget to check this... If you set it to execute during the day does it run If it runs then compare the night failure times with your tape backup schedule. I recently had a maintenance plan failure caused by the nightly tape backups. If it is still failing then it could be a security problem of some type. I have gotten this exact generic error message from security mis-configurations. Thanks, Greg Van Mullem ...Show All

  • SQL Server Hide some columns in Matrix but not in subtotal

    Hi all, I would like a matrix that look like this: 2006/01 2006/02 2006/03 Total % % % % Amount Amount Class. BU1 98,82% 78,53% 88,12% 88,49% € 217.763.099,50 € 207.328.766,75 BU2 64,98% 32,53% 92,19% 63,23% 5.093.781.522,65 € € 287.731.766,75 BU3 74,71% 45,78% 78,69% 66,39% € 847.871.349,50 € 819.123.124,75 I want detailed subtotals but I don't want the "Amount" and "Amount Class." values in the details of my Matrix. I've not found other w ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Your First XNA Game: Load DDS with Alpha Channel

    Hello, just looking at the "Your First XNA Game" tutorial. It mentions using the DirectX Texture Tool to create a .dds file with an alpha channel rather than a .png. Texture2D.FromFile(graphics.GraphicsDevice, "sometexture.dds"); doesn't seem to cut it for the alpha part. I tried putting the following before it: TextureCreationParameters txParams = Texture2D.GetCreationParameters(graphics.GraphicsDevice, "sometexture.dds"); txParams.Format = SurfaceFormat.Rgba32; to force it to use a8r8g8b8 but still nada. Any suggestions Thanks Hey George, Looks like the "Your First XNA Game" sample's call to SpriteBatch.Begin doesn't pass in SpriteBlend ...Show All

  • .NET Development View database data

    Hi, I have an application that is connected to an Access database which already has four records in a table called course. When I run my program, I can add, edit, and/or delete records to the course table at run time. When I close my program and re-run it, I can see the data I added during the last run, no problem there. My problem is, when I'm on the VS 2005 IDE to view the data I added (select the course table on server explorer, click on data > show table data), I can only see the data I added via MS Access and not the data I added at run time via VS 2005. My questions are: How do I know if my application is really saving to the database if I'm not getting any errors Why is it showing only the MS Access data How ...Show All

  • Visual Basic Listbox item focus

    I want to be able to determine the index of the listbox item that has the focus in a multiselect listbox. I also need to determine if it was changed from selected to unselected. My goal is to select/unselect the corresponding item in a second listbox without effecting any other items already selected/unselected in that second listbox. Any help with what property to use would be great. In order to identify which item was selected / deselected you will need to maintain a seperate list of the selected indicies and then compare the current list against the saved list when ever you get the selection change event. -Scott ...Show All

  • SQL Server bit field---

    HI, while saving in bit field sometimes it is saved as true or false. sometimes it is saved as 0 or 1. how to make it true or false when i needed. if i set default value to 0 will it save 1 or 0 always. with default 0 i need to store truee or false. how it is possible this way. thanks venp--- Hi, the bit data type always stores either 0 (which is false) or 1 (which is true). A default value is used if no value is explictly passed through. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Express Editions Making a textbox into an array and reading from each point in the array

    I'm trying to build a name generator, that takes a letter from one point in an array, (Which originally comes from a textbox), and changes that letter to some other character. So for instance, if i put the name "Sam" in textbox one and clicked the "Generate" button, the out put, (Which has random keyboard typings of each letter, like S as "Ess" or "$") would go to textbox 2. So basically i want to build a name generator for The "Leet" or "L33t" Language. What i need to know is: 1.How to assign the Data of Textbox1 to a String array 2. How to read from each point in this array and 3. How to set the output to go to a certain point in an array for textbox2. Any help would be greatly ...Show All

©2008 Software Development Network