Sean.Stagner's Q&A profile
Visual C# Automatic logging in to websites via WebBrowser
Let's say I want to automate some repetitive tasks done to various websites. Specficially, these tasks involve: Logging onto website with user id and password Filling out form with certain information Submit form for processing Parse web page output and capture relevant information User id's and passwords are stored in a file encrypted by a master key which I have to type in. My questions are: How do I use .NET 2.0 W ...Show All
Visual Studio ReportViewer in Local Processing Mode - Print button disappears from the Toolbar
Both in during Design time and run time, the print button does not appear in local processing mode. I have the ShowPrintButton property set to true! It will show in Remote Mode, but my report is not designed for that. Why can't the Print button work for local mode Also, the Adobe exports have blank pages inserted between pages. This is very frustrating. Help please. Note, I am also using the pluggin for VS 2005 express. Thanks! ...Show All
Visual Studio Team System Refresh on the TeamFoundationServer object?
Is there a way to refresh TeamFoundationServer objects Basically, if I store a TeamFoundationServer object in my class, and the state of the server changes in another application, how can I force the object to update and be consistent with the server I am seeing behavior between applications that if I add a query in one application, it will not refresh in the second application until I get a new TFS object in the second application. As soon ...Show All
Visual C++ Code used to clear text boxes
im new to c++, and i would like to know the code that you need to use to clear text boxes. regthesk8r wrote: im new to c++, and i would like to know the code that you need to use to clear text boxes. SetWindowText can be used with an empty string. ...Show All
Visual C# Exposing Form class methods to COM
Hi, I'm new to C# and the C family languages. I would like to know how I can expose the Show() & Hide() from the Form class to COM. Currently, I have an interface and a class that inherits Form and this interface. More specifically, how do I implement the Show() & Hide() I know how to do Property1 because it's my property, but Show() & Hide() are from the Form class and I don't know where or how to ...Show All
Microsoft ISV Community Center Forums Please Help with Access 2003 and ActiveX Controls
Hello everyone, I am having a major problem and I can not find a resonable answer any where, so I hope some one here can help me out. I have been working with Access 2000 for a long time and have always been able to Insert the ActiveX control "Microsoft Common Dialog control, version 6.0". I now have made the jump into Office 2003 and Access 2003 which when I try to Insert the ActiveX control "Microsoft COmmon Dialog control ...Show All
Smart Device Development Panning & Zooming Question: Is it possible?
Hello, I was just wondering, if there's an example of panning and zooming functions in c# CF.... Sort of like a magnifying glass Thanks! Martina The Graphics class has scaling and translate transforms which you can call which which give you panning and zooming, assuming they exist on CF. ...Show All
Visual Studio Express Editions Visual Basic Excel Project
Ok, I have posted many times on this forum for this subject, but so far I am yet to find the answer I'm looking for. I am trying to create a very simple application with Visual Basic 2005. I have a number of Excel workbooks and simply want them to be opened from a command button within my Visual Basic project. However, I would also like it to meet the following conditions: 1. The application should open on any computer, ie. the probl ...Show All
Visual Studio Team System Recommendations for Pooling Work Items?
What does MS recommend for situations where I want to create a pool of Work Items that developers can pick and choose from I have developers A, B, and C. I have bugs and enhancements that I want to put into a pool so that who ever has the free time can take the next bug or enhancement. So when Developer A finishes their work, they then go to the pool of Work Items and look for the next one that is available. Brien King brien@clas ...Show All
Visual Studio 2008 (Pre-release) ObjectDataProvider.ConstructorParameters and Feb CTP
Hi everybody, I'm trying to use ObjectDataProvider.ConstructorParameters but it doens't appear in Visual Studio, in intellisense. Here is my code: <Window x:Class="DemosWPF.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="DemosWPF" Height="768" Width="1024" WindowStartupLocation="C ...Show All
Visual Basic [OTP] VBA Spreadsheet 'call' from VBA function macro
I'm familiar with the usual application of VBA function macros - pass arguments from the spreadsheet to a function, the function then returning a value to the spreadsheet. Is it possible to do this in reverse Can a function macro pass arguments to a spreadsheet, with the results of the spreadsheet calculation passed back to the function The job I'm trying to avoid is reprogramming an existing spreadsheet as a VBA function, enabling it to ...Show All
SQL Server Creating relationships between 2 databases
Is it possible to create relationships and enforce constrains thereof between two fields with the same data type from 2 different databases ( i.e. 2 different .mdf files ) altogether, attached to an instance of SQL Server 2005 Express This would help overcome the limitation of the 4GB database size it imposes, by splitting the info required into different databases, rather than just different tables. All the relationships could be then created ...Show All
SQL Server SQL Workbench Object Scripting Broken
It appears that there is no way to just click on a table or stored procedure in Workbench and script the object with the same options that existed in Enterprise Manager. The Script Stored Procedure/Table As Create/Alter/Drop does not provide the same functionality that existed in EM. It does not allow you to change the scripting options: -It prepends the use [database] to the beginning of the script. This is bad because this script ...Show All
Visual Studio Team System Problems with Extract Hidden Fields with multiple forms with same input field names
There currently seems to be a limitation on how the "extract hidden fields" feature works in WebTest. Specifically, assume that there is a webpage that has multiple forms - let's say that users can search something, or login - both are on a single webpage. They are 2 different forms, but both have a hidden input field with the same name - let's say "action". The values, however, are different for each form. The 'extract hidden forms ...Show All
.NET Development Please help me ...
Hi I want to update two datasets within the same transaction . That is rollback both if either fails. I have an example. It uses ExecuteNonQuery. I attempted to do similar code but instead of calls to ExecuteNonQuery I called sqlDataAdapter.Update: conn.Open() Dim cbcommand1 As New SqlCommandBuilder(ad1) Dim cbcommand2 As New SqlCommandBuilder(ad2) myTrans = conn.BeginTransaction() ad1 .UpdateCommand.Transaction = myTrans ad2.UpdateCo ...Show All
