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

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

Adarsh123

Member List

Praveen Dayanithi
hannesaj
Kim Christensen
arkiboys
djche
boulderbum
AMD
gshaf
dezrtluver
vandewst
athansia
blindi
Nitasha
Sqnyy
Pablo Orte
MechEng85
Anthony von LA
Leon Mayne
mdrelyea
MarkSee
Only Title

Adarsh123's Q&A profile

  • Visual Studio 2008 (Pre-release) GroupBox "off-by-one" Bug?

    I noticed that when I started nesting GroupBoxes inside Grids, sometimes the bottom-edge and/or the right-edge of the groupbox wouldn't be drawn, it looks like they are beeing clipped because they end up just outside the area for the groupbox. (this doesn't happen if the groupbox isn't inside a grid, and also it seems more prone to happen in different quadrants in the grid).Try the following xaml, and adjust the size of the window: < Window x:Class = " WPF .Window1 " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " Title = " WPF " Height = " 330 " Width = " 507 " > ...Show All

  • Visual C++ VS .Net 2005, how to disable intellisense...

    Hi I am really frustrated with the performance of VS .Net 2005. This is because I always see at the bottom "updating intellisense..." and it uses 60% to 70% of CPU. How to disable this updating of intellisense... Please this is making Visual studio unusable. Thanks Chandra I just want to join the chorus. The intellisense update is making my C++ project (hundreds of files, many hundreds of classes) unusable. Please restore the VS 2003 performance. ...Show All

  • SQL Server ErrorLog size limit

    Hi. I have a service on a server which contains Sql Server Express. this service adds documents to the database to allow full text search features. From some reason, the index crashes and than it writes to the ErrorLog file, the errorlog jumps to 20GB(!) causing the server to crash. How can : 1. limit the size of the error log. 2. find out why the log jumps to this size (I can't open the error log file ofcourse...) Thanks! hi, if you are refererring to transaction log you can you the alter database command GO ALTER DATABASE [Northwind] MODIFY FILE ( NAME = N'Northwind_log' , MAXSIZE = 1024000KB ) GO Regards, joey ...Show All

  • Visual C++ separating high and low 32 bits in a 64 bit interger

    Hi, Can anyone help me to separate the high 32 bits and low 32 bits of a 64 bit integer into 2 new intergers Thanks in Advance inline unsigned long HILONG(__int64 value) { return (unsigned long )(value >> 32); } inline unsigned long LOLONG(__int64 value) { return (unsigned long )(value & 0xffffffff); } ...Show All

  • Windows Forms User control in designer

    Hi, Can anyone tell me what is the user control life cycle when its dropped in to a visual studio designer I mean, I have a new windows application project created in visual studio 2005 and a new form added. Now I create a new user control extending it from UserControl. Add few properties in user control and few events. Now when I drop this user control in form, i want to know what designer does to display it on the form and what event's would be fired and which events wouldn't fire . Reason of asking such question is, I have a user control and when i drop it on a form, it fires its load event and I was under impression, it would not fire load event when control is in design mode. It must fire it when its in RunMode. I do check Desig ...Show All

  • Visual Studio Express Editions Clipboard Problem

    I work for a University and we are looking into a feature that records if any of the students used a website for reference, ie cntrl +C and then paste within a word document. Is there a way to detect what website they copied onto the clipboard from. Any help much appreciated Chris Thanks for the help, One last question, could this be made within a macro that sits on a word template, that we could give the students. Chris ...Show All

  • Visual C# TreeNode Tag problem

    I am having some problems with a TreeView control, the thing is that I have populated a tree with nodes an attached different objects to the different nodes using the Tag property. My problem is that when the user clicks the nodes, different things is supposed to happen depending on which type of node is clicked. How can I determine which object is embedded in the nodes Tag when the select event is triggered Regards, Peter Larsson! You could implement a interface for all your tag objects, and then in your click event handler you cast the tag object to that interface and call a method on the interface and let the different implementations of the tag objects do what needs to be done. ...Show All

  • SQL Server Report export to Excel

    Hi, I need to export various reports created using SQL Server 2005 Reporting Services to ONE Excel workbook (with multiple work sheets - tabs - one for each report). Is there an option in Reporting services that can allow me that Thanks. If you need to "combine" other reports into a single report, create a new Report, add a rectangle with a subreport for each other report, and set PageBreakOnEnd for the rectangles. EDIT: Chris's response here is much better: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=793576&SiteID=1 ...Show All

  • Software Development for Windows Vista Moving Outlook Contacts from PC to Mobile Device

    Is there a way to copy contacts from the Microsoft outlook program on my PC to the Contacts on my Windows Mobile device I am using a PC running Windows XP and an Acer n300 using windows mobile pocket pc Hi GJ: This forum is for discussions about developing applications for laptops, Tablet PCs and Ultra-Mobile PCs. You may want to repost your question in one of the forums for discussing Windows Mobile devices. However, I can tell you that if you use ActiveSync, you can tell it to sync your contacts from Outlook to your Pocket PC or Smartphone device. This functionality is built into ActiveSync. Thanks, - Mark Hopkins - MSFT ...Show All

  • Visual Basic Changing the Font of an Excel Cell from Visual Basic

    Hi This is my first post so sorry if it is in the wrong place. I have written a Program in Visual Basic 2005 that extracts information from an SQL Database and puts it into an excel spreedsheet. This all works fine, but what i now want to do is change part of the input so that it is displayed in bold in the cell with the rest being displayed in normal font, to produce something like this Processor: Intel Celeron M 370 1.5GHz all in 1 cell This is the current code: cell = DescriptionCol & Row oExcel.Range(cell).Value = oExcel.Range(cell).Text & ( "Processor: " ) oExcel.Range(cell).Value = oExcel.Range(cell).Text & (thistable.Rows(y).Item( "CPU Type" ) & " " ...Show All

  • Visual Studio Add new menu to the visual studio 2005

    Hey, I was wondering if it's possible to add a new menu to the visual studio 2005 without using add-ins. My basic need is very simple, i just want to move some of my marco's to a Toolbar menu. 10x Shahar Assuming that you mean macros, yes, you can: - Click the Tools, Customize menu - Locate the Macros category - Drag the a macro command and drop it on any toolbar - Right click the dropped command and customize its name, image, begin group and blah blah ...Show All

  • Visual Studio Team System Reload is forced when another person checks in his changes

    Scenario: Bob works on a solution in VS.Net bound to team foundation. Jane works on a project in the same solution as developer A. She adds some file to a project and checks it in. The next time Bob tries to debug/run his copy of the solution after the changes to the project has been checked in by Jane, he gets this following message without trying to get the latest version: File modification detected The project has been modified outside the environment Press reload to load the updated project from disk Press ignore to ignore the external changes. The changes will be used the next time you open the project Is this perhaps some setting on the team project I've googled it, but to no avail... Bob should not be prompte ...Show All

  • Windows Forms DGVComboBoxColumn DataBinding

    Hi all, I have a DGVComboBoxColumn and its .DisplayMember and .ValueMember are defined to "ColA" and "ColB" respectively. Now, I have a DataSet containing ColB and bind to it, how can I predefine / set the index / display ColA as the DisplayMember accordingly I set the DataPropertyName to ColA or ColB and it doesn't work. Thanks, ...Show All

  • SQL Server How to create sproc with unlimited number of parameters?

    We have this kind of thing in C#, and I know the sp_executesql (or something like that) does it too. How do you create a stored procedure that has certain known parameters, followed by any number of additional parameters For example, you may have one that's called in any of these ways: exec my_sp @ID, @text, @P1, @P2 exec my_sp @ID, @text, @P1, @P2, @P3 exec my_sp @ID, @text, @P4, @P39087, @P2 I can't find a syntax in the docs that really accommodates this. Thanks in advance for your help! Is something like this what you are looking for   This defines a procedure with M required parameters and N optional parameters: create procedure dbo.xample    (    @pm_required_ ...Show All

  • Visual C# Creating .EXE?

    Stupid question time. I'm totally new to C# and .NET and I just want to create a .EXE file that does the following. First, there won't be any user interaction. I just need for the executable to FTP a file, parse it, and send an email based on what it finds. I'll also want to schedule the file to be executed with the atrun command. I can figure out how to perform each of those functions but how does one create such a file in VisualStudio Do I just create a Visual C# Windows Application project, and will that generate the .EXE file Thanks very much. Hi, in visual studio you can create 2 main kind of applications Windows Applications or Console Application. Sounds like you need a minimal UI, if at all ...Show All

©2008 Software Development Network