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

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

vijil

Member List

shuyangtu
Shrek.NET
B Langston
David Boone220659
dr.acv
Aerouk
ThomasJaeger
magja
nzmike
remo.waller
ReneeC
VernonRhoda
JohnStrudwick
Szymon Kosok
Rajesh Kumar J
baron5038
Amber48019
rs12345
einaros
minkee.s
Only Title

vijil's Q&A profile

  • Windows Forms Searching a column in datagrid

    Hi,   I have a datagrid with 4 columns (empid,name,city,state). This datagrid is populated with data. I want to search using empid column in the datagrid and set focus to the found row. (e.g. I am given empid 123 and I want to loop thru all column values until 123 is found and set focus to that row).  I don't know, how to approach this. I'll appreciate to direct me in the right path. thanks.. ...Show All

  • Visual Basic Not allowed to pick directory for a new windows application project

    When I am using Visual Studio 2005 professional doing VB programming I am not able to specify what directory I want the solution to be created in when I create a new windows application. I had the express edition installed previously. Anyone have any idea why I am not allowed to specify a directory for the solution Thanks in advance. If you look in Tools -> Options -> Project and Solutions Tab -> Visual Studio Project Locations. This is the root directory for all your projects (which you can change) When you create a new project the name of the project will be the name of the folder under this Project Location root folder above. ...Show All

  • Visual C# visual C# or atleast C# on linux.

    hi guys I m quite addicted to linux... i want to know is there anyway by which i can compile .NET 2.0+ applications on linux.... thanks Hey guys i just compiled "mono" the C# compiler. The package beautifully compiled... except for fuse plugin... I use gentoo so i guess it may be an e build problem..... "monodevelop" is a good IDE to use, and worth trying for...... Cheers, Anuj Choudhary. ...Show All

  • Software Development for Windows Vista How does UAC impact admin Privilege?

    Vista RC2, I am using WMI EnableDHCP to switch netowrk from static to DHCP, the login account has admin privilege, and the program works fine when UAC trun off ,the program does not work with UAC,there is no error code returned from the WMI API, just nothing changed( I asked the question here and got a sugguestion to disable UAC, thanks for the help). I am confused with further testing, with UAC turn on, I right click the program and choice "run as administrator", the program still fail, Is it a UAC bug or "Run as Administrator" is using a downgraded admin privilege when UAC on Any comment will be welcome xuding After further study, I agree what Kenny said "If you right-c ...Show All

  • Visual Basic Crystal Reports Not in VS 2005 VB.NET Standard

    It's clear that VS 2005 VB.NET Standard does not include Crystal Reports.  - http://msdn.microsoft.com/vstudio/products/compare/default.aspx - http://msdn2.microsoft.com/en-us/library/b4z62wxz(en-US,VS.80).aspx - http://msdn2.microsoft.com/en-us/library/zcbsd3cz What is the MS the strategy for the standard user to get reports out    Buy Crystal Reports on the side for $200   Use Access It is possible to use the Crystal Reports application that was bundled with VS.NET 2003 in 2005 projects    Is there some data binding between Crystal Reports and SQL 2005 Express that would make it much easier to use as part of the bundled VS 2005 Professional package   Thanks! Thanks ...Show All

  • SQL Server Flat file source nightmare

    I've been working 4 days non stop on this project, lost a complete weekend on it and I totally had it. Please have a look at this "simple" question: I have a for each loop that checks for csv files in a folder. The path of the file(s) is stored in a variable varFileName. So far so good. But then I start with a data flow task and inside that data flow task I need to access one of those csv files at the time whenever it loops. So my best guess is use a flat file source because that's the only task I see in the list that fits my question. But the thing is, you set up a connection to a....yes right, a flat source connection and there you have to select a flat file. But no, I don't want to select ONE file, I need to access them ...Show All

  • .NET Development How can I tell if I am being called from funceval

    Hi, How can I know from within my .NET code if I am running in a funceval I can check that I am being debugger via, System.Diagnostics.Debugger.IsAttached but as the funceval is hijacking I cannot tell from the stack trace if the call is from the debugger. Is there any method that works differently when in funceval Is there a way in unmanaged code to do this any pointer is welcome. (I know about the debugger attributes, but these are not an option) Thanks Eli Getters are supposed to be side-effect free and stable (return the same value each time they're called). Other libraries and parts of .NET (besides Debugger func-eval) may rely on this assumption. For example, you could imagine a serialization li ...Show All

  • Visual Studio 2008 (Pre-release) xbap in ElementHost?

    Hello, can i set a *.xbap application as child for the "ElementHost" Control I want present a xbap Application in Windows.Forms. Thanks Thorsten Hi Thorsten, If my remarks have answered you're question, could you please mark my response with "Mark as Answer" so that the rest of the community knows that this thread has been resolved Thank you, Chad Campbell ...Show All

  • Visual C# Graying out Textbox

    Hi there, Is there a way to gray out a textbox whilst also rendering it unselectable I've only managed to make the textbox invisible which is a bit too much. I'm trying to use radiobuttons and gray out the textboxes that aren't tied to a selected radio button. Thanks in advance The standard way to disable a control is to set the Enabled property to false. This makes the control grayed out and unselectable. Also please post questions related to WinForms in the Windows Forms. Please reserve the C# forum for questions specifically related to the language. Thanks. Michael Taylor - 8/1/06 ...Show All

  • .NET Development Enterprise Library 2.0 on Vista?

    Hi! Is there anyone who can confirm if the "Enterprise Library 2.0 January 2006" is supposed to install on Vista RTM or not When I try installing it on my development laptop running Vista Ultimate RTM I get an "Installation ended prematurely because of an error" and the Event Log says: Windows Installer installed the product. Product Name: Enterprise Library for .NET Framework 2.0 - January 2006. Product Version: 2.0.23366.0. Product Language: 1033. Installation success or error status: 1603. And: Product: Enterprise Library for .NET Framework 2.0 - January 2006 -- Installation operation failed. Is that the expected bahaviour on Vista I did try disabling the UAC and also "Run as administrator&q ...Show All

  • Visual Studio 2008 (Pre-release) Unable to populate WPF Extender Control correctly....

    I have populated a observableCollection with some information... I have checked this information while debugging and it is populated correctly. Then in the WPF application I have created an extender control and bound it to the observable collection: <Expander Width="Auto" Height="Auto" x:Name="Expander" Content="{Binding PhotoSets, Mode=Default, Source={StaticResource PhotoSetCollectionDS}}" ContentTemplate="{DynamicResource PhotoSetsTemplate1}" Header="Sets"/> The PhotoSetsTemplate1 is defined as follows: <DataTemplate x:Key="PhotoSetsTemplate"> <ListBox Name="PhotoSetsListBox"> <ListBox.ItemsPanel> <ItemsPanelTemp ...Show All

  • .NET Development Parsing e-mail/mime messages via System.Net.*?

    Hi everyone, hope you all had a good Christmas (or other holidays you might celebrate). Anyway, to get to the point, let's say I have the following data (in a plain string object). Is there a default way to parse all this data (especially the "magic" things like the Base64 encoded data, subject, etc.) I've looked around quite a bit, but haven't found a System.Net.* class yet that can do this (via for example a .Parse() method)... If not, do you know if there is a third-party library that can do this elegantly Or would I need to parse all this mumbo by myself Thanks. X-Message-Info: cwRBnLifKNE8dVZlNj6AiX8142B67OTjG9BFMLMyzuui1H4Xx7m3NQ== Received: from OIM-SSI02.phx.gbl ([65.54.237.206]) by oim1-f1.hotmail.com wi ...Show All

  • SQL Server MSSQL 2005 Clustering setup

    Hi all, I am new in clustering setup and I have a MSSQL2005 (Enterprise edition SP1 and Win2003 Enterprise edition) standalone production server and it will be setup with clustering and SAN. How can I setup the clustering What are the steps I have a testing machine to setup new sql clustering which is working fine. I wonder how to setup from a standalone server. Kindly advise. Thanks in advance Stephanie - I recommend referencing Books on Line: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/30e06a7d-75e9-44e2-bca3-b3b0c4a33f61.htm there are great details there that should cover your various questions/concerns. If not respond with specific questions to this thread. AWAL ...Show All

  • Visual Studio 2008 (Pre-release) Definition of PrimarySelectionAdornerProvider

    Hi, I have read the article at http://blogs.msdn.com/subhagpo/archive/2006/06/15/633663.aspx and have take a look at PrimarySelectionAdornerProvider and the Extension but I do not find where this class are defined. I have installed the Cider June ctp with VS 2005. What is the assembly to reference and the namespace for use this classes -- Andrea I have worked with adorners way back - in February! - and I would like to change to the Cider methodology as described in recent blogs. I work in VB and I am having some problems: I worked out that the Extension attribute is - <Extension( GetType (SliderAdornerProvider))> Can you confirm that this is correct please A blog state ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Moving raw data through the content pipeline...

    I'm probably just not looking hard enough, but... How do I get raw data through the content pipe and onto the 360 in a format I can just do a File.Open on All of the data processing I need is already being done offline so I don't need the content pipeline to do anything other than copying the file across - yet, because it's not a registered content pipeline format, it just sits there and gets ignored when I add it to my project... Help Thanks for the reply. I somehow got mixed up thinking the content pipeline was the only way to get data up to the xbox. One more quick question: I added a test file and it went up OK but when I deleted it from the output directory on my PC and hit deploy I didn't see it ...Show All

©2008 Software Development Network