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

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

Ami06

Member List

Myria
Randay
collide
frank stone
caldo_123
koolasa
Johnnie_RSA
Michael Faschinger
Michel
Goran M
Marian Luparu
JaLeo
Ricacho
Kyleruby1
Ken Curtiss
mmoo9154
olmich
HemaDevi
Waters162151
ktegels_DevelopMentor
Only Title

Ami06's Q&A profile

  • Visual Studio Express Editions Cannot Uninstall VISUAL C# EXPRESS

    Hello, how do I manually remove VISUAL C# EXPRESS 2005 The progress bar goes half way then nothing happens for 25 minutes. Asaf. ...Show All

  • Visual Studio Team System HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\InstalledSCCProviders?

    Since we are stuck using a multitude of SCM systems at least for a while, we use a utility called SwitchSCC that can easily switch among different SCC providers.  It uses this registry key: HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\InstalledSCCProviders But TF doesn't populate this reg key   Is this an oversight or just the TF is going to work [Continuing previous response...] The HKLM equivalent being the default value of the key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\SourceControlProviders ...Show All

  • .NET Development Problem inserting small date time in a sql server database

    Hi, I have a cell in a sql server database that is off datatype smalldatetime. I am trying to pass in the value of todays date in a sql insert command but I keep getting the error "The conversion of char data type to smalldatetime data type in an out-of-range smalldatetime value" Below is my code(C#) DateTime TodayDate = DateTime .Today; int Num = 1; string text = "Test" ; //To test that the insert works fine SqlDataSource1.SelectCommand = "INSERT INTO Weekly_DB (Gen_Desc,Date ) VALUES ('" + text + "', '" + TodayDate.ToShortDateString() + " ')" ; } Can any ...Show All

  • Visual Studio Creating A SubReport

    Can you point me in the direction of how to create and populate a SubReport Why does the footer not display at the bottom of the page You can see the VB version here: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=13691 ...Show All

  • SQL Server Help Using a Web Service as a Datasource

    I have a Web Service that I would like to use as a datasource for one of my reports.  I tried http://www.rdlcomponents.com/DTE/Default.aspx sm=a_a3  with no luck so far.  Thanks in advance Gerry BTW,, this is built into SQL 2005 Reporting Services. Brian Welcker Group Program Manager SQL Server Reporting Services This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • Smart Device Development Please help! VS 2005 smart device application unable to deploy

    I had a project built in VS 2003, and upgrade it to VS 2005 now. The build process is sucessful, but when I want to deploy it to my Wince 5.0 device via Ethernet, an error message shown: Description: Referenced package not found File: Device Connectivity Component Then I try to create a new project for testing the Ethernet connection, it works fine without any problem. Any hint or advice is welcome, because it takes me days with no progress. Thanks in advance. i made one smart device device appliaction in VS 2005 the build was sucessfull but it is unable to deploy error :system r ...Show All

  • Visual Studio Express Editions Visual Basic Express Download from Site - Can't Connect

    The Visual Basic setup exe can't connect to the site to download the 60 MB files. It tries 5 times and finally gives error that it cannot connect. Tried the BITS recommendation. I am using dial-up. ...Show All

  • Visual Studio 2008 (Pre-release) Problem on Hands-On Labs (Building XBAP with WPF)

    I am using the February CTP while doing the lab(Building XAML Browser Application with Windows Presentation Foundation) and encountered an error when publishing the application on my IIS. If I run it using my VS 2005, it just works fine but when I use IE to navigate to the URL ( http://localhost/XBox/XBox.xbap ) I get this Application Deployment Error - The application cannot be deployed. Any idea why I would appreciate your assistance on this. Can you please reply back with the full text of the deployment error Thanks, Karen ...Show All

  • Windows Forms Changing Parent Items From Child

    How can I change parent items such as menu items from a child First of all, the menu items aren't going to be hidden, right  They're disabled.  And, they will be disabled if there aren't any children. That's the point. You update the availability of the menu items each time you pull down the menu, so that if there aren't any&nbs ...Show All

  • Visual FoxPro How to check if an Array exists?

    Select * from myTable where isnull(myTable.keyField) = .f. into array myArray if alen(myArray) > 0 ** Loop through array and Do processing end if In a situation where records selected by the query are 0 then the array is not created and thus the next statement gives an error. How can I check if myArray exists before doing any further processing Thanks for the indepth explanation CetinBasoz. I see your point and I think I am going to try to incorporate type('alen(arrMyArray)') = 'N' in my code. ...Show All

  • Visual Studio Express Editions database saga

    I am at my wits end. I am trying to create a program that will add users to a database. I have read the various posts regarding the output file and have changed the Copy To Output File to Copy Never. I have also tried Copy If Newer. The database still does not retain my changes/additions. The code I have used is shown below. Code Here... Private Sub AddUser_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddUser.Click Dim newUserRow As Database1DataSet.Table1Row newUserRow = Me.Database1DataSet.Table1.NewTable1Row newUserRow.Name = nameBox.Text newUserRow.Password = Password.Text Da ...Show All

  • Visual Studio Team System where i can download the msf?

    hi... well i need to know where i can download the msf http://www.microsoft.com/msf Randy MSF ...Show All

  • SQL Server Modify ReportViewer

    Hi! Is there anyway I can modify the ReportViewer I was wondering if I could do something like this: - Write my own method in the ReportViewer.cs class (first doubt: where can I find this class ) - Rebuild - Add the .dll to my toolbox on the visual studio - Call the new method on my code behind class (I'm using a asp .net page) Is this possible Thank you! The report viewer ships in Visual Studio 2005, allowing you to do all of these things. It's in the data section of the VS toolbox. ...Show All

  • Visual Studio Express Editions default

    ok. what i want to know is how to make a button the default button. so when i hit enter it will do the function it's been set. for example a web browser. i type in where i want it to go and hit enter, and it goes to where i've typed. ok don't get confused i'm not trying to make a web browser navigate. what i'm trying to achieve is the hit enter bit. i can do it in vb 6.0 but i'm havin trouble which vb 2005.net can anyone tell me how to do it The form has an acceptbutton property. That is the button that is clicked when the enter key is pressed http://msdn2.microsoft.com/en-us/library/system.windows.forms.form.acceptbutton.aspx ...Show All

  • Visual Studio Express Editions Add line numbers to code

    Does any one know how to add line numbers to your code for error handling I want to use Information.erl in my error routines so I know the exact line the error happend. In vb6 I had an addin that would add line numbers for me. Is there anything simillar for vbExpress Note: This is different from adding line numbers by going to Tools > Options > Editor Options. Thanks I had a look and was n not abale to find it. Any ideas on how it's done I tried using Try Dim i As Integer i = 1 / 2 i = i / 0 Catch ex As System.Exception MsgBox(ex.Message) MsgBox(Erl()) End Try But it do ...Show All

©2008 Software Development Network