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

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

Shishir21370

Member List

Bob Krauth
María E
Chamitha
Pamish
Xiao Feng
dzeaman
JoeDeVirs
Bramx
Falconetti
MIxsynth
LucaTarrini
Gary Ng
K-ERoL-K
garyf
ScottThomas
LegacyOfHerot
Gonzalo123
Need Help
Mablao
Drew Speedie
Only Title

Shishir21370's Q&A profile

  • Visual Basic How to gracefully end a VB2005 program

    I'm in the debug stages of my first VB2005 app.  I added an exit button.  I click the button, the app continues to run. hmmm The Exit Button Logic was simply On_Click End I was in a loop, so I decided to set a boolean variable called Exit_Button_Pressed Then I check for it's status in the middle of the loop: If Exit_Key_Pressed = True Then    Me .Close()    End End If The only way I can kill this app is to press the X in the upper right-hand corner of the form.  Which results in an Error. The program is not responding with an End Now Button. Apparently the ProgramName.vsh ...Show All

  • Smart Device Development Windows Mobile 2005 and Notification Ballons

    Hi, I am porting an application designed for Pocket PC 2002 and 2003 to run on a 2005 device (A symbol MC70 engineering sample). At present my largest issue is to do with notifications displayed via the SHNotificationAdd api. On earlier versions of Pocket PC these notifications would take the form of a popup ballon anchored to the top of the screen. On the new Windows Mobile 2005 device the same code is causing a notification anchored to the bottom of the screen just above the menubar. I notice that many (but not all) of the OS provided notifications such as low battery warnings have also moved to be anchored to the bottom of the screen (i.e ...Show All

  • Visual Studio Please recommend me to build report in visual c# express for window application

    I am making window based application. I am using visual C# Express for window application. I would like to make good looking reports. Please recommend me whether there are any free report designer control or visual C# express extension to make report work the same crystal report...   Best regards, Hi Simba, Try going to this thread for solutions on report building on C#. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=182261&SiteID=1 Hope that helps. ...Show All

  • Visual Studio Express Editions Missing x86 MFC in PlatformSDK

    I installed VC++ Express Beta 2 yesterday, then the PlatformSDK 5.2.3790.1830.15.PlatformSDK_Svr2003SP1_rtm.img and i could not find any MFC libs for the x86!  The MFC libs are only in the IA64 and AMD64 folders. Has anyone else had this problem Dave Kaplan, your posts were moved to the DirectX forum . ...Show All

  • Visual Studio Team System What's new in June CTP of VS 2005?

    Where can I find out what's new in the June CTP of Whidbey so that I know whether it is worth downloading and installing compared with Beta 2 There's nothing on the VS2005 front page and the reference on MSDN downloads just says that it isn't as stable as a Beta. Gee, thanks. Now why couldn't that have been in the release notes last month That "etc" feature sounds really cool and I'd like to test it out. :-) I read your post and Ajay's post and still don't understand why you're posting them monthly. If you don't tell us explicitly what's new, what's fixed, and what's broken, what's the point How would we kn ...Show All

  • Visual Studio Team System hatteras error in event-log

    Another error that gets generated every couple of minutes: Event Type: Error Event Source: VSTF Source Code Control Event Category: None Event ID: 3000 Date:  11.07.2005 Time:  13:25:41 User:  N/A Computer: T07 Description: An exception has occurred in a Team Foundation component. Technical Information (for the administrative staff): Date (UTC): 11.07.2005 11:25:41 Machine: T07 Application Domain: /LM/W3SVC/4/Root/SCC-2-127655050714402183 Assembly: Microsoft.VisualStudio.Hatteras.Server, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Process Details:   Process Nam ...Show All

  • Windows Forms Looks cool

    I downloaded the terrarium and all I can say is that it looks cool. This is because I'm behind a NAT protected network so I can't get it working, all I can see is the cool starting screen. Maybe I'll try it at home on the weekend cuz I really want to see it working. I've seen the FAQ. The problem is that I'm the&nb ...Show All

  • Visual C++ I've got compiling error C2039: 'vector' : is not a member of 'std'

    Hi everyone: I got the above error. How can I correct it Thanks in advance. Ke   kezhu wrote: Hi everyone: I got the above error. How can I correct it Thanks in advance. Ke Did you '#include <vector>' ...Show All

  • SQL Server substring

    i have a column that has "Full name" of an individual. I want to create a new column with just the first name. How do i populate this column with just the first name...ie it just takes the string until the space from the "full name" column. i figured out this but any better options are appreciated. substring (FullName , 1 , PATINDEX ( '% %' , FullName )) anyone knows an alternate please let me know. thanks ...Show All

  • Visual C++ Troubleshooting name mangling issues

    Has a name decoration spec been published for VC2005 I have an undefined external __imp_ _S_next_size@ $_Stl_prime@_N@priv@std@@SGII@Z which nearly matches __imp_ _S_next_size@ $_Stl_prime@_N@priv@std@@SAII@Z in an import lib. Presumably a major compiler or linker option is out of sync, but without a definition of SGII vs. SAII it's a guessing game. Thanks for any help, Gary Personally I prefer to use extern "C" for exports since C doesn't use name mangling. Compiler inspecific and much simpler. ...Show All

  • Microsoft ISV Community Center Forums Installing VBA6.0 on XP

    Good morning and hello.   Ages ago I received a SDK 6.1 containing the latest release of VBA 6.0. I happily and without problem installed this on my laptop running Windows ME and all was well. I have since updated my laptop to one running Windows XP Home and when I went to install the SDK I was confronted with an error stating that "....You first must install Microsoft Visual Basic 6.0 Service Pack 3 to install the VBA Integration Wizard...."   I searched the microsoft web site and found a "service pack 6" so I downloaded all 24M on my 56k line. The files extracted correctly to the folder I selecte ...Show All

  • Visual C# How prevent code from firing

    I have a winform that when I created the standard toolbar was added automatically by VS. I have some special code I am processing when I click on plus icon to add a record. I am experiencing a problem but I think it is because the code that would normally fire when you select the + icon is firing in addition to my own code. How do I turn this off so just my own code fires It sounds like you have two event handlers added to the button. If your button is named btnOne search your project for any code like: btnOne.Clicked += You'll probably find two, one pointing to your code, the other to the ...Show All

  • Visual Studio Addin for Visual studio 6.0(msdev.exe)

    Hello, I am trying to develop an addin for Visual studio 6.0(msdev.exe). I am using DevStudio Add in Wizard for it. It provided me default code for handling application events and debugger events. But my objective is to handle copy,cut,paste ,print commands in editor.These command are not the part of IApplication events or IDebugger events. Could anybody please help me in finding the best possible solution for this. As per my understanding Cut,Copy,Paste methods are part of ITextselection interface ,which i try to implement in my class,but unable to handle those events as there is no proper event passing. Thanks and regards, Ruhina. ...Show All

  • Windows Forms OFFICIAL SURVEY about your usage of the .NET Framework documentation!

    Hello -   I'm conducting an official survey about your usage of the .NET Framework documentation. In particular, what programming languages do you filter on. Your answers will be used to help improve the documentation viewing experience. When reading the survey, remember that the concept of filtering on a programming language is talking about viewing the documentation wit ...Show All

  • Visual C++ Help Needed

    good morning 4 every body i have some exercises in c++ an d i need their solutions urgenyly plz. help me within one day or little more i will appreciate that for u. by using normal main() not functions ----------- Sample Input (contents of foodin.txt ) : 32 35 33 31 28 31 24 34 33 26 38 32 Sample Output (contents of foodout.txt ) : Week1 ===== Week2 ===== Week3 ===== Week4 ===== Total ==== Employee1 | 32 35 33 31 131 ...Show All

©2008 Software Development Network