SamProsser's Q&A profile
.NET Development Integration .Net 2 SDK into Whidbey Express
Would u mind be so kind as to help me to cope with subj Problem:static link clr:pure required libs & so on. One said to me no need to trust linkers messages about missing user32.lib 'n' so on... Just integrate .NET PSDK and Express. Okay! Have somebody know-how (strict instructions or strict link to that one) 'Futures' to plenty-thanking... Hi, Here's a guide on how to use PSDK with C++ Express. http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ cheers, Paul June A. Domag ...Show All
SQL Server creating a table column that contains long string
I have made a database inside a C# project using project --> Add New Item --> SQL Database. I have made its tables and define the columns, but I need a data type that allows inserting a long string , as a news paper . When I use the 'text' data type , the inserted document can't entered as a whole, only subdocument can be entered. I need also to know how can I create a table that contains Objects . of any created class. Thanks, Aya. The text type can hold up to 2GB of data. Should be enough no Could you show us your insert procedure ...Show All
SQL Server sql 2005 cluster setup fails
am trying to install sql 2005 with cluster option in win 2003 R2 servers and keep getting sql database setup failed error.Summary log show that it failed with error number 67. It doesn't even create a SQLSetup0004_M2MTPONE_SQL.log file. core log shows Complete: DetectLocalBootstrapAction at: 2006/5/1 18:15:31, returned true Running: LaunchLocalBootstrapAction at: 2006/5/1 18:15:31 Error: Action "LaunchLocalBootstrapAction" threw an exception during execution. Error information reported during run: "C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\setup.exe" finished and returned: 67 Aborting queue processing as ...Show All
.NET Development Accessing the registry from a Web Service
I'm fairly new to this Web Service game so please feel free to suggest something different if it looks like i'm completely off track! I'm trying to write an application that runs on a Pocket PC that is accessing data stored in a SQL server database on a seperate server (not on the pocket pc). This will be deployed to lots of customers sites so I can't hard-code the location of the database in the program. I wrote a seperate little app to enter and store the connection string details in the registry so that data can be retrieved by the Web Service from the appropriate database and sent to the Pocket PC. All works fine with ...Show All
SQL Server SQL Server 2005 incorrectly claims I don't meet minimum service pack level requirements?
This doesn't make any sense. I am trying to install SQL Server 2005 on SBS 2003 with Service Pack 1. According to Windows Update, there is nothing left for me to install. However, I am getting this error (while installing SQL Server Express and the Developer Edition): "Your operating system does not meet Service Pack level requirements for this SQL Server release. Install the Service Pack from the Microsoft Download Center at http://go.microsoft.com/fwlink/ LinkId=50380 , and then run SQL Server setup again." When I go to the link, there is nothing there to download (it takes me to the main Microsoft download page). I meet al ...Show All
Visual C# Passing data between class and form in C#
hi.. i have to pass some data from a class file to form which is having richTextBox .. any sort of help is appreciated. thanks You refactor the class to it has properties: public class Customer { private string _name; public string Name { get { return _name; } set { _name = value; } } } Now in the Click event of a button or TextChanged event of the RithcTextBox you can set this property with the value you want: private Customer _customer = new Customer(); private void button_Click( object sender, EventArgs e ) { _customer.Name = richtTextBo ...Show All
.NET Development HOW to : Copy files with all extensions
HI , I want to copy files from one folder with all extension to another folder . How do i achieve this. For example : I've files with names like bs .txt, bs .mmx, bs .git , bs .yrt ( some extension for reference) now i want to copy all the files with bs name ( what ever may be the extensions) ...i tried system.io.file copy method using *.* at the end but it fails... Can anybody guide how to achieve it.. Regards, Bsraju In that case you'll want to use the overload of CopyTo that takes "bool overwrite" as its second parameter and pass true to it. -Shawn ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX 10
How will DirectX10 affect any current ATI Crossfire or NVidia SLI configurations when it's out for d/l I know that with Vista, there are drivers to update that support the new OS. If I built a system now, what can I expect what hardware not to be compatible with any API's Just to clarify, it's not DirectX10 but Direct3D10. No current graphics cards on the market today will be able to run Direct3D10. Due to the large changes in the rendering pipeline, you will need to wait for Direct3D10 graphics cards to be released. I suspect this will be a little before the release of Vista. If you were to build a system ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DshowNet and DirectX
First of all im new here and to C# so easy on me guys and forgive my english. I'm building an application on Motion Detection, actually its my graduation project and i can use all the help i can get... i dont need you to write the code for me i just need your help to understand it.. im using the DirectX class library.. and so far i was able to preview and capture the video from the digital cameras to the hard disk.. but i can't find a way to compare frams or detect the motion... some told me to use the DirectShow filters.. i looked for its documentation but didnt find any.. any help on the documentation or any ideas that might h ...Show All
SQL Server FOREIGN KEY problem on Creating new table
CREATE TABLE department ( code CHAR(20) PRIMARY KEY, [name] NVARCHAR(10) NOT NULL, brief NVARCHAR(20) ) CREATE TABLE major ( code CHAR(20) PRIMARY KEY, [name] NVARCHAR(10) NOT NULL, department CHAR(20) NOT NULL FOREIGN KEY REFERENCES department(code) ON DELETE NO ACTION ON UPDATE CASCADE, brief NVARCHAR(20) ) -- THE ABOVE 2 ARE ALL RIGHT!! CREATE TABLE class ( code CHAR(20) PRIMARY KEY, [name] NVARCHAR(10) NOT NULL, department CHAR(20) NOT NULL FOREIGN KEY REFERENCES department(code) ON DELETE NO ACTION ON UPDATE CASCADE, major CHAR(20) NOT NULL FOREIGN KEY REFERENCES major(code) ON DELETE NO ACTION ON UPDATE CASCADE, teacher NVA ...Show All
SQL Server Embed HTML tags into report fields
I have a need to render data returned from a relational DB with spacing intact. The application is a viewer for input data so the end user can determine if the input data is different than the file layout specified so the data will be parsed correctly, so spacing is critical. I changed to a fixed-pitch font to ensure that the text records align properly in VS (which they do), but when I render to HTML, the spaces collapse (of course). PDFs render correctly, but we were trying for HTML output. Is there any way to replace the native spaces with so it will render correctly in HTML From the other posts, it seems not, but I want to dou ...Show All
Visual Studio Team System Blocking 3rd Party Requests
Hello, My site makes requests that are basically embedded in the page as HTML images. These request go to verisign and ROI tracking URLs. Is there a way to prevent requests to those URL's from happening For example, can I block a request that has the text "seal.verisign.com" or "images.roiservice.com", etc. Thanks! Hey slumley, thanks for the information. Turning off all dependent requests is a nice feature. Hopefully we can filter specific requests in the future... ...Show All
Visual Basic jitDebugging
I have a VB.Net application that I have built in VS2005. I built a Setup deployment project and when I run the application on another machine I get an exception Dialog Box that says I must enable jitDebugging in the .config file. In my VB.Net application Tools Options menu under Debugging and Just-In-Time, I have Enabled the check boxes for Managed, Native and Script. Why isn't this sufficient to trigger JIT Debugging on the target machine Why doesn't VS 2005 add jitDebugging to my Project.exe.config file with these settings How do I get it to do so Why does the target machine not show the line numbers where the exception occurred i ...Show All
Windows Forms Bootable Framework
Is there a way to create a boot CD with the framework on it Yes. I was wondering if anyone had figured this out. If not, I guess I'll start looking into the GoMono project. ...Show All
Visual Studio Error while exporting
Hi When i tried to export to pdf, i found the following error Logon failed. Failed to export the report. Error in File C:\WINDOWS\TEMP\{CA326ABD-6268-42EA-B759-3B72A251F50C}.rpt: Unable to connect: incorrect log on parameters. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.COMException: Logon failed. Failed to export the report. Error in File C:\WINDOWS\TEMP\{CA326ABD-6268-42EA-B759-3B72A251F50C}.rpt: Unable to connect: incorrect lo ...Show All
