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

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

GeordieSi

Member List

Thundermaker
Kynaeus
DNF
MarkDer
MaurizioG
leabeater
Fred Stegemann
Harris YER
chiefmsb
ZipGenius
Gary_MN
sumesh_tewatia
SniperSlap
fatkids
Gholamreza
Stardust
tester12
Fabio Mattiussi
SJS19859
AWAL
Only Title

GeordieSi's Q&A profile

  • SQL Server CLR Enabled

    Can anyone tell me what this means and how to fix it I created a stored procedure in VS2005 and did a build. When I went to SQL Server there was the stored procedure but when I run it I get the error.... Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option I changed the 'clr enabled' property to 1 using sp_configure but I still get this error. Thanks Mike This works very well! But if I change the .Net application, adds new methods etc. how do I tell the MS SQL Server about the new features, without dropping and adding the assembly ...Show All

  • Windows Forms Could I build applets with WinForms to run in a Browser?

    Could I build applets with WinForms to run in a Browser If yes, where could I find same samples Thanks in Advance José Augusto Guimarães A cool example: <a href="http://weblogs.asp.net/frank_hileman/archive/2004/07/23/192509.aspx">http://weblogs.asp.net/frank_hileman/archive/2004/07/23/192509.aspx</a> ...Show All

  • Microsoft ISV Community Center Forums Hding your vba code

    I have also asked this question at http://www.ozgrid.com/forum/showthread.php t=52001 I have created an addin and it will be sent to other people (number unknown). WIll the people who have the addin be able to view my vba code behind it [the addin] Is there any security measures I should take to be on the safe side Thank You Hi, You can password protect your code very easily. In the Project Explorer section of the VBA editor right click the top most tree node of the project and select VBA Project properties. On the protection tab tick the lock project for viewing and type in your password. ...Show All

  • SQL Server using WriteNotifyEventHandler with tracefiles

    I've a fined tuned trace running that outputs the result to a tracefile. Currently I'm using the TraceTable class to read back the trace, which works fine. However I'm trying to use the WriteNotify event to react when this file changes, but it never appears to fire. I'm using the beta2 of SQL 2005, does this work in it Would anyone having a working example if it does Thanks, Cathal Thank you Maciek, I was (stupidly) trying to do it all with 1 TraceFile, your suggestion worked fine. Cathal ...Show All

  • Visual Studio Team System I have 2 Q

    1. I have a problem creating a New Team Project "Unable to connect to the Windows SharePoint Services at SQL2005DEV " why See the log below.   2. if I want to backup the project and restore it on another server with a different name is it a problem , I saw the I need to back up the DB and the share print server and and and .... is there a single simple on command line way or a batch file that can do it in a more simple way   ---begin Exception entry--- Time: 1/4/2006 6:04:30 PM Module: Engine Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed Exception Type: Microsoft.TeamFounda ...Show All

  • Visual Studio Team System Update Check In Comment

    I would like to update a check-in comment for a source code file that I checked into TFS version control. Is this supported If so, what tool should I use UI: rightclick the item, History. Doubleclick the relevant changeset in the History toolwindow Cmd line: tf changeset XXX brings up the same dialog. ...Show All

  • Windows Forms How do you put a Bitmap on the Clipboard using win32 API from a C# program?

    How do you put a Bitmap on the Clipboard using win32 API from a C# program public partial class Form1 : Form { public Form1() { InitializeComponent(); Bitmap bitmap = new Bitmap(50,50, this.CreateGraphics()); using (Graphics g = Graphics.FromImage(bitmap)) { g.Clear(Color.White); g.FillRectangle(Brushes.Yellow, 10, 10, 30, 30); } MyClipboard.PutOnClipboard(this.Handle, bitmap); } } public class MyClipboard { [ DllImport ( "user32.dll" )] static extern bool OpenClipboard( IntPtr hWndNewOwner); [ DllImport ( "user32.d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. drawing a colored, transformed quad not working as expected

    So I just switched over to Managed DirectX For .Net 2.0, and since I can no longer draw an array of verticies, I've been playing with Generic.GraphicsBuffer(Of CustomVertex.TransformedColored). It gave me this odd shape with only 4 verticies specified: Screen Shot. The white is not part of my app, the quad should have been at location 100,100 with size 100,100... which looks right.  Any ideas on why the one face is reaching up to 0,0 It looks like your 2 triangles are being drawn correctly, but an additional one is being drawn as well.  I'd check your draw call to make sure you're only dra ...Show All

  • Windows Forms how I can open e MDI form

    I'm new in VB.net What do you mean    Rules for MDI is to have at least one MDIParent (set in the properties of the form), and whenever you create an instance of a form for that parent, you set the MdiParent to that form. Dim NewForm as Form1 = new Form1() NewForm.MdiParent = me NewForm.Show() ...Show All

  • Visual Studio Team System What about test planning?

    I've been looking through the MSF for CMMI documentation but couldn't find nothing about test planning. I'm currently working on a project that focus in quality assurance and we were planning to use MSF for CMMI as base for our own methodology. The point is: test planning is a key area for us, we found roles and activities covering test requirements and their execution, but nothing about planning how it should be done (we're using Quality Point from Compuware as well and it defines a lot of roles, activities and artifacts about that). Is this a definitive condition of MSF or it will be, somehow, addressed on future releases ...Show All

  • Windows Forms Adding a control to an user control, and allowing it to be visible outside of the parent control

    I'm writing a derived control that is based on a RichTextBox. Within that derived control, I am adding a ListBox. I want the listbox to be able to display outside of the RichTextBox control though, but I'm not sure how to do that. Currently, I am dynamically creating the ListBox control, and adding it to the RichTextBox with the following code: ListBox myListBox = new ListBox(); this.Controls.Add(myListBox); How can I make that ListBox display outside of the RichTextBox if I need it to Thanks, Chris Thanks, that works perfectly! ...Show All

  • Visual Studio Express Editions VS and Access 2003

    I am looking for a tool that would convert an Access 2003 Data Base (mdb) file into an executable stand alone application. Would the VS Express do the trick Is it difficult to do it Also, I am going crazy trying to find the download link for the VS Express. The only one I found was the image files to burn into a CD. Is there a way to download the instalation file directly from MS The home page for the VS Express mentions that it can be download it, but it never provides the link. Thanks Yes VS Will be able to make a standalone application that you can use, but you will have to code the solution ...Show All

  • Visual Studio Team System How can I encode a POST body in a coded webtest?

    This is my feable attempt: byte [] cmdBytes = Encoding .UTF8.GetBytes(strBody); Stream st = request1Body.GetBodyStream(); st.Write(cmdBytes, 0, cmdBytes.Length); st.Flush(); st.Close(); Throwing the following exception: {"Memory stream is not expandable."} Awesome! Thanks again Josh. This is extremely useful for emulating mobile application requests which require encryption and compression. ...Show All

  • Visual Studio How to Render and Print a local report without showing preview to user?

    In my Windows Forms application, I am able to successfully render a report. Naturally, there are two ways to go about this from a user experience standpoing. 1. "Print Preview" - Opens up a simple form containing a ReportViewer, shows the Form, renders the report. The user can then print, and the PrintDialog is shown with the simple ReportViewer container form (presumably) as the Parent. 2. "Send to Printer" (No Preview). The desired behavior is to send the exact output that would be obtained with #1 (above) to the printer, but without displaying the report to the user. Ideally, a form of my choice (say, that contains the button or menu opti ...Show All

  • Visual Studio Team System How can I find out what my team has checked out?

    I am a team leader and new to TFS-VC. I am familiar with the Pending Changes window to show what I have checked out, but how can I find out what the rest of the team has checked out I’m looking for something equivalent to the old SourceSafe “search for status” dialog, that allows you to view either all checked out files or those checked out to a particular user. Also, I have seen the command-line statement tf /status /user:* and even though it does do pretty much what I need, I much prefer a GUI tool and something integrated within Visual Studio. Thanks. As of this moment, I cannot t ...Show All

©2008 Software Development Network