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

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

vc1234

Member List

Blader
CraigL
SteveJC
P.Hyde
sanske
NightwoIf
B.Huard
Norman Guadagno
rad9k
hjy
DevGuy_
WWally
Do Hoang Ha
Tinker Tenor
Micah Armantrout
TDRS
Cipher
michael_dev
Alterfritz2
lee d
Only Title

vc1234's Q&A profile

  • Visual Studio Team System Web Test Transactions

    Hi, I'd like to know which is the meaning of Web Test Transactions.  Is it just a logical grouping of requests Has it some other implications Which is the impact of using them Thanks LucasC I got one question related to transactions. Suppose i group four requests into a transaction, and if the frist request fails, will the client send requests 2 to 4 or will it fail the test without sending the request Thanks ...Show All

  • Smart Device Development Pushing application from Server to PocketPC

    Hi All, Any ideas how can i push certain application over wireless n/w from server to my PocketPC device and launch the same On Desktop side we have RPC but I don't think so we have it on device. -Seemit     Hi,    Use Webservice to connect server and Pocket pc through wireless technologies like GPRS/WiFi etc. Regards, Senthil, ...Show All

  • Smart Device Development drawing a target

    Hi, i wrote a program in vb6.net that uses graphics paths to create a target. each ring of the target has a value and by clicking on the target i retrieve the score for that position. my question is how can i draw a circle on top of another circle in cf which does not use graphics paths any ideas would be appreciated cheers Draw your circles one by one, that would create the picture. Click on that picture would give you X/Y coordinates. Next step is to use simple math to determine which circle was hit by determining if this X/Y is within particular radius. Another approach would be to get pixel from that coordinate and see ...Show All

  • Windows Forms TableAdapter Update Error

    I made a TableAdapter and use ObjectSource to bind it to GridView, when I insert new rows it works OK, but when I try to Update or Delete it gives me this error: ObjectDataSource 'RegionObject' could not find a non-generic method 'Update' that has parameters: RegionDescription, original_RegionID. Version Information:  Microsoft .NET Framework Version:2.0.50215.44; ASP.NET Version:2.0.50215.44 Thanks Alaa Bhr Software Developer Hi, Could you check your *.xsd file See if the update queries available in your tableadapter has these kind of arguments. If not try creating it... cheers, Paul June A. Domag ...Show All

  • Visual Studio sgen.exe failed due to spaces in keyfile's path. How can I work around this?

    sgen.exe is getting called like this (complete outout can be seen if necessary, only putting here relevant info: [vmsbuild] C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\sgen.exe /assembly:"c:\Documents and ....dll" /proxytypes /compiler:"/keyfile:c:\Documents and Settings\dansan\My Documents\src\ProjA\060608-FixScripts\SolutionFile s\Development.snk" /compiler:/delaysign- [vmsbuild] The "SGen" task is using "sgen.exe" from "C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\sgen.e xe". [vmsbuild] Microsoft (R) Xml Serialization support utility [vmsbuild] [Microsoft (R ...Show All

  • Visual Studio Team System Difficulties in testing webservices

    Dear All, I am using vs2005 beta 2. I write a webservice that inherits some class and overrides one of its protected method. Now I want to test the methods written in that web service. By Right Clicking on code and clicking on 'Create Tests' I created a test project that contains test class of that webservice. After customizing the testing code i executed the unit test. The following error appears: The web site for page 'http://localhost:1783/Webservices' is not properly configured for testing. Check that Visual Studio Team Test tools are installed on the web server. How can I move forward by removing this error ...Show All

  • SQL Server Filter Records returned on report builder based on User LogOn

    Dear Anyone, Is there a way to filter the records returned by a report model in report builder depending on the actual user that is logged on the report If so, how do we go about this Thanks, Joseph Yes, this can be done either by building a regular filter of using security filters. In both cases filter condition will be based on the Report Builder function GetUserID FYI: there is a known bug in security filters  (not regular filters) that will be fixed in Yukon SP1 ...Show All

  • SQL Server Cannot connect to sqlexpress from ssmse (ctp)

    I have been using sqlexpress for several months and decided to upgrade the ssmse to the november ctp version. I uninstalled the old ssmse and installed the november release from ctp. I verified that the tcp/ip and named pipes are enable in the config manager. I attempted using these connection strings: \sqlexpress, (local)\sqlexpress, or server name\sqlexpress All fail with the following message: Cannot connect to WALLY1\sqlexpress ----------------------------- ADDITIONAL INFORMATION: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fa ...Show All

  • Visual Studio Team System NUnit or VSTS Team Test

    Discuss.... We have mstest.exe for running tests from the command line (in case you're not using MSBuild.exe) and we also work with msbuild's "tasks" where you can specify which tests you'd like to run.  These are authored from the UI when you're creating a new "build type" as part of VSTS. Tom ...Show All

  • SQL Server Executing ETL packages programatically from .NET apps

    Is there a way to execute ETL packages programatically Specifically, is it possible to manually invoke the ETL package to execute from, say, an ASP.NET application If so, how do you do that I've been searching MSDN regarding this but all I see are examples on programatically building packages. There are various ways depending on your needs: If you want to execute package in process, using object model - just load and then execute package using Application.LoadPackage and Package.Execute methods. But you'll probably want to start package out-of-process, as this method offers process isolation and thus better reliability. ...Show All

  • SQL Server SQL Server Import Copy or Query

    Hi All, I have an issues with running the above. I am trying to import tables from an Oracle Database and want to use this wizard. The problem is that when I use the wizard it is not letting me select the "Copy data from one or more tables or views" it is not selectable, it's greyd out. It will only let me select "Write a query to specify the data to transfer". Or if someone can provide me with basic a script that will let me import tables that begin with "capa" and "capd". My sql is really awful. Thanks Andy You can't write a single script. You need t ...Show All

  • Visual Studio ReportViewer Controls - Updated?

    Has there been any update / hotfix to the ReportViewer controls that shipped with VS2005 If so, where would one find the update If not where will this update be availble when it is released Would this be rolled into a general SP for .NET framework or seperate Thanks, Adam The report viewer controls are serviced by Visual Studio. Updates will be part of the Visual Studio service pack. The most up to date information is available here: http://msdn.microsoft.com/vstudio/support/servicing/sp1_vs05/default.aspx ...Show All

  • .NET Development Get the Webservice from my local machine to the production server (I am using Visual Web Developer 2005 express)

      Hello, I finished a webservice-project with several methods on my local System. Now I want to publish it on the production server. My Development Environment is Visual Web Developer 2005. I have read that simply uploading the files ist not the solution (code-behind model). The file "Service.asmx", which points to the real Code (and is - so far as I have read - only from interest for the development environment) contains code as follows (in brackets and percent symbols): @WebService Language="C#" CodeBehind="~/App_Code/Service.cs" Class="Service" All other files, like service.cs and data classes xx ...Show All

  • Visual Studio Express Editions What would cause every item in my Form1.vb [Design] to SUPERSIZE?

    What would cause every item in my Form1.vb [Design] to SUPERSIZE I had to go through and change the size and location of every item on the form back to the way I had it! I would suspect that you changed the font on the form. Controls on a form inherit from the form's font setting unless they are explicitly overridden. Controls are sized based on the font setting as well. Jim Wooley http://devauthority.com/blogs/jwooley ...Show All

  • Visual C# delegate conversion

    I have an internal delegate type that I cannot expose, so I've created an identical delegate who's signature matches that of the internal one. Any thoughts on how I can convert the public delegate to the internal one I'm a genius! delegate void Foo(string s, Type t, int i); delegate void Bar(string s, Type t, int i); Foo f = new Foo(SomeMethod); Bar b = (Bar)Delegate.CreateDelegate(typeof(Bar), f.Method); works! could have sworn I tried that before I posted, and it didnt work... oh well. thanks anyway. ...Show All

©2008 Software Development Network