Software Development Network Logo
  • Visual C#
  • Windows Forms
  • SQL Server
  • VS Team System
  • Architecture
  • Smart Device
  • Windows Live
  • Visual Basic
  • Windows Vista
  • VS Express Editions
  • Microsoft ISV
  • Visual J#
  • Visual C++
  • Visual FoxPro
  • Visual Studio

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

trasherhits

Member List

Mathy
Simon.kx
DOrsborne
N Anderton
totocasagrandi
joltinjoe02
Ling Bao
勇敢的心
bluffmastor
lmsa
Haydee I
fcremer
Bsraju
Tom Dacon
Madisn
gaile
Gerald00
WATT
Humphery
Ralph Gasser
Only Title

trasherhits's Q&A profile

  • Windows Forms Button Text and Image depression

    Does buttons with image embedded on them synchronize both text and image depression while clicking them in .Net2.0 I could find that when a new project in VS2005 is created and the form contains the button control, the look and feel at runtime satisfies the requirement. However, when I use a project originally developed in VS2003/.Net1.1 & now migrated , placing a button from .Net2.0, the run time does have the same problem. ...Show All

  • .NET Development Application server, why?

    My manager wants me to know why we should have an application server in our web app. Currently, our web app talks directly to SQL Server. What are some of the pros and cons of having an application server (generally speaking) --SY If your talking about a physical server then there is a lot of advantage. Like Pete said, if you seperare the Application from the Database (2 server) hacker will not h ...Show All

  • Software Development for Windows Vista Designer wish list?

    I have been playing around, and making some presentations to some people in our group on WF, and the way that can be used not only for programming purposes, but also for designin and presenting business processes. Here is a couple of questions (should I call it wish-list ) on the designer. If someone in the team could give some feedback on this I would appreciate it: 1. Ability to drag-and-drop "comment" activities (like the 'annotation' sh ...Show All

  • Visual Studio Express Editions free use after 6.november and free license?

    In some german websites (in this case the source is : http://www.pcwelt.de/news/software/123690/ I read that a free-use of VS2005 Express AFTER the 6 of november is available. Is that right this is original in german language: Microsoft weist ausdrucklich darauf hin, dass alle, die wahrend des einen Jahres die Produkte gratis herunterladen, auch eine unlimitierte Lizenz fur die Produkte erhalten und diese auch nach November 2006 gra ...Show All

  • Visual C++ help please with returning multi-dimensional array...

    is there some way to return a mutlidimensional array from a function double *MatrixMultiply ( double m1 [][ 3 ], double m2 [][ 3 ]) { int r, c; for (r = 0 ; r < 3 ; r++) for (c = 0 ; c < 3 ; c++) m1[r][ c ] = m2[r][ 0 ] * m1[ 0 ][ c ] + m2[r][ 1 ] * m1[ 1 ][ c ] + m2[r][ 2 ] * m1[ 2 ][ c ]; return (m1); } Yes: though it uses a very strange syntax double (*MatrixMultiply( double m1 ...Show All

  • Visual Studio Express Editions Visual C# Express Build Events

    I need to execute a command line statement prior to a build takes place and another command line statement after the build takes place. The place to do this is in Build Events on the properties for the project. However adding any command to either of the events results in a build failure (this is not a runtime error). The error message from the compiler is: "The command "blah blah blah" exited with code 1". The command ...Show All

  • Visual Studio "passing along" files from a custom editor to standard editor

    I have a custom editor for XML files, but I only want it to read specific types of XML files that contain a certain Element. I'd like for the custom editor to check for the existance of that Element (already does that actually) and if the XML file does not contain that Element, just pass the file along to be handled by the standard XML editor in VS. I'm not sure of the correct way to "pass that file along" in my EditorFactory though ...Show All

  • SQL Server Multiple Columns in Parameter Field

    Hi I have a report that has a number of parameters in it that the user must select prior to running the report. One of these parameters is the site_ref that they wish to use against the dataset. All my books point to the fact that if you wish, you can select what appears in the parameter field so the user does not get confused. So rather than the user having a list of site_ref which maybe useless to them, they can have a description next to e ...Show All

  • Visual Basic Call

    Hi, I have a question. Wich is the performance difference between using the word 'call' for calling a sub and just use the name of the sub. I believe that there is no runtime performance difference - it never makes it to il. It might have some neglegible effect on compilation. ...Show All

  • Visual Basic My DATA SOURCES

    A newbie looking for an answer, Yesterday I wrote a few documents in Word and Mail Merge. Today I found a file folder named MY DATA SOURCES in my douments with the following inside : +connect to new data source, +New SQL Server Connection, and DATACONN HTC file,. I am a newby looking looking to find out what to do with this file. Windows XP SP2, Office 2003 Thanking you in advance, Frank I.G.R. I fo ...Show All

  • Visual Basic Textbox beep

    I'm using a textbox. Multiline and AcceptReturn are set to True I want to detect a carriage return and I have the following code: Private Sub tb1_KeyPress( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles tb1.KeyPress If e.KeyChar = Chr(Keys.Enter) Then Parse() End Sub It works as desired BUT I receive a beep when the parse code completes. I also receive a beep if noth ...Show All

  • Visual Basic How to add CheckBoxcolumn to Datagridview?

    Hi, I'am using DatagridView to display particular data .In this i had already added one checkboxcolumn manually through Datagridview Task. Now i had created new instance of datagridview and i want to show data of different table in it. so i had added column through code. But it is taking the previou CheckBoxColumn though i had created new instance so will u tell me why this is happening.And how do i use one datagridview to displ ...Show All

  • Windows Forms IRootDesigner and Managed C++

    Hi, I'm trying to write a designer for a component in Managed C++, I inherited from IRootDesigner and Component designer, Got the designer working successfully and it is showing my view in the designer view of the visual studio.  The problem is when ...Show All

  • Visual Studio Express Editions BindingSource.Filter help please

    Hi, I have an Access database which I've managed to link up to my VB.net application, and I can view whole tables, edit the data within it etc just fine. However, I would like to filter one of my Tableviews to show only the rows where the value in the UserID column is equal to the User logged into my application. The form this Tableview will be on has access to the current user that is logged on by: Public thisuser As String with that stri ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. render problem

    I am a chinese,I'm sorry my english is bad.The question is:(I use DX version DX9.0c.) LPD3DXSPRITE spr; LPDIRECT3DTEXTURE9 tex; D3DXCreateTextureFromFile(Device,"One.dds",&tex); D3DCreateSprite(Device,&spr); Device->BeginScene(); ... spr->Begin(D3DXSPRITE_ALPHABLEND); spr->Draw(tex,NULL,NULL,NULL,0xFFFFFFFF); spr->End(); ... Device->EndScene(); It would have a transparent effect,yes,I did see transparenty.But the alpha ...Show All

©2008 Software Development Network

powered by phorum