Software Development Network Logo
  • Visual C#
  • Windows Vista
  • Game Technologies
  • Smart Device
  • Microsoft ISV
  • Visual J#
  • Windows Live
  • VS Team System
  • Windows Forms
  • SQL Server
  • Visual C++
  • Visual Basic
  • Architecture
  • Visual FoxPro
  • Visual Studio

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

Plenty

Member List

Mike Pelton
Alan Hebert
Mohammad Akif
newbievsprogrammer
Nikhil Khandelwal - MSFT
paul_at_foobar_nu
Frans
KayKay1027
Mike D
Paul Sansom
univac_les
Seidel1
cgreen1
jlandry
samnas
Adrian S. Griffith
2weelz
saarar
sharpbart
Papuashu
Only Title

Plenty's Q&A profile

  • Visual Basic popup window

    how do you invoke the hyperlink in a second browser thank you, target="_blank" in the anchor tag. You can add this to an asp.net tag, and it will get passed through to the html that gets rendered. It won't work for a link button though, because it doesn't get rendered as a link, but a postback and the link/event is generated by your code. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed DirectX 2.0 Beta and XInput

    I have a general question regarding the Managed DirectX 2.0 Beta: Using Intellisense, I was able to figure out how to get a Direct3D Device up and running dispite the minor (and sometimes major) differences. I also found that XInput, in contrast to programming with XInput in unmanaged C++, this version is lacking a lot, such as all of the core functions that update and get the state of a controller. Forgive me if I am completely off the ma ...Show All

  • Microsoft ISV Community Center Forums Access

    I've been trying to use visual basic to format a table in access. I have a horrible mess of a table, which has multiple rows of information, in which i have to pulled different information from depending on what is in the first column of the row. I figured on using if statements and variables to determine the contents and what i need to pull out, however, i cannot figure out the way to actually denote the cell in the function. Like if i want to ...Show All

  • Visual FoxPro Remove file acces

    Situation: A program written in FoxPro tries to find a file on a remote computer. It does find it. Then a new file as added to that folder on the server. The client is trying to find the new file, but an error "File access is denied" is generated. The same file is being read from the server without problem. Any ideas "Does't find it". In your original message error was "Access is denied". I'm confused. Newly cre ...Show All

  • Visual C++ MFC Message Routing to active view from a dialog box

    Hey everyone, I an working on a MDI MFC application (although the multiple documents aren't currently being used, just the multiple views). The program uses a modeless dialog box to take user input. The dialog box has an edit box that lets a user type in a command and an enter button for the user to enter the command in the edit box. The program makes use of multiple views through the "new window" item in the window menu. ...Show All

  • .NET Development Problems with Find-Method and binding

    Hi, I'am using following code to search for a special string and bind them to a DataGridView: Dim drv As DataRowView() dv.Sort = strCol Dim val As Object val = strCol drv = dv.FindRows(val) Me .DataGridView.DataSource = drv First the searched data is displayed correctly, but after a few seconds the error "IsNew" is no member off ... ouccured. The datagridview changed the columns to IsEdit, IsNew, and so one. C ...Show All

  • Visual Studio property pages combobox

    I'm using MPF and want to display one property of the project (of my project system) as combobox (not just editable string in the grid). How can I do that The document at http://msdn.microsoft.com/library/default.asp url=/library/en-us/dndotnet/html/usingpropgrid.asp is a good start for learning how to manipulate how items are shown within the properties grid. Craig ...Show All

  • Windows Forms Write to a .txt file

    Hello :) I'm using J#, and I'm trying to write a string to a file. I have searched everywhere, however, code samples are only for visual basic/c#/c++ Is there a way to write to a text file with J# Virtually anything you can do in one .NET language you can do another, writing to a text file is no exception. Try this for a starter: System.IO.StreamWriter sw = new System.IO.StreamWriter( "c:\\me.txt& ...Show All

  • Windows Forms Visual Studio 2005 Service Pack 1

    What I want to know is when can we expect the desperatly needed service pack 1 for Visual Studio 2005 I've had so many errors so far when working with the Windows Forms designer, it is not only VERY frustrating and wasting my valuable time, but, it is also embarrsing when my projects and clients are being delayed because of a low quality tool. I expected higher quality standards from Microsoft! Don't get me wrong, I love .Net and especiall ...Show All

  • Software Development for Windows Vista Free MPEG-2 Encoder Filter

    Hi all, I want to create an application for converting wmv video to MPEG-2 movie using Direct Show anyone know where to find free MPEG-2 filter Thanks. I don't believe you are going to find one. MPEG2 is protected by copyright/patents/etc. Anyone who writes encoders/decoders must pay a fee to the patent holders for each copy they sell/distribute. Such being the case, there aren't going to be any ...Show All

  • SQL Server Can't Attach Database using SQL Server Management Studio Express

    I am having a problem Attaching, well actually not being able to see a database when attempting to attach it. I suspect this is more of a security issue rather than a problem with Management Studio, but I can't figure out what is happening. If I copy a database to Documents and Settings\All Users\... and attempt to attach I can see the file in the selection tree. This also is the case if I copy it to Documents and Settings\Default User\... Bu ...Show All

  • .NET Development Is there any way to invoke a button event from code?

    In vb6 I could invoke a button event by just calling the button_click procedure.  Is there anyway to do that in vb2005 Thanks Dick You can still call the button_Click method, or call button.PerformClick. The latter will invoke all event handlers registered (in case there's more than one). ...Show All

  • Visual C# this one is a doozy!!!

    I am using Visual C# to develop a sudoku program. I have been working on it for a couple weeks now. The one thing I want it to do is to generate the puzzles through a random algorithm. The rules are a little complex but I managed to simplify them a little for the program. The one problem I am having is actually with C# itself, I don't believe it is my code because I have rewritten the algorithm numerous times. Here is the problem. The values for ...Show All

  • Windows Forms GDI plus in .net 2.0 advantages

    I have a winforms app in .net 1.1 that extensively uses GDI instead of controls on forms, as there is lot of content. Now, we are migrating to VS 2005 on .net 2.0. What are the features of the GDI+ in .net 2.0 that I should look at leveraging How different is it from the GDI of 1.1 GDI+ isn't a new feature in 2.0, it's been there since .NET 1.0. GDI is the old graphics API part of Win32. I don't know if th ...Show All

  • Visual Studio 2008 (Pre-release) Scroll a ListView to bottom?

    I have a ListView that has to scroll to bottom on every item insert. Is this possible ListView displays scrollbars automatically when not all items can be displayed. ListView inherits from ListBox which has a ScrollIntoView  method which will scroll a specified item into view. So when you add a new item, make a subsequent call to ScrollIntoView and you should be all set. HTH, Drew ...Show All

©2008 Software Development Network

powered by phorum