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

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

dragoncells

Member List

comspy
Sajjad Akhter
Always Learning
larsfp
Kiran Suthar
Moim Hossain
JoshKorn
jhered
cPrince
Hasan9552
DocMoriarty
theonlykito
Tanny
StefanVirag
mikeret
elvis8900
Dennis Mark Thorsen
jpmk12
John Wesley Harding
rooooooodog
Only Title

dragoncells's Q&A profile

  • Visual Studio anyone recommend a drawing package for help files?

    a documentation related question. can anyone recommend a good drawing package to produce diagrams for help files. I like the diagrams shown in the MSDN magazine articles, so what do their authors use Jason Jason, there are many good illustration products on the market. If you're looking to do something like a flow diagram a product like Visio works well. If you're willing to commit more time to learning a professional design application you can use products like Photoshop, Illustrator, or Freehand. I would recommend you take a look at each application to choose one to meet your needs. They are all very different and the learning curve can very steep. Depending upon your skill level you may choose so ...Show All

  • SQL Server How to create simple insert trigger

    I have just one table but need to create a trigger that takes place after an update on the Orders table. I need it to multiply two columns and populate the 3rd column (total cost) with the result as so: Orders --------- ProductPrice ProductQuantity TotalCost -------------- ------------------ ----------- £2.50 2 £1.75 3 £12.99 2 Can anyone please help me You don't need a trigger, you need a computed column: CREATE TABLE [dbo].[___xxx]( [col_a] [int] NOT NULL default(2), [col_b] [int] NOT NULL default(2), [col_axb] as a * b, ) ON [PRIMARY] GO ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Rendering To Textures in Beta2

    I used Texture2D's heavily with the usage RenderTarget, however in Beta 2 its like a whole new API. I understand that Surface no longer exists and RenderTarget/2D should be used. The problem is, the whole mentality is backwards compared to what im used to. From what I see I should create a RenderTarget2D and set that as a render target, then do rendertarget.GetTexture() if I want to set it. Thats fine. However, how do I copy between render targets There is no StretchRect or equivelent function I can see, which I used alot before. Surely I dont have to go about getting a texture, setting it, creating a 'copy' effect, setting a new render target, resolving the new render target just to copy from one to another Is there no alte ...Show All

  • SQL Server sql connection string

    hello, im trying to prepare vb8 apps but i cant make a connection from different computers on network to database file location. i am using this connection string, is the ADO connection on dbfile name different from SQL Data Source=.\SQLEXPRESS;AttachDbFilename=\\server\database\inventory.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True and i got these error message The file "\\server\database\inventory.mdf" is on a network path that is not supported for database files. An attempt to attach an auto-named database for file \\server\database\inventory.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share. thank yo ...Show All

  • Visual Studio Team System Problem with Sharepoint using HTTPS in with Remote TFS

    HI, I have a dual server installation for TFS, I exposed to Internet and I configured the web server with HTTPS and SSL access. I have access to the projects, source control and work items, but I can Add new Team Projects, and the project portal is disable. the Documents and .... are not accesibles. I can have access to sharepoint either ( I suppose that it is because the same problem ) Can somebody help me. Thanks an advance, Roy What I have to check Should those fields (the urls returned by the web service GetRegistrationEntries) have the values pointing to the internal url or the external one. What those fields should have configured Another question, Which sites I should publish on the ISA Server Thanks ...Show All

  • Visual Studio Comparing 2 files in VSS 6.0d

    All I need to do is compare 2 file versions to see if they are identical or not. I really do not care what the differences are. Right now I am reading both versions of the file into variables and checking them for equality. Surly there is a better way Thanks! I should mention that I am using automation for this... ...Show All

  • SQL Server SQL Database connection set up in Global.asax.vb for multiple users

    We have an application where users log in and set up a ConnectionString based on the login-info. As to now, we have used Application.Contents("conn") = (strConnectionString) in Global.asax.vb (Application_Start section) and then in the in the webforms we use Dim con As New SqlClient.SqlConnection con = New SqlClient.SqlConnection(Application("conn")) con.Open() ...... ...... con.close() (Each user has their own sql database that they connect to using the same scripts.) The question is: When many users are logged on at the same time, will the use of Application.Contents be a safe way to connect to each users own database or is there a possibility that users suddenly will try to establish a connection to a databa ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Missing dxut.h header file in June 2006 SDK

    Hi, i recently tried to run the DXUT samples of the SDK documentation but did not find the dxut.h header file in the include directory. Anyone a suggestion where this header file is located And i still need help on creating a simple box. Thanks very much. ...Show All

  • .NET Development Updating Adds the same record to all rows in the Database instead of just one?

    Hello. I'm trying to update a single record in a database to add new data, but when I hit my update button and the event runs, it adds that record to ever record in the database overwriting the current data in the database. I'm not sure how to work around this problem. Any help would be greatly appreciated. Thank you. But if there's nothing in the record to compare then how do I use the where clause What I'm trying to do is add the record then save it to the database. So when I click my add button it adds a blank record. Then I entred the data and hit the update button to save that data to the database. I'm not sure how to use where when the new record is blank. ...Show All

  • Smart Device Development Custom Control doesn't invalidate original drawing area when resized

    Hello, I'm having a problem anchoring and resizing custom controls on Windows CE 5.0. For testing purposes I created a simple custom control that overrides OnPaint and draws a border. The issue is that when I resize the control, either programmatically or by using anchoring, the original region of the control isn't updated. If the control is docked, the entire drawing region updates correctly. Does anyone know why this is happening I'm using CF 2.0 SP1. Chris That did the trick! I'm still curious why resizing a custom control at runtime doesn't invalidate it automatically. It does force a call to OnPaint, so what extra actions are taken by calling Invalidate Thanks for the help. Chris ...Show All

  • Visual Studio Express Editions I declare preprocessor but it does not work

    In the header files i add a iostream.h in C++ class . But that the result . the compile does not understand the cout<< !!! . I am sure that the way i add preprocessor is wrong . How to add it correctly !!! I have try for 2 days with VC++ 2k5 but I can not find out . Any one can help me !! Happy Lunar Year ! Compiling... 1.1.cpp .\1.1.cpp(10) : error C2065: 'cout' : undeclared identifier 1.1 - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== For c++ programming you should include <iostream> not <iostream.h>, iostream.h is the old iostreams. Given that, after inclusion, all the streams reside in the namespace std. So you must either add a &qu ...Show All

  • Visual Studio Express Editions partial classes feature

    May I know how to turn off the partial class feature in Visual Studio 2005 (for express, and proffesional edition). Your avuable feedback is much appreciated. Thanks. IT is becuase MSBee is not support partial class feature in VS 2005. I failed to compile the program into .NET 1.1 version with MSBee. By the way, partial class is great while it seperate the designer code for us, but it do make some disadvantages too. It is hard for me to admend the class constructor and Main mothod in VB 2005. ...Show All

  • SQL Server placing norms on a bar chart

    Maybe someone can help. I'd like to do one of two things, depending on which is actually possible: Place one chart on top of another so that, in addition to having a simple bar chart, I can also have a way of tracking c omparison data on the same chart. (My preference is a line chart with diamond markers on top of a bar chart.) Within one chart, have one of the series be a different chart type. Once series could be a bar and the next could be a line with diamond markers. The catch is the diamonds would have to be placed right on top of their corresponding bars. These are both things that I've been able to do in Excel, but am finding out that I've taken for granted just how versatile Excel is. Thanks in advance! Krdjis ...Show All

  • Internet Explorer Development Manipulate page in a frame from JScript in IE6

    In IE6, is it possible to manipulate a web page that's loaded in a frame from JScript in the master page Access to the DOM and to click events would be most interesting. If not, I guess I'll have to write an ActiveX control (and come back with more questions :-). Hans-Georg As stated before, this is not possible cross-domain, however same domain it works fine. Sample code below (ie6/ff/op): <html> <head> <title>Test</title> <script type="text/javascript"> function init() { var frame1 = document.getElementById('frame1'); if (frame1.contentDocument) { frame1 = frame1.contentDocument.body; } else { frame1 = document.frames['frame1'].document.bo ...Show All

  • SQL Server Drop down parameter list not showing

    I have a report which uses the selection from Parameter A to populate the choices in Parameter B. At the moment Parameter B only has 1 choice (more to be set up later) and 2 things happen: a) The text for the Parameter B choice is too long for the drop-down box generated b) When I try to select from the Parameter B box the drop down does not show the text, only a left/right slider bar.  I have to click between the slider bar & the drop-down box and then click away for the selection to be made. Why does this happen and how can I increase the width of the drop-down box.   ...Show All

©2008 Software Development Network