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

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

xzb6np

Member List

Allan E
Find in Forums
saynotoms
jaguiargn
ludlowk1
MikeL.2k
quix ltd
Jeff Flesher
Alex Gongora
sp00k113
moontube
ttawin
Brian from Saratoga NY
JeromeGab
Peter N
nelson rodriguez
Moshik
Payback
vinod singh
ShunterAlhena
Only Title

xzb6np's Q&A profile

  • SQL Server Datetime parameters

    Hello, I have a date time parameters, Users can pickup a date using the calendar control but he can also change the date and also add time. When a user type wrong date or time we got error message only when he try to run the report, can I change this behavior ...Show All

  • Visual C# Calculator

    I want to create a simple calculator... I need one text box, and some buttons; the user enter a number to textbox, and then when user press the + , user can write the second number, and when the user click the = the result will appear in same textbox... How can I do that What is the wrong with this code ||=> string no1 = textBox1.Text; textBox1.Text = " " ; string no2 = textBox1.Text; double a = Convert .ToDouble(no1); double b = Convert .ToDouble(no2); textBox1.Text = c.ToString(); perhaps you need a double c = a + b; right after you declare and give a and b a value Also you can use D ...Show All

  • Smart Device Development Standalone Device Emulator 1.0 - additional images

    Hello, I have just downloaded the Device Emulator 1.0 (v1emulator.zip) and the image pack for Windows Mobile 5.0 with MSFP (efp.msi) from the site at: http://msdn.microsoft.com/mobility/downloads/Emulator/default.aspx Everything installed correctly and runs fine, but I'm unable to find the images for Windows Mobile 2003 and Windows Mobile 2003 SE which are listed at the webpage linked above. The link in that page reads: Windows Mobile 2003 Emulator Images for Device Emulator 1.0 but it points to the same page with which to download the v1emulator.zip and the efp.msi file. From what I can gather, the Standalone Device Emulator CTP version ...Show All

  • Visual Studio .cs file for crystal report is not generated

    I am using vs.net 2005 crystal report. When I created a crystal report, the .cs file is not generated. therefore, I can not use the strong type crystal report. could anyboy tell me what am I missing I tried this a few days ago, I did see the .cs file created once. But now, I just can't get the .cs file showup anymore. please help! By default the CS file is hidden. Try selecting the report in solution explorer and clicking the "show all files" button. Forgive me if you've tried it already, I just wanted to cover all the bases. ...Show All

  • Visual C++ One Static Library for all kinds of C Runtime

    Hello, We have developed a library for other C++ programmers which we would like to deliver as a static library w/ VC++.Net 2003. I have a question though: Assuming that we don't know which C runtime the users would like to use (Single threaded, Multithreaded etc.), is it possible to build one static library which fits all Thanks, Devrim. Unfortunately the answer is no. You have to recommend consumers of your library what CRT should be linked in. Using /MD usually found as the best solution. Thanks, Nikola VC++ ...Show All

  • Microsoft ISV Community Center Forums Sharepoint 2007 - MOSS 2007 - Service error

    Hi, When I reboot my server office sharepoint server 2007, I have an error. Type de l'evenement : Erreur Source de l'evenement : Windows SharePoint Services 3 Categorie de l'evenement : Minuteur ID de l'evenement : 6398 Description : The Execute method of job definition Microsoft.Office.Server.Administration.ConfigurationCheckerJob (ID d022abef-0f93-4436-beb4-8ef5938f9aad) threw an exception. More information is included below. Une exception a ete levee par la cible d'un appel. Pour plus d'informations, consultez le centre Aide et support a l'adresse http://go.microsoft.com/fwlink/events.asp . ...Show All

  • Visual Studio Babel merge modules

    Have anyone tried to use babel merge module to install this package I am experiencing some problems. I receive this error: Package 'Babel Language Package' has failed to load properly Yes, this is a problem with the latest VS SDK. We expect to have this issue fixed with the Oct CTP, due at the end of the month. ...Show All

  • Visual Studio Team System Installing Test Agent and Controller

    I have the TFS Beta 3 Refresh and the trial of VSTS. I'm looking for the latest and greatest Load Test Controller and Agent, but I can't find them on either of these images. The only instance of the controller/agent I can find are on the en_vs_2005_test_load_agent_beta2.iso. Is this the latest version of the apps and will they work with Beta3 TFS/vs 2005 Thanks I'm informed the controller & agent aren't available in the trial versions ...Show All

  • Windows Forms Communication between two user controls ?

    I've made 2 very very simple user controls named uc1 and uc2, I've put then on my main Windows form, but how can we for example :: displaying the text from the textbox uin uc1 on the label in uc2  Sorry for my bad english, here is a screenshot :  http://dyt4.free.fr/shot1.jpg Thanks for your help I don't know why you posted THAT ...Show All

  • Software Development for Windows Vista Looping (repeating) a video file

    Please bear with me in my description, because I am using DSPack in Delphi.... I am working on an application that overlays text onto a video file, and I'm having a difficult time looping (repeating) the video file seamlessly. I've tried everything I know to try when responding to the EC_COMPLETE event, but I can't get it to loop back to the beginning unless I first call IGraphBuilder.RenderFile again, which produces an unacceptable gap in the video. The other method I have tried is to use a timer to set IMediaSeeking.SetPositions to 0 during the last 1/2 second of the video. This works but is certainly not the ideal solution. ...Show All

  • Visual Basic User settings overwritten on reinstall/new install?

    Will the user settings created with my.settings be overwritten when I reinstall or install a newer version Or will they stay the same You can upgrade your user settings by calling My.Settings.Upgrade. This is done automatically if the application is click-once deployed. If the application is not click-once deployed you can use the technique described by Raghavendra in his excellent Client Configuration FAQ  to figure out when you need to call Upgrade. There were a couple of minor changes to exactly how the location for the file containing the user settings were computed that happened fairly close to th ...Show All

  • Visual Basic ToolStripDropDownButton item.

    Well i have a toolstrip1 at the top of my app, i then have a ToolStripDropDownButton1 on it which i have named menu On the menu there are a couple of catagorys: Most useful, less useful etc I want them to be able to there own programs to the catagorys, so i added a button when this button is clicked it brings up the openfiledialog, here is the code i used for that: Dim myStream As IO.Stream Dim openFileDialog1 As New OpenFileDialog() openFileDialog1.InitialDirectory = "c:\" openFileDialog1.Filter = "exe files (*.exe)|*.exe" openFileDialog1.FilterIndex = 2 openFileDialog1.RestoreDirectory = True If openFil ...Show All

  • Visual Basic Refactor won't install

    I tried to install Refactor! for Visual Basic 2005 Beta 2: http://msdn.microsoft.com/vbasic/downloads/2005/tools/refactor/ But I get an error during setup saying that it could not find Visual Studio 2005.  Does Refactor support the Express products Hi, yes this is one of the known limitations of the Express editions of Visual Studio.  Unfortunately Refactor! can not integrate with your version of Visual Studio because the Express editions do not support add-ons, and simply do not implement the VSIP inteface that we use to integrate into Visual Studio.  This is a shame because we would love ...Show All

  • Visual C++ scripting method AddToolSettings broken in visual Studio 6.0 ????

    There is a bug report on this:   Bug ID FDBK45740 I have been trying to write some scripts to automate a build process in VisualStudio 6.0. The build process builds a number of projects. Some of these projects are just library builds, some of them are builds which result in executable code (.xll, .dll, .exe) I need to be able to change the target directory for the various builds. The scripting method to do this would seem to be Projects[ i ].Configurations[j].AddToolSettings (and RemoveToolSettings, etc.) This works fine for the compile settings, i.e. for the "tool" "cl.exe" (as per the documentation). It also works fine fo ...Show All

  • Visual Studio Tools for Office I cannot get Add-in object instance in Outlook VBScript

    Hi, I have developed with VSTO 2005 an Outlook COM Add-in and I want to use some functions of Add-in. But I get error messeages from Outlook and I cannot reache the functions or objects of Addin. Under my VSTO Project I have two files : frmCalendar (Windows form) and ThisApplication.vb : Imports Microsoft.Office.Core Imports Microsoft.Office.Interop.Outlook Imports Extensibility Imports System.Runtime.InteropServices public class ThisApplication Private Sub ThisApplication_Startup(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Startup End Sub Private Sub ThisApplication_Sh ...Show All

©2008 Software Development Network