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

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

Manrey

Member List

DeDdY
KCBuck
dhnriverside
karthi
LFDIII
Decoder
SpankmeBandit
Joe78
The Enforcer
japm
Chris Hotz
doobey
clonk
S.Malathi
Roboteux
dejann
Ravi Sankar Samanthapudi
Virgil Balibanu
Autechrian
Rajesh Kannan
Only Title

Manrey's Q&A profile

  • Windows Forms Problem Setting Control Width in FlowLayoutPanel

    I've created a custom UserControl, WidgetFlowLayoutPanel, that inherits the FlowLayoutPanel.  Its purpose is to contain one or more custom WidgetControl controls.  When a WidgetControl is added to the WidgetFlowLayoutPanel, I want to set WidgetControl.Width to the ClientSize.Width of the WidgetFlowLayoutPanel. I've tried this two different ways, neither of which works: First, I did an override of OnControlAdded , and added... ...Show All

  • Windows Forms Button Text and Image depression

    Does buttons with image embedded on them synchronize both text and image depression while clicking them in .Net2.0 I could find that when a new project in VS2005 is created and the form contains the button control, the look and feel at runtime satisfies the requirement. However, when I use a project originally developed in VS2003/.Net1.1 & now migrated , placing a button from .Net2.0, the run time does have the same problem. ...Show All

  • Visual Studio MSDN 8 Installation on a server

    Hi all, Looking to setup MSDN on a server and have clients connect to a single install of the library (to save disc space) but can't seem to find any documentation on how I do this (or for VS 6 and 7 for that matter!) regards, Alex Hello, Unfortunately this feature is not available.  But, in VS2005 we've added Online Help integration, so you can get F1 & Search functionality without installing any docs locally. There is a "run from ...Show All

  • Visual Studio Team System VS 2003 client plugin to TFS

    when we try to download the version 1.0 of the product, we get page not found error. http://www.microsoft.com/downloads/details.aspx FamilyID=32202966-ef04-442f-8c5c-88bdf15f551c&DisplayLang=en Previously we tried the beta versions, but that leads to error as http://blogs.infosupport.com/raimondb/archive/2006/03/03/tfsscvs2003.aspx Has anybody ever succeeded to connect to TFS from any other clients than Team Explorer ...Show All

  • SQL Server SQL Timeout Error

    Hi I m using SQL 2005, in one table i have 1 millon records in a table. I usually get SQLException saying the operation has timeout. So how do prevent such error, can i increase the time out period for SQL. If Yes then How Regards Debugger Where do you wantto achieve this Programmatically or in a SQL Gui HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual C# Time/Clock Example

    Hello, Is there a good clock sample for C# Mateusz   Mateusz Rajca wrote: Hello, Is there a good clock sample for C# Mateusz Is this something like what you want. Fully stylable, analog and digital display http://www.practisoft.co.uk/clock.jpg ...Show All

  • SQL Server Is it possible to use T-SQL to create a user in Active Directory?

    Is it possible to use T-SQL to create a user in Active Directory Mr. Pope, Thank you sir, that is exactly what I am looking for and through all of my searches on the internet I never cam accross this. So thank you again. I will work on making this into a SP that SQL can call upon. Also, thank you for the heads up about security, as I'm sure it come up... You have been a huge help. ~JH ...Show All

  • Visual C# List the names of "folders and files" under a directory in a treeView control???

    List the names of "folders and files" under a directory in a treeView control    I can't think out the arithmetic, may be using recursion. Who could tell me the detailed method   Konstantin Gonikman wrote: Yes, it's best done with recursion: 1. Read directory structure 2. Add Sub-directories and files as nodes to the treeview 3. Read Sub-directories in a loop. Read the name of each directory, go to step 1 (call functi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Sample Framework

    I've been looking over the sample framework (empty project) and I can see a lot of useful things in there that would be great if I didnt have to reinvent the wheel, mostly in terms of handling input and GUI code, but... Even though the sample framework code has a lot of comments, it's still very hard to follow and feels like it's all over the place. I realise we all have different coding styles but I was wondering if anyone has some kind of ...Show All

  • Visual Studio Tools for Office Word OCX Control

    I am trying to create a Windows Forms application that encapsulates the Word OCX on/inside the form. Is this possible, and how would I go about it Thanks Hi, I have a requirement to show a word document on a web form and the user can change the document and the changes should be saved to web server. For this purpose i am using DSO Framer control available at http://support.microsoft.com/default.asp ...Show All

  • Smart Device Development SQL Server 2000 connection failure

    Hi, I'm trying to connect to an SQL server 2000 database table from my PDA using VB.NET through a bluetooth connection. I keep getting an error telling me that I cannot connect. I have tried everything that I can think of to fix it. Do I need a copy of SQL Server CE on the PDA, even though I'm only viewing data from my PC's database on my PDA Thanks Please see this: http://forums.microsoft.com/MSDN/ ...Show All

  • Visual Studio Team System Windows SharePoint Services is not configured as recommended by Team Foundation Server.

    I have tried everything to get TFS up running and i can't install the Beta on the server. Im runnning Windows 2k3 server and i have installed SQL server 2005 and the share point services. I tried to install everything as the help file describe. But when i run the TFS setup the error message says Windows SharePoint Services is not configured as recommended by Team Foundation Server So i have tried to uninstall the sharepoint services and then r ...Show All

  • SQL Server Reporting Services 2005 and XML DataSource (as WebService)

    I'm trying to build WebService to use result as DataSource for RS 2005 (XML DataSource). But I have a strange problem. I have WebMethod with parameters. When I'm testing my WS in browser then everything works just fine. But... When I'm trying to call this web-service from VS2005 environment then something strange happens. Looks like VS passing parameters incorrectly to my WS (not passing at all!) I've created very simplyfied version just to c ...Show All

  • SQL Server Upgrade Installation

    Hi Guys, I would just like to ask where could I find documentations or site on Upgrading Previous CTP version of SQL Server 2005 to SQL Server 2005 RTM with clusterring.   Thanks...     Larry, There is no direct upgrade path from pre-released to RTM. You'll need to uninstall the CTP (this will leave your databases behind), install RTM and then attach your databases. During ...Show All

  • Visual C# Cross-thread operation not valid

    public void listenerThread() { TcpListener tcpListener = new TcpListener ( IPAddress .Any,1234); tcpListener.Start(); while ( true ) { Socket handlerSocket = tcpListener.AcceptSocket(); if (handlerSocket.Connected) { lbConnections.Items.Add(handlerSocket.RemoteEndPoint.ToString() + " connected." ); lock ( this ) { alSockets.Add(handlerSocket); } ThreadStart thdstHandler = new ...Show All

©2008 Software Development Network

powered by phorum