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

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

yousaid

Member List

Hamish_NZ
TheOneAndOnly
Chau Tran
Nate Skousen
Ali Adnan
johnrballard
lord executor
Darren Baldwin
barnettsab
Luo Bin
Robson Hermes
Ankur gupta -
LDJ
biyikli79
Marin Millar
pluto2005
Steele
Steve Custer
BasL
allan.taruc
Only Title

yousaid's Q&A profile

  • Windows Forms Force a column in Dataset to be null?

    I want to force a column in Dataset to be null. Following statement raises an error like "date column cannot be null. use DbNull instead....." dataset1.Tables("table_name").Rows(0).Item("date1") = Nothing I would appreciated to let me know the correct syntax for this.  chaborbaf if you haven't resolved this yet, i'll play with it this weekend&n ...Show All

  • Visual Basic How do i make a vb.net 1.1 client side web browser object

    I have looked every where, why is there no working examples of making a client side web browser object. You could do it in old vb. And people say you can do it in vb.net, but only give half explained info, that does not seem to work. I have come accross pages saying you can just make a program or user control, and just embed it using object on you web page. but they never give full examples, or do not work. most say make a dll, but you can't share a dll on IIS, so i used another web server, and they still dont work. i need a full example, including web page I got it to work finaly, seems it dont work if the ...Show All

  • Visual Studio Team System WebTest with Team Build?

    Is it possible to run WebTests with Team Build I'm using Beta 3 Refresh and I couldn't manage it to work, no matter what I do the test always fail under Team Build (it runs perfect when using Test Manager). I'm getting the error: Results Top Level Tests ------- --------------- Failed (FullTests/)c:\fullbuild\projeto apresentacao\fullbuild\sources\classlibteste\testproject\webtest1.webtest Run has the following issue(s): F:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamBuild\Microsoft.TeamFoundation.Build.targets : warning : Cannot open the ASP.NET project 'F:\Documents and Settings\Administrator\My Documents\Visual Studio ...Show All

  • .NET Development When to use TableAdapter.Update(DataTable) method?

    I'd like to know how can I use the TableAdapter.Update method so that I can update the database that I use whenever a user adds, modifies or deletes a row in a datagridview control. I suppose that I should handle the CurrentItemChanged event of the BindingSource that the DataGridView uses but I'd like to see a full example. In other words I'd like to create a WinForms application with a DataGridView that has the same capabilities as the DataGrid form for the Sql Tables in the Sql Server Management Studio. I know that it's a lot to ask but nevertheless this is something that is missing from the .NET Framework examples and walkthroughs. ...Show All

  • Visual Studio Express Editions sqaure root

    hi i was wondering about this sqaure root thing. I don't know how to do it, but i saw something undr help and coppied it. but i only got it to work it console mode and it was only 10 numbers long or something (sqaure root of 2 i was wanting) so i was wondering how to make it go forever Try this if you are after a simple square root. double x = 456; x = Math .Sqrt(x); MessageBox .Show(x.ToString()); ...Show All

  • .NET Development BackgroundWorker problems

    Ok.....I have a while loop that executes an increment on a counter for a couple thousand times. I want to be able to show the progress on the counter using a progressbar. Now, I am executing the while loop in the DoWork method of the background worker and updating the progressbar in the ProgressChanged method and when i call RunWorkerAsync then things go wrong. My problem is that the progressBar updates properly and the count increments...however my form's UI is unresponsive...it registers click events on the cancel button but it waits until the backgroundworker completes before it actually does what it has to do. If i introduce a Thread.Sle ...Show All

  • Visual Studio Error after Install sharepoint service 2.0 with SP1 while install team 2005

    Not sure if it is the right place to post. If not, please forgive me. During installation of VSTS beta 2, after I installed sharepoint service with SP1 in a box with SQL 2005 April CTP of Window 2003, I encountered following error when access SharePoint Central administration. "401 access deny" I access local with admin login. I was keep asking to give username/password and never let me in. I checked IIS log and my NT domain name/ID was shown as authenticated user. Here is one of the IIS log entry. 2005-06-23 19:34:37 127.0.0.1 GET /default.aspx - 15504 tommyhome\Administrator 127.0.0.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+.NE ...Show All

  • Visual Studio Express Editions += and conversions

    I have recently switched to VC++ 2005 express edition, and noticed warnings in my projects which weren't there before. I'm not an expert, so I was wondering if the compiler is right in warning me about a conversion in this code: void main() {     short a = 4;     short b = 2;     b += a; } test.cpp(5) : warning C4244: '+=' : conversion from 'int' to 'short', possible loss of data Where did the 'int' come into existence "b = b + a" doesn't give any problems - isn't that supposed to be exactly the same Hi, I'd better overload these operators and do some spee ...Show All

  • Visual Studio Express Editions Can't find DLL at runtime

    First of all, I am out of my element, as my user name indicates.   I received a .DLL and a .LIB from a vendor and some sample code indicating what functions to call within the DLL.   I know nothing else about the DLL.   Support from the vendor is not possible.   I wrote a small program that references or calls one of the DLL functions and have successfully compiled and linked.     When I run the resulting .exe, I get the following dialog box:   “Unable to Locate Component   This application has failed to start because zgenrl.dll was not found.   Re-installing the ap ...Show All

  • Visual Basic Migrating from Ms Access to SQL Server 2000

    Hi, Is there many changes need t o be done in order to change my DBMS. Currently, i'm using Microsoft Access in my VB.net program. however, i need to change the DBMS to SQL Server. So what should i do can i still use back the same coding what namespace should i include Hi there, Firstly, I would consider using the Access Upsizing Wizard to migrate your database from MS Access to SQL Server if you have not done so already. If you've migrated via a different means, then a good start would be having the database schemas for the two databases almost identical (you won't get an exact match because SQL Server 2000 has a couple of differe ...Show All

  • Visual Basic Flusing mouse input ??

    Hello all, I'm writing a multi-form VB.NET 2003 application. I have forms A, B, and C (alongside a module that holds handles to the three forms). The app takes the user from Form A to Form B when a MouseMove event happens, it takes the user from Form B to Form C when he/she clicks a button on Form B, and finally takes the user from Form C back to Form A if a timer times out. My problem is in the last transition. When a timer in Form C times out, I close Form C and reinstantiate Form A (newFormA= new FormA then FormA.Show()), however, as soon as I show Form A, the app takes me to Form B. Debugging shows that as soon as Form A is loaded, ...Show All

  • Visual J# Need help: try/catch using combobox

    I'm attempting exception handling for a combobox. I wish an exception to be raised if the user does not select an item from the combobox, but I'm not sure of the correct code. Here is what I have now: try { if (cboDwellingType.get_SelectedItem().ToString == null); { MessageBox.Show("Please select the Dwelling Type from the dropdown menu."); cboDwellingType.Focus(); throw new Exception ("Error updating Local database"); } } catch (Exception err) { if (err.getMessage() == "Error updating Local database.") MessageBox.Show(err.getMessage()); } Hi, ...Show All

  • .NET Development Webservice: "The ASP.NET process identity does not have read permissions to the global assembly cache."

    I'm uncertain what the best forum is for this - I also posted this in the ASP forum. I am developing a distributed application with a client-side java calling a webservice serving a static binary database. The application works well with the VS2005 Development server on XP Pro SP2. However when I publish it to an IIS v5 environment, it fails with these errors.   3.)    .aspnet_wp.exe (PID: 3988) stopped unexpectedly 2.)  Failed to execute the request because the ASP.NET process identity does not have read permissions to the global assembly cache. Error: 0x80131902 1.) Failed to initialize the AppDoma ...Show All

  • SQL Server Cannot install 'SQL Server 2005 Express Edition with Advanced Services'

    I tried to install 'SQL Server 2005 Express Edition with Advanced Services'. First, I uninstalled the old version thru Add/Delete Programs in the Control Panel. My first problem was I didn't have IIS installed on my computer, but, I could not find it in the downloads section. Then the installation aborted because old version databases were in C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data. But, it would not let me delete them, saying that they were being used, even though nothing was running at the time that I tried to delete them. Hi, "But, it would not let me delete them, saying that ...Show All

  • Visual Studio Team System FxCop fails to locate a present assembly

    I have a web app that uses Innova Studio's WYSIWYG editor - the DLL is included in the BIN directory. Each time I run code analysis FxCop throws an error that it can't load the dll My guess is that this DLL is v1.1. FxCop does not currently permit a 3rd-party component that is versioned differently than the binaries under analysis. We're looking at resolving this in a tool update. ...Show All

©2008 Software Development Network