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

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

StephK

Member List

lhoward
stevebio
Paul Ayre
Kandikan
Daniel Alvarez
Jarodtweiss
Gathar
dave.t
ashade
Holger Sachs
Peter Stuer
Rob Johnson
Lu Campos
Justin Wolf
Ronald Cormier
ToryPatnoe
dibzee
Emanuele Ornella
HKS
sqldev80
Only Title

StephK's Q&A profile

  • .NET Development inset java srcript in asp.net

    How can we include a clientside script like Javascript in asp.net using C# language Exactly the way I told you. No other way exists. Except the method is called registerclientscriptblock I have no idea what this forum is for, because as I said to you, ASP.NET questions belong at www.asp.net . Why did you ignore me ...Show All

  • .NET Development dBase IV Connection Problems

    Hi, In Microsoft Access 2003 I can link to a dBase IV table and add, delete and update data with no problems. In Visual Studio 2005 (C#), I 'Add New Data Source...' but the best I can get is a very slow, read-only ODBC connection to the same dBase IV table. Can I use the same connection method that Access uses (presumably the Jet 4.0 OLE DB drivers), and if so how Many thanks in advance, Ben ...Show All

  • SQL Server How to check for table existence before dropping it?

    Apologies if this has been answered before, but the "Search" function doesn't seem to be working on these forums the last couple of days. I'd just like to check if a table already exists before dropping it so that I can avoid an error if it doesn't exist. Doing a web search, I've tried along the lines of "If (object_id(sensor_stream) is not null) drop table sensor_stream" and "If exists (select * from sensor_stream) drop table sensor_stream" In both of these cases I get the error: "There was an error parsing the query. [ Token line number = 1,Token line offset = 1,Token in error = if ]" Sooooo... what ...Show All

  • Visual Studio Team System tfsbuild parameter "serverurl" not working when the current user never selected any friendly name for a tfs

    Hi, I am just trying to create a scheduled build. The scheduled command is running on the build machine itself. This has just the bare necessities installed to run a build (Team Test and the Build service afik). Anyway the user that runs the command has never selected a TFS from any UI and so not friendly names entry exists in HKCU. No problemo, I thougt, and provided the full server url instead of a friendly name. What I got was this: c:\>tfsbuild start http://statfs02:8080 xtplus nightlybuild Microsoft (R) TfsBuild Version 8.0.0.0 for Microsoft (R) Visual Studio 2005 Team System Copyright (C) Microsoft Corporation 2004. All rig ...Show All

  • SQL Server Dataflow error in lookup task : "Object was open.".

    I Can't reproduce the error if I run the package stand-alone. I'm using the same lookup call (same table, etc.) in 2 packages that are running in parallel (called by a parent package). [LKP_UnderwriterId [72283]] Error: An OLE DB error has occurred. Error code: 0x80040E05. An OLE DB record is available. Source: "Microsoft OLE DB Provider for SQL Server" Hresult: 0x80040E05 Description: "Object was open.". Anyone seen this one Googling threw this up: http://www.sharepointu.com/forums/m_23343/tm.htm Could it be that something isn't installed properly on the machine on which ...Show All

  • SQL Server Access Script Task

    Hi, How to access the Package inside the Script Taks. for example IF intStatus = 1 Then //Execute Package1 Else //Execute Package2 End IF in the above sample what is the property to get the Package1 object in script Thanks & Regards Jegan.T You should use the Execute Package Task in order to execute other packages. Any reason why this doesn't work for you -Jamie ...Show All

  • Visual C++ Why is VC8 code much slower than VC7.1?

    I have built the code below using both MSVC 7.1 and 8.0 beta 2, using the command shown in the initial comment. When run on a 3GHz P4 with 1GB RAM, running XP SP2, the output is as follows:    VC7.1: Time = 62    VC8.0: Time = 110 Why does the 8.0 build take 1.77 times as long to run Thanks, Keith MacDonald ///////////////////////////////// // cl -Ox -EHsc -MT TimeTest.cpp #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <iostream> #include <vector> #include <algorithm> class View; class Document { public:     Document()     {}     v ...Show All

  • Visual Studio Team System FormField validation

    I'm currently trying to perform a FormField validation on a "select" tag which has the following html: <select name="ucCalcPage1:ucDateSelector:ddlMonth" id="ucCalcPage1_ucDateSelector_ddlMonth" onkeypress="return ValidatorEnterKeyHandler(event, 'ucCalcPage1_btnGetPricing');">  <option value="1">January</option>  <option value="2">February</option>  <option value="3">March</option>  <option value="4">April</option>  <option value="5">May</option>  <option value="6">June</option>  <option value="7">July</option> ...Show All

  • Software Development for Windows Vista MCMS 2002 and WWF (Architecture Overview)

    Hi to all group members Well one thing that i love about CMS 2002 workflow (yes if you dont know that ,this may be surprising to you ) is that its simple ( 3 step at most ) , secondly we have all the Events with much more authority , for example in contrast to SharePoint Portal Server 2003 Document Libarary Events (Uploading etc ) the events can stop the flow and revert the action something which is not possible SharePoint Portal Server 2003 DOcuemnt Libaray Events (you cant stop them they jsut happen and you are sort of notified!) . Anyways come back to the subject of Workflow , i want to design a workflow for CMS 2002 using WWF (offcours ...Show All

  • SQL Server Repeat Columns in a List object of a Report

    How (or is it possible to) vary the number of columns of a List in a Report, as one can with a List control in a WebForm or UserControl, etc... Thank you, Paolo ...Show All

  • Windows Forms The Display Member is not a property of ComboBox control.

    How to set the display member ...Show All

  • Windows Forms Control size

    How can I stop my control being resized  I would like it invisible at runtime & 32 * 32 pixels big Any ideas There are two main places where Visible and Bounds are set...  In your control you could override SetVisibleCore and always pass false to the base, and you can override SetBoundsCore and always call base with width = 32&nb ...Show All

  • Visual Studio Express Editions Learn VC++ from where to begin

    Hello frnz, i want to learn VC++. i know C,C++,C# programming language. please help me from where to begin. i have asked from many people. some told me to begin learning Win32 api programming, some asked me to go for MFC. i am totally confused. please help me out. Check out http://msdn.microsoft.com/visualc/learning/default.aspx . Also, the videos at http://msdn.microsoft.com/visualc/learning/vcexpvids/default.aspx should get you started since you have a background on C/C++ already. Hope this helps! Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server Error on order by with union all

    Hello, I want to order by a field that is a code, like 1,2,3,11,12,13, and i get the following error "Only text pointers are allowed in work tables, never text, ntext, or image columns sql server" Why do i get this, what can i do to overcome this Thank you Need more info. Like table structures, especially with data types. Is this code column a text column: CREATE TABLE test ( testId int PRIMARY key, textVal text ) INSERT INTO test VALUES (1,'1,2,3,11,12,13') INSERT INTO test VALUES (2,'14,15') go --2000 Msg 420, Level 16, State 1, Line 1 The text, ntext, and image data types cannot be used in an ORDER B ...Show All

  • Visual C++ Illegal left operand has type 'float' (trying to use the modulus operator)

    ok this is the error: error C2296: '%' : illegal, left operand has type 'float' I know I can't use a float with the modulus operator but I need to use it (the modulus operator, and the decimal). I need the decimal in the variable to find change... this is the code that I wrote so far: #include <iostream.h> #include <iomanip.h> main() {    int pennies;  int nickels;  int dimes;  int quarters;  int dollars;  float cost;  float amount;  float change1;  float change2;    cout << "How much did the item cost " << endl ;  cin >> cost ;  cout &l ...Show All

©2008 Software Development Network