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

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

vasii

Member List

benschi
BJohnKenn
alians2
Mike Teperman
heb3
NEVILLE GEORGE
FourArrows
Fahad349
yahu_Hugh
Broomandan
leshan
Cyberjunkie
Aaron128
duck16
Kai Wang
Arjun B
alex_ending
basedissonance
Moody2006
sathishraj
Only Title

vasii's Q&A profile

  • SQL Server How to search for a given keyword in Triggers

    Hi I have a "columnname" and i have 120 triggers defined on tables in my database. I wanted to know as is there any way to find out how many triggers out of these are defined on the "columnname" like if i do any updates\edit to this "columnname" then how many triggers out of 120 defined are fired cascadingly. Also, this "columnname" is mentioned in 43 tables in my database. Let me know if you were not able to get my question. Thanks! this, i guess shud help :: select name from sysobjects where id in ( select id from syscomments where id in ( select id from sysobjects where xtype = 'tr' ) and text like '%MyColumn%' ) place ur colum ...Show All

  • Visual Studio Team System Allow merge only

    Hello, Is it possible to disallow direct check-ins to a branch but allow merging changesets from another branch Hello, I think you confuse two things - pending changes on the file and then checking it in. To pend merge, edit, delete etc. you need checkout permission, to checkin these changes you need checkout permission. So that are two different permissions. But you don't have 2 permissions, one for pending edit and another for pending merge. So what you can do (and what we are doing internally with Gauntlet ) is to allow users to pend changes and shelve them, and build automated system that will unshelve the changes, build, run tests etc and check them in. Hope I understood you question correct ...Show All

  • Windows Forms Parent form control access

    I'm doing some testing with inherited forms. I made a base form containing a toolbar with some basic buttons (add, edit, delete, refresh) Now when i inherit the form i added some properties to hide or show each of these buttons. What i'm trying to do now it accessing the toolbar from the parent form so i can add some custom buttons to it. Lets say i have a from that inherits the base form so that has the toolbar on it and i want to add a extra button to the toolbar (lets say print) I cannot access the toolbar so this is what i have tryd: on my base form i made a property public ToolStripItemCollection ToolbarButtons { get { return this .flatToolstrip.Items; } } When i go to the property window to access t ...Show All

  • Silverlight (formerly WPF/E) how i used createFromXaml method parametre as xaml file

    Hi Friends, I know that we can create a xaml controls dynamically by using CreateFromXaml method. But The CreateFromXaml method takes a parameter as xaml control syntax but is it possible to send parameter as a xaml file name. or if any other way how i cretae dynamic controls by using xaml file . Hi Dinesh I think that you can't do this directly. Why you dont try using ajax ( atlas ) You can call a webmethod to load your xaml file and use CreateFromXaml in callback function to create you element. cya ...Show All

  • Windows Live Developer Forums Font Colours In Conversation Window

    I've just the other day downloaded Windows Live Messenger, and when I brought it up today have found that all the fonts in the conversation windows are black Arial. I've changed my font multiple times but it still has no effect - Is there a way I can see my own and my friends colours and fonts As I have already looked through every option I can think of. Thanks in advance, Captive x The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available ...Show All

  • Visual C# Storing Font data for use on other PC

    Hi all In my application special user fonts are used and have to be stored in a document. Later this document is printed on another PC, where those fonts are not installed. So I have to serialize not only the font description, but also the font data. How can this be done I tried it with the FontFamily object, but this class is not serializable. Reiner Obrecht Fonts in Windows are stored as TTF or FON files. You need to install these on the target machine. You can then serialize out the font data (family, italic, size, etc) and use it on the target machine. To distribute the font you can attach the font file as a resource in your assembly or add the file to your distribution program. Michael Taylor - 11/30/06 ...Show All

  • Visual Studio 2008 (Pre-release) Syntax question

    This is pretty random but why did MS choose this syntax xmlns:sys="clr-namespace:System;assembly=mscorlib" rather than: xmlns:sys="clr-namespace:System;assembly:mscorlib" Why can't we just use the colon for both ...Show All

  • Visual Studio Express Editions Inivsible Button

    Hi, Could someone tell me how to make a button that isn't seen to the user, but still can be pressed If i use button1.visible = false then you can't press it. Thanks in advance, Josh Make a label with blank text as shown below: < Global .Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class Form1 Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub Dispose( ByVal disposing As Boolean ) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase .Dis ...Show All

  • Visual Basic Trigonometry Woes

    Ahh, it's good to be back. Did y'all miss me Oh well, here's my question. I have asked this in the C# forums, but I am also very keen as to how this could be done in VB.NET as well, so I thought I'd pitch it at you guys, too: I am having a bit of difficulty with coding some trigonometric functions. The primary goal I have at the moment is to find the two unknown angles in a right-angle triangle of which I know all 3 dimensions. While I know how to do this in theory, finding the code to accomplish this is proving difficult. For example: I have a triangle with a base of 6cms, a height of 5cms and thus a hypotenuse of ~7.81. It is a right-angle triangle and thus one of the three angles is 90 degrees. How can I find the other two angl ...Show All

  • Visual Studio 2008 (Pre-release) SecurityNegotiationException Issue accessing WCF service when Client is in different Machine

    Hi, I have created WCF service and Client. It is working fine, if both service and client are in same system, but if i place the client module in different system which under the same domain, i am getting the security negotiation exception The following is App.config configuration : < xml version = " 1.0 " encoding = " utf-8 " > < configuration > < system.serviceModel > < bindings > < wsHttpBinding > < binding name = " WSHttpBinding_IMetaDataService " closeTimeout = " 00:01:00 " openTimeout = " 00:01:00 " receiveTimeout = " 00:10:00 " sendTimeout = " 00:01:00 " bypassProxyOnLocal = " ...Show All

  • Visual C# Change audio volume using TrackBar --> Argument Exception

    I am using QuartzTypeLib.dll and I am trying to change the volume of the current song I tried to use a trackbar, but it came back as ArgumentException: Index out of range. How can I change the volume using a trackbar like WMP ...Show All

  • SQL Server Creating a job for SQL 2000 using SQLDMO in c#

    I have a quick question on how one can create a backup job using SQLDMO in C# I have not really been able to find any information on how to do this. I can create backups using SQLDMO and I can create Jobs but I do not know how to bind the two together. So if anyone has any information on how to do this it would be great. I'm writing a similar app using SQLDMO. Could you please give me sample code of how did you combine the two Thanks in advance. mct. ...Show All

  • SQL Server Blocking in Analysis Services

    We have a report in Reporting Services that connects to a Cube. The report has 4 input parameters that are also derived from the same cube. If the report is running and another user tries to select the drop downs for the report or runs just the query portion in report designer, the query will not return until the report has finished. It looks like the report is creating some type of wait. Has anyone ran across something like this ...Show All

  • Visual Studio Team System CA1062 : unable to validate as requested

    In the code sample below the Mybase.New line generates an error CA1062 Since I am unable to test for the validity of the argument BEFORE calling the base constructor, should FxCop be telling me to do something that I cannot - or could someone provide me with an alternative way to this CA1062 : Microsoft.Design : Validate parameter 'eventArgs' passed to externally visible method MyKeyPressEventArgs.New(KeyPressEventArgs) Public Class MyKeyPressEventArgs Inherits KeyPressEventArgs Dim mintKeyAscii As Integer Public Sub New ( ByVal eventArgs As KeyPressEventArgs) MyBase . New (eventArgs.KeyChar) mintKeyAscii = Asc(eventArgs.KeyChar) End Sub Public ReadOnly Property KeyAscii() ...Show All

  • SQL Server Updating Table Structures

    Colleagues: When I try to save changes made to tables in SQL Server 2005, I get a time out error about 30 seconds after I initiate the save to the changes made to the table. I then have to back out of the "modify table" operation and I lose my changes.  I never had this problem with SQL Server 2000, even in tables with millions of rows - it would take a while, but I wouldn't get the time out messagand the updates would be saved.  Any ideas as to what's going on Thanks, SMM I reported this issue as a bug for SQL 2005 here: http://lab.msdn.microsoft.com/productfeedback/default.aspx Let's see if someone from MS reviews this issue.  I included reproduction steps for a dummy table with 6 m ...Show All

©2008 Software Development Network