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

Software Development Network >> Brandon Bloom's Q&A profile

Brandon Bloom

Member List

Peter Peng
penninha
Alvin Kuiper
tokie
Sergey K.
Dave Calkins
TCK
paulabq
Futzy
donkaiser
zingsb1
Steve Whitley
JohnnyP34
DragonVic
paso
sic0198
YiLi
dchester11
Pranav Sanghadia
Cristina Stanca
Only Title

Brandon Bloom's Q&A profile

  • Visual Studio 2008 (Pre-release) could i use trigger to do it? the communication between two element

    There is simple scenario: I have a Textbox and a Button on canvas. When the mouse hover on the button, I want to change the background of the textbox. I want to know can i do with trigger method my code below: <TextBox > <TextBox.Style> <Style TargetType="{x:Type TextBox}"> <Style.Triggers > <Trigger Property="Button.IsMouseOver" Value="true" SourceName="b1" > <Setter Property="Background" Value="True" /> </Trigger> </Style.Triggers> </Style> </TextBox.Style> </TextBox> <Button Name="b1" Width="20" Height="39"/> ...Show All

  • .NET Development Accessing databindigs of controls in TemplateFields of a GridView

    I have some TemplateFields in a gridview. How can I access the controls in these Templatefields when I do not know the name of these controls Further I should find the databindings of these controls. Can anybody give me some hints. If you don't have the control name, you still can access it using index of the control (you have to find out the index, perhaps by trial-and-error method), like: TextBox tb = ( TextBox ) GridView1.Rows[ rowIndex ].Cells[ columnIndex ].Controls[ controlIndex ] ; Hope that helps ...Show All

  • Visual C# Problem: generics, XMTA and VS SP1

    After installing Visual Studio SP1 a project cannot be compiled when compiling, for example, the following code and there is an XMTA file in the project: public class Test1 <T1> where T1 : System.Windows.Forms. Control { } public class Test2 : Test1 <System.Windows.Forms. Control > { } If this worked with the RTM version of Visual Studio 2005 please report this problem here: https://connect.microsoft.com/VisualStudio ...Show All

  • Visual Basic Preventing application startup after Publishing

    I have a VS Windows app written in VB. After I publish the project it automatically starts to run the application. However, for various reasons unimportant to this post I DO NOT want the application to begin running after the publish process has completed. Is there a way to tell a VS project to NOT start the app when publishing is done Also, for another set of various reasons I want to use Publish rather than Install. Thank you in advance. Sean. Had the same issue myself and got round it by creating a setup and deployment project for the application, lose some of the nice features of clickonce but the application does not run and you know where it is... Michael. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Suggestions on good DX9/D3D book(s)

    Hey there. I have been programming C++ for about 2 years, C for 1, and DX9 for about 2 months. This Fall I am starting up a 2D game project all using DirectX sprites and my kung fu is a little rusty so I would really like to find a book that covers DirectX/D3D well and epescially one that goes into some more detail about D3DSprites. I know that I can use the refference that comes w/ the SDK, but I would like something that explains and gives hints and such to me, not just throws function names at me. I sincerely appreciate it, Thanks Sprite stuff is pretty simple, and you won't find books dedicated solely to it. Personally, I recommend Frank Luna's new book ...Show All

  • SQL Server What is the common way to show archives in weblog?

    hi i want to create my own blog in c# and i m starting to design sql tables and i want to show my archive posts in that way, e.g Juli 2006(2) here 2 is the total post of blog articles in July. Agust 2006(10) September 2006(34) Oktober 2006(23) and so on... Here is my blog table... create table tblBlogg ( LId int IDENTITY(1,1) primary key, LUserId int not null, LCategoryId int null, LCaption nvarchar(50) null, LBody ntext null, LTime datetime not null default(getdate()), LMonth as datename(m,Ltime), LYear as datename(yy,Ltime), LIsActive bit null ) --Question 1)In Lmonth it comes with month name in english,how can i change to german in sqlserver 2000, or do i have to do in c# function --Question 2 ...Show All

  • Windows Search Technologies Desktop Search shortcut

    I'm trying to make a shortcut to launch Desktop Search with the Search Filter panel displayed. Does anyone know the syntax to do this "C:\Program Files\Windows Desktop Search\WindowsSearch.exe" /xxxxx What should the /xxxxx be to make this work Scott, By search filter do you mean that you want to launch WDS with a filter like documents, e-mail, or music pre applied cheers, Ed ...Show All

  • Windows Live Developer Forums VE and iframe

    Hi! I`m using VE from iframe, on IE it works fine, but on Firefox I get: this msg: bg.attachEvent is not a function veapi.ashx (line 1) J. ...Show All

  • Visual Studio 2008 (Pre-release) MSMQ? How many clients queues can connect to one server queue at one exact moment

    Whats the limitation. Client wants to know this to know how many MSMQ servers they need in a farm for any given scenario. For the PRO SKU, it’s hardcoded to 10. For all Server SKUs, the customer has to purchase them – that’s what guides the price of the OS (how many CAL licenses are purchased with it). ...Show All

  • Visual Basic How to build a VB program that run in other PC?

    Hi, I am using VS 2005 to write a VB program. Now I would like to make it as a .exe file that can be executed in any PC (with windows OS). What i have done in that, I build the VB program in VS2005, and i found there is a folder called "Release" is created during the building process. In that folder, there are 3 files with extension ".exe", "pdb", and ".xml". I have been tried to copy all these files to another PC with Win XP OS and run the .exe file, it failed to execute and an error signal pop up.... ! ....oh yes!, by the way, I have tried the .exe file in the PC where i created it, it works.....can someone help me! Thank you!! You need to hav ...Show All

  • Visual Studio Express Editions Crawling text on form

    I need to make some text crawl across the bottom of my form. What's the best way to do that and set crawl speed Thanks ! See also in this forum http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=491927&SiteID=1 ...Show All

  • SQL Server How to tailor CREATE DATABASE for an arbitrary instance

    Suppose the following: As part of a product install (using InstallShield)... I create a SQL Server Express instance (say "X") via a silent install I supply a script to create a database in instance X. The idea, of course, is to have a fully automated install. But there's one problem I can't quite see how to work around: - the CREATE DATABASE statement needs the name of a file to contain the database, and that file needs to be in a folder that belongs to the instance (e.g. Microsoft SQL Server\MSSQL.1, Microsoft SQL Server\MSSQL.2, etc). Is there a syntactic variant that allows me to avoid this problem Thanks Josh hi, usually referenced objects are to be considered cons ...Show All

  • Visual C++ Warning 61 warning C4996: 'CWinApp::Enable3dControls' was declared deprecated

    Warning 61 warning C4996: 'CWinApp::Enable3dControls' was declared deprecated e:\ teViewer.cpp 230 Because this function is declared deprecated, do I need to delete this statement and add some new function here Thanks you very much. "Deprecated" means that they are likely to vanish from any future release of the library in which they currently reside. If you look to the msdn documentation of the function in question, you would see that this very method is obsolete, as it's incorporated into the operating system. You can safely remove it from your code. ...Show All

  • SQL Server Select GetDate() Just the month or year

    I wonder if someone can help me with getting JUST the month and year from SQL DB. Using the Select Getdate() Statement. If I need to use another one that would work that would be appretiated as well. Thanks! Arnie Rowland wrote: Waldrop wrote: select year(getdate()) % 100 Careful with this one -it will drop the leading zero and return only That was odd -just put 6 in square brackets...(No negativity meant! -LOL) ...Show All

  • Windows Forms Mouse Movement ?

    Mouse Movement hi everybody ...... how do I know programaticly the directions of the mouse movement Ex""does it moves right or left or up or down". please explain to me programaticly. thanx in advance,,, The MouseMove Event of every Control has a MouseEventArgs argument e, through which information on the current location of the mouse is provided to the programmer. e.X, e.Y are members of the object passed to you that tell you the X and Y coordinates of the mouse. Now, if you store the location at first and then, with each mouse move, you compare the old location (oldLoc in the sample code), you know where the mouse is going. If the X coordinate has incremented, that means it is goi ...Show All

©2008 Software Development Network