Software Development Network Logo
  • IE Development
  • Visual Basic
  • .NET Development
  • Windows Forms
  • Game Technologies
  • Visual FoxPro
  • Windows Vista
  • Visual C#
  • Visual Studio
  • SharePoint Products
  • Audio and Video
  • VS Team System
  • Smart Devicet
  • Visual C++
  • Microsoft ISV

Software Development Network >> dct-val's Q&A profile

dct-val

Member List

nmahesh567
pessi
InvestorDrew
singam
Thomas N. Sørensen
Kamii47
m0
fripper
mike_n
Nonu_k
hazz
Mr Papaya
PaulSw
Shaantu
Derek Nedelman
pwhitaker
hazz
Andrzej Martyna
ShadowRayz
AndyPham
Only Title

dct-val's Q&A profile

  • Visual Studio Express Editions ProgressBar1 with Process.start...

    Hello, i'm using this code Dim impbig As New ProcessStartInfo("impbig.exe") impbig.Arguments = "/i openme " + "t20__" + ComboBox1.Text + ".oop " + "t20__" + ComboBox1.Text + ".oop /c" impbig.WindowStyle = ProcessWindowStyle.Hidden Process.Start(impbig).WaitForExit() this code works great! But i'd like to ad progress bar to it so it starts from 0-100% untill process is done, any help many thanks, greetings from Croatia! Unless your process impbig.exe is returning some form of progress values which you can use then your out of luck. The progressbar control works by providing it details by updating properties which can be used to determine how the progress to be sh ...Show All

  • SQL Server Sorting SSIS packages in SQL Management Studio

    Hi, Is there a way to sort the SSIS packages in the SQL management Studio It seems like the list under MSDB is sorted by the date which the package was originally imported. Look for Darrens response in below link http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=748034&SiteID=1 ...Show All

  • Windows Forms overlaying a docked panel?

    Hi, I've got the following problem. I am working on an application that has a main form with on the left side a tree view and on the right hand a panel. Both objects (treeview and panel) are docked, so they stick on the sides of the screen. i thought that might be usefull when the application is used on different screen sizes. However, when the user clicks on some nodes, some dialog forms open. Is there any way i can make sure that the dialog forms that are opened perfectly overlay the (docked) panel on the right hand side. That would make my application a bit more easy to handle on different screen sizes. I hope this is clear. Thanks so much for a reply PS I'm using VS 2005 This is the background. There is a main form ...Show All

  • Software Development for Windows Vista Problem with Workflow Monitor Sample

    I'm, having problems running the Workflow Monitor sample. It can query the workflows, but I get a big "X" on the rhs where it's supposed to display the workflow, and returns an error that says: "Microsoft Workflow Designer" "Object Reference not set to an instance of an object". I'm using Beta 2.2. Have you been able to determine where hte exception is being thrown If you run in debug mode can you find the exception details. The nice thing about this problem is we all have access to that application, so if you can point out the problem, we can help you find the cause. Matt ...Show All

  • Visual Studio Javascript and hyperlink

    I have report viewer control with local mode. I try to create hyperlink on one of column. I wnet textbox property page and set jump to url expression, like this: =window.open('Report_FTPFailureLog.aspx FTPTestResultsID=" & CStr(Fields!FTPTestResultsID.Value) & "')" I am expecting that when click this column, popup a new window. But it won't work, Is there anybod have experience about this thank you inadvance, Lynn ...Show All

  • Windows Forms list box and datasets

    hey, how do you make it so that a list box shows the items on a dataset     Thanks :) stores what exactly into an html file you can save an entire page in html by using the webrequest class but this is not what we were talking about were we or is this a new question :-) Obviously if they uninstall the browser then all bookmarks etc... will be lost but you can save the bookmarks again by using Xml, as it will store it in a file which means you can later on read from it again and pretty much restore the bookmarks (since it was saved anyway) ...Show All

  • Software Development for Windows Vista Request For Code Sample

    Hi, Having read many documents and tried many SDK Samples, still can't find the answers to the following questions: 1) How to know the workflow type (Sequential or State Machine) from the Tracking Information 2) How to know the latest state (State Machine Workflow) of a workflow instance from the Tracking Database (like the Current State Name in StateMachineWorkflowInstance) 3) How to get the latest properties (such as Claimed Value, Approval Amount )of a workflow instance from the Tracking Database without using User Track Point Can any one provide code sample for the above questions Thanks. #1 - The SqlTrackingService db stores this information in the Type table. Join Workflow or Workf ...Show All

  • Visual Studio Tools for Office Server side Mail-Merge using VSTO2005

    I have been trying to get a prototype running for doing server-side mail-merge for the past week now using VSTO 2005 and am going nowhere.. Has anyone been able to successfully do this My constraints are: 1. Avoid having to install VSTO Runtime on client machines 2. Avoid using Word 2003 automation on server since its not recommended. 3. The source documents are a bunch of Word documents stored in a templates folder on the server. 4. We have to mail-merge using a runtime datasource, then send the document over the web using asp.net 2.0. If there is a good sample or article out there, I would really appreciate it. Thanks, JGP Hi, I also have the same scenario as described ...Show All

  • SQL Server query analyzer 2000 login timeout not working

    When I try to connect to a server using isqlw through a slow connection, I always get the "Unable to conect to server..odbc msg 0 level 16 state 1 Timeout expired" message after 15 seconds (the ISQLW default login timeout period). I can connect fine through Enterprise Manager and thru ISQL (after about 50 seconds) and can connect fine to other, faster-connecting servers thru ISQLW. And no amount of changing login timeout values to 0, 300, 59 or any other timeout values will change the behavior. Help! ...Show All

  • SQL Server Variables in Script Task

    I recieve the below error when I attempt to execute a Script Component in a Data Flow Task: The collection of variables locked for read and write access is not available outside of PostExecute. This is the code I used: Imports System Imports System.Data Imports System.Math Imports Microsoft.SqlServer.Dts.Pipeline.Wrapper Imports Microsoft.SqlServer.Dts.Runtime.Wrapper Public Class ScriptMain Inherits UserComponent Public Overrides Sub Input0_ProcessInputRow( ByVal Row As Input0Buffer) Output0Buffer.AddRow() Output0Buffer.BillerId = CType (ReadWriteVariables( "CustId" ).Value, Int32) Output0Buffer.UserAccount = CType (Row.Column0, String ) Output0Buffer.UserS ...Show All

  • SQL Server Can I have multiple tables to gather event data

    Hi Guys, Wondering if I could have two tables with parent child relationship to gather event data. Does NS support such scenario while defining schema in ADF.xml. Please advice. Thanks, Shamir You can use just about any T-SQL code in the EventRule Action node to identify and insert new events for the SSNS application, as long as it produces the appropriate fields as defined in the associated eventclass. HTH... -- Joe Webb SQL Server MVP http://www.sqlns.com ~~~ Get up to speed quickly with SQLNS http://www.amazon.com/exec/obidos/tg/detail/-/0972688811 I support PASS, the Professional Association for SQL Server. (www.sqlpass.org) On Sun, 23 Jul 2006 03:10:01 -0700, ...Show All

  • Visual Studio Team System Taking a project offline

    Hi! I have a wish/suggestion. Instead of allowing projects to be deleted it should be almost as good to be able to take a project offline, a la SQL Server. When a project is offline it should not be possible for anyone but a TFS administrator to take it online again, and while offline no users should be allowed to access the project in any way (through Work items, Source control, Documents, etc). The normal reasons for removing a project is, as I see it: Keep the project list short to not confuse users Save disk space Remove code/data that we are certain we will never need. Maybe a test project or similar. Or a project that was created but shouldn't have been. A project taken offline should not even show up in the list of projects for us ...Show All

  • Visual Studio 2008 (Pre-release) Expression Blend : API for component developers

    Hi all. I am developing components for WPF and want to make them compatible with Expression Blend. Where to get info about designer API's, debugging, etc WPF is already released, but it seems that no information available about custom component design-time support architecture. Thanks, Eugene. Yes WPF is RTM. But the designer APIs are still in beta, and documentation is still being developed for it. I ran across a blog posting that gives a series of links to resources for custom control development here ...Show All

  • Windows Forms ClickOnce Proxy Server Authentication

      I see from a previous post that it's not possible to use clickonce through a Proxy server (real shame guys ... come on, get a service release out that throws up a dialogue box like Media Player or the like have!) http://forums.microsoft.com/msdn/showpost.aspx postid=149938&siteid=1 What are the possible work arounds for this then, how can I deliver applications and their PreRequisits to people sitting behind firewalls which require authentication, best practices/tips/tricks etc appreciated. Thanks, Plip. Hi Chris, Unfortinatly for me these options aren't viable, I need to get ClickOnce working with different Authentication to that which the user is logged in as (quite common o ...Show All

  • Visual C# static method - Is there any workaround?

    I think most know we cannot declare a static anything in an interface. However, let's say I have this: public sealed class MyClass { private MyClass(string someText) { m_someModifiedText = someText; } private readonly static m_someModifiedText; public static MyClass Create( string someText ) { string modifiedText= ModifyText(someText); return new MyClass(someText); } private string ModifyText(string someText) { string modifiedText = someText; //do something to modify text return modifiedText; } public static string UsefulText { return m_someModifiedText; } } Now, this "sample" is just to keep it simple, but PLEASE just consider the concept rather than what the ...Show All

©2008 Software Development Network