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

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

Sourajit

Member List

Anthony Yott
donelder
Stefan00
Danieletor
Venkatesan.Loganadhan
Miljac
Attila Molnar
dead man
Luke Zhang - MSFT
Shaneisasuper
Michael Nordkvist
Jonathan R
skier17
84B0CE60-A907-43B6-B31D-653F2FBE
ErnestT_MS
Muhammad Waqas Bashir
Torben B Haagh
mithusur
comparch
aaronaddams
Only Title

Sourajit's Q&A profile

  • Windows Forms list boxes more HELP needed.

    I need a way of making list boxes center the values displayed within the list.  I also need to find a way of making them unselectable without setting enabled to false or SelectionMode to None because the form won't load the way I trye ...Show All

  • Windows Forms DataGridView Survey

    Hello WinForms users, My team, which owns Windows Forms, would like to gather some information about the new DataGridView control that shipped in the .NET Framework 2.0. At the high level, we would like to figure out: - which features of the grid you are using - which features you wish were available - what works well, what does not - what’s the typical size of your grid Any feed ...Show All

  • Visual C++ RC2147 : SUBLANGUAGE ID not a number error in VS 2005 Pro

    I have found a serious problem with the Visual Studio 2005 Professional resource editor. I am based in the UK (this is crucial), and when I add a new resource to an MFC project, it is assigned the English (United Kingdom) language by default. Unfortunately, the following line is added to the .rc file, which will not compile: LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_NEUTRAL The resource compiler will produce the following: error RC2147 : SUBLANG ...Show All

  • .NET Development JIT Compilation optimizations

    This is a bit of an overkill question I know but it was bugging me.... I just read that the JIT compiler runs a one-time-only optimization on installation based up various factors of the machine is on .. cpu type, memory, OS etc. If, for example, I install a program written in a .Net language and then add some more memory to the machine, would it be best practice to uninstall the program and re-install it so that the JIT compiler takes int ...Show All

  • .NET Development FTP & HTTP Classe Help

    Hi folks, I'm interested in having an app upload files via FTP and also receiving web-page files via HTTP. I'm just wondering if someone can point me toward the classes/methods that are needed to perform these tasks Thanks, Zero Hi, you can use System.Net.FtpWebRequest and System.Net.HttpWebRequest classes. Good luck --mc ...Show All

  • .NET Development run servers localy

    how can i run 2 servers localy in .net remoting i tried register two different ports in the server side but i got an exception. do i need to create 2 different projects , each one for a server thanks in advanced im finding it a little bit difficult to put it in a config...maybe you can help me the problem is that i wrote- Type theType=new TasksManagement().GetType();  RemotingConfiguration.RegisterWellKno ...Show All

  • Visual Studio Express Editions Static Libraries in VS C++ 2005 Express

    I have been able to compile some static libraries using CMake (cross platform make) and VS C++ 2005 Express. I'm new to the Windows environment and need someone to help me figure out how to use these lib files (in C:\Compiled\VTK\bin\release) in a VS C++ 2005 Express application. The .h files are in the source tree on C:\VTK\" various sub folders " and I have done an out of source build to C:\Compiled\VTK\bin\release where the .lib files reside. ...Show All

  • Visual Basic SetPrinter

    I am trying to use SetPrinter to set a printer offline/pause/resume and its throwing an error 87 from the Marshal.GetLastWin32Error(). I am using the following declaration for SetPrinter <DllImport("WinSpool.drv", SetLastError:= True )> _ Public Function SetPrinter( ByVal hPrinter As Int64, ByVal Level As Long , _ ByRef buffer As Long , ByVal Command As Long ) As Boolean End Function   and following call If Not Se ...Show All

  • Visual Studio Express Editions Need help with for and pictureboxes

    I'm making a map editor to make maps Every tile is a picurebox. In the menu there is a command "New" wich will load all the default pics into the picturebozes, so you can make a new map i created this for statement dim i as integer For i = 0 To 391 PictureBox(i).image = My.Resources.Image_default Next i But this doesn't work. There is something wrong with the PictureBox(i).image Please help me. I'm using vb2005 Thanks in advance, Radexxio ...Show All

  • .NET Development how to post a form in asp.net to another aspx page

    Hi, can any one suggest me how to post form date into another aspx page in asp.net development Hi! Thanks for asking!  I'm a member of the ASP.NET team, and was just popping over here to see what was going on.  The best place to ask ASP.NET questions is over on the ASP.NET forums at http://www.asp.net/welcome.aspx tabindex=1&tabid=39 ! HTH, PEte ...Show All

  • Visual Studio Express Editions C# equivalent of C++ extraction operator (>>)

    I have thousands of files that contain scientific data arranged in space delimited number pairs like this: 500.0 895644.024 500.1 45215.325 500.2 145782.365 etc... With C++, I easily access this information using the extraction operator >>, like this: double abundance; double mass; while (!sourceFile.eof()) { sourceFile >> mass; sourceFile >> abundance; ... } The question is, is there an equi ...Show All

  • Visual Basic Save\Load values as text file

    Hello In VB6, I was able to save and load values as text file, it saves them like this form: "V1","V2","V3" I was using this code: Dim A As String, B As String, Op Op = FreeFile A = "Value1": B = "Value2" Open "D:\File.txt" For Output As Op Write #Op, A, B Close Op How can I do it in VB2005 Thanks & Regards The following code ...Show All

  • Visual Studio Page Number

    Hi All, I doing the report which have grouping by customer (example), assume the report after grouping with the total pages 8 and will be page break by customer. In my page header, i have to display the total pages and current pages by grouping eg "Page 1 of 2" Mean for the first grouping, its use up to 6 pages then the page header will display "Page 1 of 6" in first page, "Page 2 of 6" in second page and s ...Show All

  • Visual Studio 2008 (Pre-release) What causes CommandBinding.CanExecute delegate to be invoked ?

    I have a button that executes a command when it's clicked. I have a CommandBinding instance associated to that command, and also methods to: * Allow/disallow execution * Preview execution * Handle execution All 3 are being called. It's obvious when the last 2 will be called but not the first one. Depending on a specific application state, my CanExecute method will return true or false. When the application starts it returns false which makes the ...Show All

  • Visual Studio Team System use Team Build on a website

    How to use Team Build with a website with Project references within the same solution The project referenced assemblies are not copied over to the bin directory and is resulting in unable to find namespace or assembly error See post http://forums.microsoft.com/msdn/ShowPost.aspx PostID=10588  the issue seem to be in MSBuild Task not with Team Build, thanks ... ...Show All

©2008 Software Development Network

powered by phorum