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

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

sbadams

Member List

Greg Eisenberg
tjokiest
Tirrell
yoyop
AaronSchurg
IRB Technician
Hi_GC
David Weller - MSFT
Mammoth
Sasanka Pinidiya
Gary W
Ronald6w
morell
Tablet
EdMellor
Danrikofer
Emacs
Robert H
zfjaj
haiaw
Only Title

sbadams's Q&A profile

  • Visual Studio Express Editions stacking text in a text box

    hi in my form i have two text boxes, the first is where you enter the message and the second is where the message is displayed but i want it so when you send a new message it doesn't erase the las one out of the display box and stacks it oh well that explains it i was using TextBox2.Text = TextBox2.Text + TextBox1.Text, when i do it it puts the new message on the same line, how do i move it onto the next ...Show All

  • Smart Device Development Adding a new target device to the VS2005 IDE?

    How can I add a new target device (a custom WinCE Emulator OS) that I built with Platform Builder to the target device dropdown in visual studio In short, I built a Win CE OS using Platform Builder. Now I want to debug an application on this device (it's an emulator build) using the VS 2005 IDE in which I built the program. I can't figure out how to do this Same procedure works for RTM as well. On my PC files are located here: "%ProgramFiles%\Common Files\Microsoft Shared\CoreCon\1.0\Target" That might be a custom location, if you don't have this folder please search for one of thes ...Show All

  • SQL Server Error: Multiple-step OLE DB operation generated errors.

    [Destination - Archive-tblData_Employers [70]] Error: An OLE DB error has occurred. Error code: 0x80040E21. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E21 Description: "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.". [Destination - Archive-tblData_Employers [70]] Error: Cannot create an OLE DB accessor. Verify that the column metadata is valid. [DTS.Pipeline] Error: component "Destination - Archive-tblData_Employers" (70) failed the pre-execute phase and returned error code 0xC0202025. I deleted ...Show All

  • .NET Development Reflection or CAS trouble

    I have built an ASP.Net 1.1 application that utilizes reflection to load "Plugins" at runtime. The code works if you are a local administrator to the web server, but fails for anyone else. The part where it's failing is somewhere in the method that loads the assemblies. I have tried loading the assemblies in 3 different ways now and continue to get an error when it's not an administrator. I'm guessing that the problem lies within permissions or CAS, but I can find where. CAn anyone point me in the right direction Here is a snippet from the method: private void LoadPlugins() { ad = AppDomain.CreateDomain("libLoad ...Show All

  • Visual Basic What good is this?

    Dim PrgrssBr as New ProgressBar ... and what can you do with it   Thanks. Yeah, only time consuming tasks... (progress bar) some tasks are so fast you get the results as soon as you release the button. ...Show All

  • Visual Basic Disabling the close button of a windows application has a problem

    When I tried to disable the close button of my Windows Application program using an unmanaged code, this red close button will appear again if I maximized, minimized it , or using Win(key) + D (and again) I don't know why... I can delete the Close menu item, but rather, I wanna disable it. So, if you please find the solution, thanks... Set the forms controlbox property to false...this will get rid of the minimize, maximize and close buttons in the upper right hand corner of the window HTH ...Show All

  • Visual C# Why can't I recast a generic list?

    I don't know if I am looking at this problem in a completely wrong way but I have the code listed below and would like to treat a generic list sometimes as List<Swatch> and sometimes as List<ColorSwatch>. I have many other types of swatches too - so I don't want to have to duplicate the common code. When I try and build the code I get errors telling me I cannot convert from type List<Swatch> to List<ColorSwatch> or vice-versa - the code in red. I have other routines which call the ColorSwatchFile read/write routines and want to receive the more specific ColorSwatch. Also if I were to pass down Swatch to the write r ...Show All

  • Visual Studio Team System windows sharepoint services error

    windows sharepoint services error " cannot create folder "_vti_pvt" wat doest it mean and how to slove this error Okay... so there are number of things that made me question what is going on here.  First, SPS is different from WSS.  Sharepoint Portal Service isn't supported.  I assume you mistyped that in the post above. Second, Team Foundation server should extend WSS for you.  You won't need to extend either the admin site or the default site.  You must however install with the Server Farm option Third, we are not sure about any questions on Sharepoint Portal Servic ...Show All

  • Visual Studio Team System Kostet Testversion (Language: GERMAN)

    Hi, wollte mir die Demoversion bestellen, da steht was von Rechnungsadresse. Kostet die Demovesion mfg HaseXXXXXL There is a trial version available here: http://msdn.microsoft.com/vstudio/products/trial/ Using AltaVista: Es gibt eine Probeversion, die hier vorhanden ist: http://msdn.microsoft.com/vstudio/products/trial/ There is also a localized German version that I'm sure is available in a trial version. Es gibt auch eine beschrankte deutsche Version, das ich bin vorhanden in einer Probeversion sicher bin. Ed. ...Show All

  • SQL Server HTTP access for standard Analysis Services Edition of SQL Server 2000 issue

    Hi, I am using standard edition of SQL server services, I would like to configure the OLAP Source for HTTP Access, but I understood it only support for enterprise edition. So how can I go for it or is there any another mechanism which is there to connect my cubes. I tried like below connection string in my local it works fine <add key="OLAPConnectionString" value="Provider=MSOLAP.2;Data Source=LocalPCName;Used id=userid;password=password;Initial Catalog=DBname;" /> datasource name I kept as my localpcname instead http://localhost/ But when I change the data ...Show All

  • Visual C# Compiling a native C DLL for use in VC# using DllImport

    Hi Group! I'm a C# newbie (real wet and raw) as well as a complete newbie to Microsoft OS programming. Normally I use native 'C' on Posix complient platforms - which I've been doing for many decades. Scruitinsed this BB for an answer but can't find anything close. Also burrowed around in Visual C# IDE for clues - none forthcoming. For reasons of speed and size I want to write a suite of routines in native 'C' and encapsulate them in an external module - presumably a DLL. Can someone please give me a pointer to how to get started in Microsoft products Can Visual C# IDE compile a native C routine (after all most C++ IDE's can) and what do I ha ...Show All

  • Windows Forms Message Box Displays Blank without a Message and Caption in the Control Name.

    I developed a window application and i displayed a message box it was not working properly. It displays in blank manner not showing the message and caption of controls in it is not displayed. Help me......... I used the following code: Msgbox("text to dispay",title) MessageBox.Show("text to display",title) ...Show All

  • .NET Development How to get a result from a query

    Hi there, I am studying VB for the very first time and in the project I am developing I need to check if the user that is trying to log in the database is a registered user. To do that I take the UserID and the Password from two textboxes: UserStr = Me .txtUserID.Text UserPass = Me .txtUserPassword.Text But I need to check this in the database. I already bond my datasource to the form and the following code it is suppose to check in the database if the user and the password are there. Me .CustomerIDDataSource.FilterExpression = UserStr And UserPass How can I get the result of that, I mean how can I know if the type ...Show All

  • Visual C# How to play sound from resources?

    I can play MySound.wav from my disk, using SoundPlayer media= new SoundPlayer (@"c:\MySound.wav"); media.Play(); But i want this sound was included to my program. I add it to resources. but SoundPlayer media= new SoundPlayer ( CsApp.Properties. Resources .MySound); media.Play(); doesn't work... I added tada.wav (X:\Windows\Media\tada.wav) to resources. This code I added to Form_Load event: Stream str = Properties.Resources.tada; SoundPlayer snd = new SoundPlayer(str); snd.Play(); ...Show All

  • Smart Device Development Strange problem ... form closes undeterministically

    Hi All, I would like to ask some of these problem (sorry in advance for quite a long question). If someone has any idea, I really appreciate it. :-) 1. What is the minimum memory requirement that should be reside in the system In Dell Axim, my system's WINDOW FORM (the application still working at the background as I can hear the sound) sometimes closes when the memory is being used til approximately 12 Mb. 2. The window form SOMETIMES closes (like first problem) when I display the second form using Show(), instead of ShowDialog(). Imagine, like a regular game program which has a loading screen, after finish loading, we would go to ...Show All

©2008 Software Development Network