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

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

perrymans

Member List

Paul Diston
Matthijs Koopman
jortiz
Biceps
palestine
elemr
Luispekos
aferoce
luca82
kunallen
SuperJames
Martinp23
hammerstein06
DzheiZee
twaltz
AlanWKey
Sideout
polymorphicx
Seas Comander
PaulCzy
Only Title

perrymans's Q&A profile

  • Visual Studio 2008 (Pre-release) Close the Window in UserControl

    I put a usercontrol in a window. when I click a button in the usercontrol, I want to close the window and show another window. can this be implemented Thanks Do your design constraints prohibit the UserControl from having a reference to the containing Window or the Window knowing about the UserControl If the user control can know about the Window, then just expose a property on the control which the Window sets to itself (i.e. the Window gives the control a refernce to itself). Then the control can just call Close on the Window reference. Otherwise, perhaps you might expose an event on the user control called CloseWindowRequested. The Window would hook that event and close itself when the event fires. If neither of tho ...Show All

  • Visual Basic Graphics Flicker in Program

    I am sure this has already been asked, yet I couldn't find any such thread that helped my case. In my game the character and objects flicker occasionally. The character flickers from being animated a lot, same with the objects. This is my paint code for the game: Private Sub DrawGraphics() Dim intCounter As Integer Dim background As New Bitmap( Me .Width, Me .Height) Dim rectClear As Rectangle background = Me .BackgroundImage 'Clear First If strCharacter(2) = "YesClear" Then 'the rectangles keep track of the graphic locations rectClear = rectCharacter(0) rectClear.X = rectClear.X - intAnimaLeft rectClear.Y ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Simple Menus (Download)

    As our first sample we have created a simple menu system that loads from xml. The menus can resize, move, and write text to the titlebar. Check back for the variable width font sample coming soon. Please let us know what you think Submit@XNASpot.com Download: http://www.xnaspot.com/Sample_SimpleMenu.aspx lushdog: We are compiling tutorials on our site. Send something to submit@xnaspot.com , and if it is useful we will post it up. Please send em in!     ...Show All

  • SQL Server how report manager works?

    Understand how Report Manager functions internally through the use of classes in the ReportingServicesWebUserInterface assembly and leverage its undocumented functionality. Hi, The power of the report manager is not in the report manager itself. Reporting Services is implemented as a web service. Report Manager is just an interface (.APSX) on top of that. If needed, you can create your own interface using any language that understands web services. Greetz, Geert   Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All

  • Visual C++ C++ design capabilities

    I want to create software that allows the end-user to create multiple copies of their own buttons on a scanned map which buttons can be rotated 360 degrees and linked to a database. I thus need libraries of code for rotate and also zoom functionality that I can incorporate. Can I get this done with C++ or any of the other Visual Studio programs If not, what software do you recommend I'll check out this DirectX SDK. I understand that C++ is a programming language but I don't want to waste a lot of time trying to learn a programming language that ultimately won't get me to where I want to get to. Not being knowledgeable in what are contained in C++ libraries is the reason I was consulting those of you who ...Show All

  • Visual Studio Team System Work Item Form Customization Question

    I have three text fields under a tab and I want to control the sizes of each of these text fields - for example, the first one being the biggest, and the others smaller. But using the 'dock' attribute does not seem to do the trick. Can you tell me if there is a way to specify sizes of text boxes on a work item form Thanks, Maggie Having the columns on the tab group and providing the proper PercentWidth attribute for each column and then placing the controls within those columns should achieve the deisred results. ...Show All

  • Visual Studio Express Editions Visual Basic windows forms

    Hey, I've only started using Visual Basic tonight, and I've never touched any previous form of VB and/or Visual Studio. So this is probably the newbie-ist question you've seen for a few years if not ever. Anyway, I've got a task set out whereby I must create a testing program as such, with multiple choices. I've created a form for every question, along with a welcome form and a grade form. My question is simply, how do you link the forms, so that a user can click the button labelled "Continue1" and it opens up form2, within the same space and so on and so forth. Any help would be more than gratefully received. Thanks! that would be the form you are going to show, which you have i ...Show All

  • SharePoint Products and Technologies Moving Documents

    Can documents be moved from one folder to another The only options from the Send to command are local directory. What if I want to move the document to another folder, or even document library ...Show All

  • SQL Server restore a SQL 2005 database on SQL 2000

    Hello, If I have a SQL 2005 database set to SQL 2000 Compatiblity can I create a backup on SQL 2005 that can be restore on SQL 2000. Michael No, SQL Server 2005 backups are not valid for a restore on a SQL Server 2000. If you want to transfer the data to the SQL Server 2000 use the data transfer wizard. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual C++ CbitmapButton class dropped from VisualStudio2005

    I have upgraded a code from EVC4.0 to visualStudio2005 but as in visualStudio2005 CBitmapButton Class is dropped what is the alternate solution for CBitmapButton Class. I am using loadBitmaps methods which takes four bitmap image arguments values. Thanks Look at www.codeproject.com , there are enough Bitmap Style buttons that work with embedded VC. http://www.codeproject.com/buttonctrl/ Also you can copy the old source code into your project. ...Show All

  • Visual Studio Express Editions Plot real time graph using data read from serial port

    I read some data from serial port and i store it with buffer.Add(final). I later would like to take the data from buffer and add it to another new list which is yvalues, data inside yvalues are the what that would be used to plot the real time graph (plot one point every second), yvalues.add (buffer) certainly not going to work..What is the right way of solving this problem Private buffer As New List(Of Integer ) Private yValues As New List(Of Integer ) 'event handler for data_received Private Sub OnDataReceived( ByVal sender As Object , _ ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) _ Handles SerialPort1.DataReceived Try TextBox1.Invoke( New myDelegate( AddressOf UpdateTextBo ...Show All

  • SQL Server populate access database from a TableCollection

    Hi, I need to ask about how can I populate an access database tables directly with the tables in a TableCollection that already exist in my application. Thanks for any help, Aya. Thanks too much for the reply , but can I get some explanation about how to use the DTS. Thanks in advance, Aya. ...Show All

  • Windows Forms Can I unsign a ClickOnce manifest

    Without breaking the projects and having to reinstall the app. Could you send me that utility also I've tried calling MS support without being able to get through to a person for 30 minutes, and I've got hundreds of clients who are going to be affected by this problem on Monday if I don't fix it this weekend. jeremyh@leverance.com ...Show All

  • Visual FoxPro deleting records from a table

    Hi all, I have a table(all_wID) that consists of 160,000 IDs ( IDs are numbered from 1 to 160,000). Every time i use an ID in a particular application, I want that ID deleted from the table(all_wID) i use -> delete from all_wID where work_id = find.work_id this is saying if i use one of the IDs, delete it from the list, then when i use the application again i need to check to see if the id has been used already. I query all_wID to see if it has been deleted, and if it hasn't been, i use the ID and then delete it. My problem is getting the record to delete. The table consisting of the IDs, doesn't delete the record, but instead makes the 1cm border to the left of the column black. Does any1 now how to acutally delete a record from a file ...Show All

  • Visual Studio Express Editions logarithmic scale interpolation

    I have a program which reads a file containing integer values between 0 and 10. I already use a linear mapping which takes this values and maps them in a different range. Now I want to map the values using a logarithmic scale. For example I want to map from [0;10] to [0.2;5] and values have to grow following the logarithmic scale. I can I do that Unless your question is in the context of a specific piece of VC++ Express, this is a problem in algebra. Have you tried logarithms, function mapping, and function scaling in Wikipedia (www.wikipedia.org) ...Show All

©2008 Software Development Network