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

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

The_Drewster

Member List

James Minns
StephenK
Muruganandan
Jdawson
Koen Vd B
Zuki
Cool_DBA
jenr
araus
Sahildagar
Laurent Bugnion
Oliver Lundt
FirstMalone
Prze
RBowden
ZeyadRajabi
Manes
Omerkamal
Jon Mc
Doug Coburn
Only Title

The_Drewster's Q&A profile

  • Visual Basic erw

    erwer ...Show All

  • Software Development for Windows Vista Parameters

    Is it just me or do you find the "parameters" dictionary loathesome What's the point of having Intellisense and type-safe checking in the VS2005 environment if you're just going to pass a dictionary of Objects to workflow for setup It seems to me that if I had a regular class, and I need to pass some required values to it at construction time, I'd create a constructor to do that - is there some reason WF can't do this For example.. Dictionary<string, object> parameters = new Dictionary<string, object>(); parameters.Add("Message", "Test Message"); WorkflowInstance inst ...Show All

  • Visual Studio Cannot debug as in walkthrough: How to: Create VSPackages (C#)

    Hello, using vs 2005 rtm pro - vsip 2005 dec ctp Clean install. Tried following walkthrough in help titled: -- How to: Create VSPackages (C#) -- Don't know if it is missing a step. Basically says: -- Create new package project in vs, follow wizard, press f5. Result should be: -- vs.net runs under exp hive (ok), should display new command under tools menu. try selecting command. Problem: No command appears. I try to set breakpoints in constructor, code is not loaded or executed. So how do I register the vspackage to be loaded by the vs.net running the exp. hive, when I want to debug - that seems to be what is no ...Show All

  • Visual Basic DatagridTextBoxColumn WORDWRAP

    Hi everyone. I have a datagrid working just fine. I added a tablestyle to it and now I want to make my textboxcolumns to use wordwrap. I added the next lines to my columns mytablestyle.gridcolumnstyles(i).wordwrap=True but Its not working at all! Ive read some articles and seen some codes extending the datagridtextboxcolumn but non seem to work. Anyone got a working code How can I make it work You need to make your column style for that. There is an example of a multiline column on the vb-tips website . ...Show All

  • SQL Server Calculations tab - MSAS 2005

    Hi Pretty new to this so bear with me:) I have created a cube which has atm a single value measure and 5 dimensions which enable me to look at totals of the value measure in various ways - quite pleased I've managed to get this far without too many headaches. I now need to create a new measure which will be the existing value measure didvided by a subset of the existing value measure. So lets say each value belongs to a group numbered 1-10. I need to have a new value which is 'value' divided by the total of values belonging to group 1. Hope thats clear :) 1. I think I need to create a new calculated member in the calculations tab ...Show All

  • SQL Server Cast data type problem.Please help!

    1. My Script Task use an C# assembly which provide SQL Connection data type as a public property. SSIS Global variable as  Object data type accept it with no problem. Dts.Variables("SSISConnection").Value = DTX55AppDefaults.GetSSISConParam() - - - - - - - - - - 2.  Inside my Script Task I  declare local variable                  Dim oSSISConnection As SqlClient.SqlConnection   and try to make assignment like this  oSSISConnection = CType(CObj(Dts.Variables("SSISConnection")), SqlClient.SqlConnection) - - - - ...Show All

  • Visual Studio Visual SourceSafe Internet... ?

    Ok... I was just wondering... I need to implement the web pages of the SourceSafe all by myself ! Isn't any default pages for that Hopefully I'm wrong... Please tell me that there is some web-interface with SourceSafe without me having to do it all by myself... ok Moshe. Hi, What exactly are you trying to do If you just want to use VSS Internet plugin in VisualStudio, you need to enable VSS web service on the server (in SSAdmin, Server/Configure/Internet), and setup the client to access it. The service will use the asmx page from C:\Program Files\Microsoft Visual SourceSafe\VSSWebService\VssService.asmx, is this what you're looking f ...Show All

  • Windows Search Technologies Configure search locations programmatically

    In our application, we want to exclude some by-default-checked locations (i.e., some special PST files listed in the profile), we also want to include some folders on the hard disk. This can be done through the WDS options dialog. But we need to do it at background, a.k.a., programmatically. Is this possible So far we found that following registries may be related: HKEY_CURRENT_USER\Software\Microsoft\RSSearch\Gather\RSApp\MyIndex\Sites\LocalHost\Paths HKEY_CURRENT_USER\Software\Microsoft\Windows Desktop Search\DS\Index\Rules But we are afraid that directly deal with registry may require restart WDS, and it may also mess up WD ...Show All

  • Visual Studio Team System How to backup VSTS project?

    Which databases are VSTS used in SQL Server Could I just need to backup those database Or there are other files or settings should I backup at the same time Thanks! Ok, this is probably an obvious question, but to backup the ADAM datastore, do I just need to backup the BISGSS folder under C:\program files\MS ADAM directory Thanks, ~slee ...Show All

  • Visual Studio HOw to Install Visual studio 6 in sp2 system.

    I'm not running any applications while installing the visual studio... my friends have installed visual studio by switching off the windows firewall  but i tried this method also, it didn't work..... The dll which is falling to register is "djljobs.dll" , (guess - i've forgotten) Some times this error Do you have a virus checker running The file might be locked by the virus checker as VS is trying to register it. If you do, unplug your network cable, turn off your virus checker, run the install, turn on your virus checker again and then plug your network cable back in. ...Show All

  • Visual C# Program Execution

    Ok. I know how to open a program through code using the Process method. But what I would like to know how to do is, how to execute a command within a program that I open. For example. Say if I was to execute a .rar file. It would open and show the compressed files. How would I call a method to extract those files If this is possible can someone explain to me how Only a very few player can play compress file, you will have to decompress them and play them after. Some program like media player can only read pure sound/video files. ...Show All

  • .NET Development Async Remoting With Callback

    Hello All, We are trying to develop a n-tier app with async remoting. We are using Interface based callback mechanism for Async invocation. The code looks something like this interface IDataReadyCallBack {       OnDataReady(object res1, object res2, object res3); } class RemotingClient : IDataReadyCallBack {       public SomeMethod(object param1)       {                SomeRemoteObj remObj = Activator.GetObject(..........);        &nbs ...Show All

  • Visual C# Passing text to a text box from an MDI Parent to Child`

    Hi All, This is probably a stupid question but I am trying to rewrite a program that is in VB.net to C# - both 2003. In VB I displayed a child form with the following code: Dim child As New RichText child.MdiParent = Me child.txtLoadCommand.Text = strBuffer ' *** I can't do this bit in C# child.Show() In C# I'm using the following code: ChildRichText newMDIChild = new ChildRichText(); newMDIChild.MdiParent = this ; // Set the Parent Form of the Child window. newMDIChild.Show(); // Display the new form. I need help with getting the parent to set the text in the child form's text box to a string because I us ...Show All

  • Windows Forms Any good walkthrough examples of Checkedboxlist where dataset is datasource?

    Hi, Perhaps dumb question, Are there any good walkthrough/code examples of Checkedboxlist where a dataset is the  datasource Im creating a windows version of some functionality that I have working in ASP.NET where I use checkboxes in a grid. I am looking for same in windows controls where the list can be generated with a dataset coming from a back end data ...Show All

  • Visual Studio 2008 (Pre-release) using OpacityMask with MediaElement

    Hi when i try to use an OpacityMask with a Video its really slow and jerk I've tried using a VisualBrush (Visual = the MediaElement) in a Rectable with an OpacityMask and its slow too. I'm running a AMD 64 PC with 6600GT 128MB (Forceware 77.77 WHQL drivers) and 1GB RAM Any got any good hints :) Here's a snippet of the code < MediaElement HorizontalAlignment = " Left " VerticalAlignment = " Top " Height = " 240 " Width = " 320 " Opacity = " {Binding ElementName=alphaSilder, Path=Value} " Source = " d:/media/test.mpg " Name = " curMe " Stret ...Show All

©2008 Software Development Network