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

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

Indraneel

Member List

jcarranza
Avia
KRS India
James Newman
AllenD
rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Brad Pitcher
PDACSKIVE
Peca
Seraph_78
TPM01
SabariRajan
supra
meher666
FiLCoN
Fredrik Melin
Ruski
Olivier B.
NTx Beta
Rudolfh Bantim
Only Title

Indraneel's Q&A profile

  • Windows Forms TextBox text cursor location

    This seems like a silly question... I have a TextBox. I update the text, atb.Text = "new string". The text cursor is then automatically moved to the beginning of the text box, but i want the cursor at the end of the string so I can continue adding to it. How do I control where the text cursor is positioned Thanks. With the SelectionStart property of the TextBox: this .textBox1.Text = "1234567890" ; this .textBox1.SelectionStart = this .textBox1.Text.Length; This would set the cursor at the end of the text. ...Show All

  • Windows Forms Open picture fullscreen

    Hi! I want to open a picture fullscreen from my Winforms application. I've tried to maximise my application window, and removing all the controls from the window as well as the borders. Then I set the picture I want to display as the background of the window. While it almost works(the taskbar is still shown), I'm sure there are better ways. Any hints on how I should do it would be appreciated. Vidar You;re in the right track. You need size your app so that the non-client area is outside the screen. That's how you do a 'full screen' app. ...Show All

  • Visual Studio how to find common script folder

      Accessing common build scripts,   We have a couple projects those are checked into source control, generally people use vs.net to do development and build.   I want to enable use of msbuild along with that I want to simplify project files so that it imports common properties. It will enable future changes esier.   Issue is how I find the common script folder which in build sub folder under root source folder (which may be different for different users), I don’t want to declare it in env because user may have more than one .   Any solution how can I traverse part folders to import a commo ...Show All

  • Visual Studio Team System Upgrade problem : "TFS sql server exists and their schema doesn't match..."

    Hi upon trying to upgrade to RC I encountered a problem : "TFS sql server exists and their schema doesn't match the version expected by setup" how do I workaround it all the upgrade steps went fine until this one.... 10x, guy Hi, Im'getting exact same error while upgrading from beta3 refresh to RTM. How do i update the Databases. I don't see any steps invloving that in the upgrade User guide. Thanks, ...Show All

  • Visual Studio 2008 (Pre-release) "yield enumerate"...

    (Slightly off-topic, but it at least deals with enumerations.) Lately, I've found myself using the following pattern: public IEnumerable<T> Foo(IEnumerable<T> values, IEnumerable<T> moreValues) {     foreach (T t in values)    {       yield return t;    }     foreach (T t in moreValues)    {       yield return t;    }     // more yielding }   For example, if I want to maintain the sanctity of values, but catenate another set of values (checksums, e ...Show All

  • Visual Studio Team System Search Source Control for file names

    Hi, maybe I dont see the wood for the trees. But is there any possibilty to search for a file name in source control I try to use Edit->Find and Replace->Quick find. I search for a file which is definitely a part of my project. But I get: "the following specified text was not found". I tried also "Find in Files" but get: Find all "WorkspaceMapping.xml", Subfolders, Find Results 1, "Current Project", "" Matching lines: 0 Matching files: 0 Total files searched: 11 Any clues Regards DDressel Thanks Martin, not nice, but usefull. ...Show All

  • Visual Studio Express Editions About Licensing

    Can I use VWD in a production environment even for business purposes I haven't been able to find any text about this. Thanks Feel free to use Visual Studio 2005 Express Editions for any commercial use... For more please visit Express Editions FAQ : General-4:Can I use Express Editions for commercial use Yes, there are no licensing restrictions for applications built using the Express Editions. ...Show All

  • Visual Studio Exclude from Source Control

    In VS 2005/VSS 0.0d The option to Exclude xxxx from Source Control is not available to me for any files in a web site project. Which would be desirable as for example the web.config I use is not the same as for other team members, and also for dll references in the bin folder of the web project. Exclude from source control is not supported for web projects. Dll references in bin folder should be automatically excluded. Search the forum for "exclude", the issue has been discussed before in a couple of theads like  http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=106422&SiteID=1 ...Show All

  • Visual Studio Tools for Office Creating xll files (excel library files) in visual c++ 2005 express

    Hey. I know this forum isn't specific to excel, but I haven't gotten any responses from the excel.programming newsgroup so I thought I would try here. I am trying to create xll files for excel so I can use my existing c++ code to do custom functions through excel. I have a book which explains the basic ideas, but it says to include xlcall.h and xlcall32.lib from the excel 97 sdk. These files won't compile in visual c++ 2005 express. i was wondering if anyone knew where to locate equivalent files which would compile in visual studio 2005 express, or any good resources on using visual c++ 2005 express to create custom functions for excel using ...Show All

  • .NET Development Is it possible to force loading all assemblies before they are used?

    Hello I'm using web services provided by a cassini derivate. The web service calls are quite slowly because used assembly are not loaded as long as the provided classes are not used. Is there any way to force that all assemblies on which my application depends are loaded into memory at the application start Caution: The provided web services are in own AppDomains. If I may force preloading all assemblies will the assemblies of the provided web services also be loaded Thanks a lot for helpful answers Best regards Hurz If you are working on .NET 1.1, note that there is a caching issue for ASP.NET that was sol ...Show All

  • Visual C++ Where is the VC6's memory view dialog in VS 2005?

    In VC6, we can view memory content at any given address by a memory dialog. But now in VS 2005, how can I view a specific address's memory content ...Show All

  • Windows Forms Panic button

    I'm working with a routine that iterates through a collection of ListView Items and if they pass certain criteria they are cloned for another operation later in the code - this is done via a For...Loop. I'm working with thousands of ListView Items and I need a way to stop the operation midstream (if the user wishes). Can I implement some kind  ...Show All

  • Windows Forms Strange COM error when I am not doing any COM

    While debugging my app, I get the following message when it starts up. I'm not doing any COM that I know of, so I am totally lost on this issue. Can anyone interpret or give me a hint "Managed Debugging Assistant 'ContextSwitchDeadlock' has detected a problem in 'C:\David\Visual Studio Projects\Basecamp .NET\Ceoimage.Basecamp.MainMenu\bin\Debug\ceoimageNG.vshost.exe'. Additional Information: The CLR has been unable to transition from COM context 0x1a3b30 to COM context 0x1a3ca0 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait or processing a very long running operatio ...Show All

  • Visual C++ Writing all listview elements to file

    hi. i am using ListView and i need to save all list view elements to file :S is there any way to save whole ListView i am writeing to list this way: Meritve is the name of listView this->StatiskitaNalisti= gcnew ListViewItem(this->EditImeRobota->Text->ToString()); this->StatiskitaNalisti->SubItems->Add("NE DELA"); this->StatiskitaNalisti->SubItems->Add(this->VCasi->PovprecenSpeed.ToString()); this->StatiskitaNalisti->SubItems->Add(this->VCasi->MaxSpeed.ToString()); this->StatiskitaNalisti->SubItems->Add(this->label1->Text->ToString()); this->StatiskitaNalisti-&g ...Show All

  • .NET Development getting an array back from a sp

    Ok, development base: Visual Studio 2005 SQL 2005 c# Question: I have an n-tier project, where I need to return an array of userroles. I have the following: protected CapitalIncentives.Users.UserRoles currentUserRoles = new CapitalIncentives.Users.UserRoles(); userManagement.GetRolesForUser(currentUser.UserID, out currentUserRoles); // This is the code that is referenced above. public struct UserRoles { public int userRoleId; public int UserRole { get { return userRoleId; } } //// This is my business logic code: public void GetRolesForUser(int userID, out UserRoles[] userRoles) { U ...Show All

©2008 Software Development Network