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

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

msaeida

Member List

Harpreet Bhatti
rcarring
Paul Stubbs
AsOne
SnakeLair
jattali
platinumbay
princess01
NuclearNed
Denis Repke
Spongebob34
Matt Gradwohl
Kennster
Sam5671
ITSMEAGAIN
Debutant0
spacelord
jtl8678
javieruy
Jose Simoes
Only Title

msaeida's Q&A profile

  • Smart Device Development help !! its newbee

    hi all there, I'm a newbee to windows mobile 5.0 development and also to this forum. It might be very stupid question, but i really got stuck at silly point. i dont know how to use emulator for WM5.0 PPC device. could any body there plz tell me, how to do such thing. actually i'ce created a test application using VS2005 and WM5.0 PPC Sdk. deployed it on WM5.0 PPC device emulator, but not able to find my app on emulator and run it. plz help me, quick reply will be more appreciable. thanx in advance regards harry. Hi Harry, After creating the app, you can directly run it from IDE by pressing Ctrl-F5. If you explicitly want ...Show All

  • .NET Development treeview in vb.net

    i have created a treeview in a vb application, the data loads from sql server and I want that the parent node to be selected when you select a child node! an exemple parent child 1 child 2 child 3 now when you click on child 2 the parent node must be selected Me.TreeView1.SelectedNode = thanks in advance!!! I need help with this too. Can someone please elaborate as to what code needs to be written to allow the parent node to have the same style as the selected node. my problem is that i have the expand depth limited to 2 child nodes deep. and if i navigate to ...Show All

  • SQL Server Can you setup backup/restore functionality in SQL Express 2005 from a C# app?

    Hi, I'm currently working on a project which uses a SQL Express 2005 database. I want to be able to setup SQL Express from my C# program so that it can perform backups to a specified path location at the requested interval itself. This would free up my program from having to manage the backups. Just wanted to know if this is possible Also, when the current database becomes corrupt will SQL Express perform the restore for the user automatically, instead of them having to manually request a restore I realize that it might not be able to handle the restores in the same way as backups, but I figured I'd at least ask. Thanks, ...Show All

  • SQL Server List of al lindexes and their properties for a db

    sp_helpindex gives information for a single table. Is there a way of getting the same information for all user tables in a database ...Show All

  • .NET Development Developping a Real-Time Application

      Hello NG! I have to develop a Real-Time application. Computer A writes a message to computer B and computer B should get the message in real time (or almost real time). The message should be stored in a SQL-Database. One way is that computer A stores the message in the database and computer B is looking every 5 or 10 seconds if there is a new message. But I think there are better ways to do this, aren't they Is it possible to develop a Real-Time Application with .NET If yes, what is better winform or a web-application What kind of methods are out there Are there any samples out there Thank you for every idea! Mike As state ...Show All

  • Windows Forms DataGridView flickers in realtime app'

    Hello, im trying to use a read-only DataGridView in a realtime application where some users states are being monitored. What I'm experiencing is a bad flicker over the entire DataGridView, although I'm updating only a single DataGridViewCell (actually a DataGridViewTextBoxCell) at a time. Exactly: DataGridViewCell.Style.BackColor, DataGridViewCell.Style.ForeColor and sometimes DataGridViewCell.Style.Font. DataGridViewCel ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Screenshot with DirectX

    Hi, i want to do the following: 1. Make Screenshot of actual Desktop/Screen 2. Show the Screenshot on the hole screen 3. Zoom and Fade out the Image How can i do that with vb.net oder c# Where to begin I have never developed an directx driven app before. thank you yavuz bogazci See http://msdn.microsoft.com/coding4fun/april-fools/screensaver/default.aspx for the 1st 2 items To zoom, just draw the image bigger, to fade you need to change the properties of the vertices to use alpha. However, rather than asking very open ended questions which take a long time to answer it would ...Show All

  • Visual Basic VB 2005 Ejecting removable media

    I'm writing a program that reads and writes to MO drives and I need to be able to eject the MO disk on completion. Any suggestions how to do this within VB2005 would be most welcome. I assume it is that same process as with Zip drives and similar to that for CD/DVD drives. Thanks Here's a C# version so others may benefit as I got here from Google: Code Block using System.IO; using System.Runtime.InteropServices; using System.Threading; using System; public class DriveController { // 10 Seconds private const int LOCK_TIMEOUT = 10000; private const int LOCK_RETRIES = 20 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Which software to use, to author .x files?

    I've come to the point in my 3D application where, I have created all basic 3D stuff and rendering 3D primitives with textures. It is time to import .x files and render them. I used the tiger.x and tiger.bmp and the code from the Meshes tutorial and it worked fine. But what I want to do is create my own .x files - textures applied. Also, the Meshes tutorial says that D3DX can only handle the geometry and we have to setup the textures and materials for the mesh. What software should I use to author .x files and apply textures to them Any freeware or shareware will be helpful because I don't have money to buy commercial softw ...Show All

  • Windows Forms TreeView ... How to keep focus or scroll to top?

    I have a treeview and I am using a expandall property to expand the treeview. When it expands a large treeview it puts the focus and scrollbar about halfway down. How can I get it to keep the focus and scroll to the top of the treeview Nevermind..... I put the ensurevisible after the expandall and it works fine.... Thanks for the help..... ...Show All

  • SQL Server SQL Express TCP/IP Configuretion

    Hi All, I just configure the SQL TCP/IP but after I configure, I can't connect to the server via SQL Management tool. I am getting this error: Cannot connect to WPCC\SQLEXPRESS. ------------------------------ ADDITIONAL INFORMATION: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) (Microsoft SQL Server, Error: -1) For help, click: http://go.microsoft.com/fwlink ProdName ...Show All

  • .NET Development IEnumerable and IEnumerable<T>

    .NET 2.0/VS 2005 question - How do I implement both IEnumerable and IEnumerable<T> I get an fxcop warning if I implement only IEnumerable, and I want to be a good developer. Here's the warning without IEnumerable<T> implemented: "An externally visible type implements the System.Collections.IEnumerable interface but does not implement the System.Collections.Generic.IEnumerable interface, and the containing assembly targets .NET Framework 2.0. This rule ignores types that implement System.Collections.IDictionary" Here's my class:     public class XYZCollection : IEnumerable, IEnumerable<XYZ>   &nb ...Show All

  • Windows Live Developer Forums Double BOM Problem Still Exists

    FYI the response from XML-RPC method blogger.getUsersBlogs is not valid XML - it has two BOMs. I've not tried any other methods. This is a bug that should be fixed after the holidays. It would be fixed sooner but (a) the developer is on Xmas vacation and (b) we tend not to make changes to the site over the holidays since so many people are on vacation in case something goes wrong. Sorry about that. :( ...Show All

  • Windows Forms ArgumentException on PictureBox Paint

    Hi, I've a PictureBox docked in a splitcontainer. I have some thread than update the content of the picturebox (with invoke to be threadsafe) and it works. But, when I'm resizing the control sometimes (I figure that happends when the pic changes) I've this exception: ArgumentException Whith this call stack: at System.Drawing.Image.get_Width() at System.Drawing.Image.get_Size() at System.Windows.Forms.PictureBox.ImageRectangleFromSizeMode(PictureBoxSizeMode mode) at System.Windows.Forms.PictureBox.get_ImageRectangle() at System.Windows.Forms.PictureBox.OnPaint(PaintEventArgs pe) at System.Windows.Forms.Control.PaintWithErrorHan ...Show All

  • Visual Studio Express Editions Help with TextBoxes

    Hi, I'm a Newbie. Suppose I have 20 Text Boxes; say TextBox.1 to Textbox.20. How can I access or add data to these Text Boxes by using a variable (e.g. put 5 in Box 5, put 9 in Box 9, etc.) I don't want to write a separate piece of code for each individual Text Box. Thanks, David. Hi Mattias, Could you give me a hint about how to create such an array Something like : Public MyTextBoxes (20) ... I'm familiar with simple numeric arrays but I really have no idea how to create an array of textboxes. Thanks, David ...Show All

©2008 Software Development Network