dpwoody's Q&A profile
SQL Server SQL Network Interfaces, error: 26 - Error
I have SQL 2005 standard edition (64) installed on Win 2003 (x64) as the database server. (dbserver machine) Despite setting up: Remote option under surface configurator, TCP settings under configuration wizard, No firewall, I am still getting the same message when I try to connect from the application server using the SQL manager. I can connect to the server on the dbserver machine but not remotely. I have read through the threads in the forum and applied most recommendations without avail. Please help. Thanks Haluk Tezcan 1) Make sure your sql browser is started. "net s ...Show All
Windows Forms Backgroundworker Problem
Hi, I have a problem. Im using a backgroundworker object to do some processing, but the dowork method is not executing properly. When debugging, the debugger goes to the first line of code in the method, and does not move on. Can anyone give me some insight Here's the code: { int current = 0; localhost. Photo [] photos = galleryService1.GetPhotos( CurrentGalleryID); current = 0; foreach (localhost. Photo photo in photos) { System.Net. WebResponse response = System.Net. WebRequest .Create(ImageHandlerLocation + "Size=100&ImageID=" + photo.PhotoID.ToString()).GetResponse() as System.Net. WebResponse ; CustomPictureBox ...Show All
Visual C# multiple pages in windows form
you saw the book view in Ms Word for sure.(multiple pages not in print or report) how we can create this kind of view in Visual Studio .net which container control must be edit I want to have a simple multiple pages data in my form. I have a data reader which read feed my form by thousands of records these records are too short in their length therefore I rather have a splitter in my form with two panels : left and right.How can I fill the left panel with my single data reader then right panel and still active overflow panels ...Show All
Visual Studio Tools for Office InfoPath Regular expression and white space
Hi, If I create a simple form with a textbox bound to to a simple text element and put the following Datavalidation 'matches pattern' [1-9][0-9]{3}\s [a-zA-Z]{2} why is the following input wrong 1000 AA 1234 GZ 9099 ZZ I expect 4 digits, whitepace, two letters I'm out of any clues. Tnx Rene Rene, I wonder if the problem could be as simple as changing the rule to "does not match pattern". In InfoPath data validation works by defining an error condition, not a success one. iouri --- This post is provided "AS-IS" and confers no rights. ...Show All
SQL Server how to save result of sql query to .csv file "using command in sql query itself"
Hello there I m new in sql..i want to know wether above said task is possible in sql if yes then what is exact format of sql query command.. Thanks AVD YOu can have a look in the BOL for OPENDATASOURCE, there should a sample for an output to a propetary format. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Visual Studio Express Editions User Login Troubles
Hi, I pretty new to all of this. I have followed the tutorial on http://beta.asp.net/guidedtour2/ and is working all ok locally. When I uploaded to IIS 6 on a Windows Server 2003 SP1 and tried logging in using login.aspx it gave me this error: An attempt to attach an auto-named database for file C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WebSites\WebSite1\App_Data\aspnetdb.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share. What solution(s) can I try to get the loggin script working If anymore info is required like the Stack Trace I will ...Show All
SQL Server SSAS 2005 on Windows XP?
Can someone confirm that SSAS and SQL Server 2005 can run on Windows XP It appears that SQL Server 2005 Standard Edition will run on XP. See this thread(Towards the bottom): http://groups.google.com/group/microsoft.public.sqlserver.server/browse_thread/thread/75961fbd1984953d/780f1db7523e60ca lnk=st&q=sql+server+2005+run+on+xp&rnum=1&hl=en#780f1db7523e60ca ...Show All
Architecture Synergising Whitehorse, DSL's, GAT, Enterprise templates etc
Hi, This is my first post in this architecture forum. Theres some really good stuff floating around in the posts. Nice community. Hope I can contribute something useful. Anyway, heres something i've been thinking about since i attended TechEd Amsterdam last year. Beat Schwegler showed us a GAT package named Melted Cheese which created a 6 or 7 layer web service (one for the data, one for business, one for the service facade, one for an enterprise services facade and so on). It looked really good. I then started thinking that it would be nice to have that integrated with the App Designer. Right now if you create a web service, its just a s ...Show All
Visual Studio Express Editions Problem with free ebooks
I complete the activation process, two weeks ago, but i don't receive any e-mail with information about how to download the ebooks, if any have the same problem and know any email where i can get more information please let me know The instructions don't work. When I Click the activate product under Help to activate the product, it says, " the product has already been activated" ( a pop up window" thanks ...Show All
Windows Forms Detecting TabPages removed from a TabControl
I seem to have a problem detecting when a TabPage is removed from a TabControl. I am currently handling the ControlAdded and ControlRemoved events; however, the event handlers rely on the value of the Name property of the TabPage object. ControlAdded seems to work perfectly, while ControlRemoved seems to return either an empty string, or a null string. This issue is occuring during design time, and I haven't gotten around to testing runtime, but I'd still need this to work during design time. The TabPage being removed is returned in e.Control. private void tabControl1_ControlRemoved( ...Show All
Visual C# Basic IO stuff
Hi I have a small pointless program to write nothing fancy and most of it is done. The part where I am stuck is that the program write out to the console the results of a hand from a card game, the result are displayed on the console (this works) but I also need to write the results to an external text file. I am able to all ready write strings to the file but Console.WriteLine(); is not a string. Someone please help, it probably so easy to answer..... Doh! Regards Paul You can just use a StreamWriter to write to a file instead of using Console: usi ...Show All
Windows Forms Transparent labels
I am having very little success when I set the property of the BackColor of a label to Transparent. Does anyone know how to do this so I can put text over a color gradient In order to assign the Color.Transparent to any control BackColor you need to ensure the control is setup with the ability to handle it. Derive a class from Label and in the constructor add... SetStyle( ControlStyles .SupportsTransparentBackColor, true ); ...and then it should work. Phil Wright http://www.componentfactory.com Free UI controls for .NET2 ...Show All
Software Development for Windows Vista Custom Service and long running Workflow
I built a custom Service to listen to MessageQueue Messages: using System.Workflow.Runtime.Messaging; using System.Workflow.ComponentModel; using System; using System.Messaging; using Microsoft.SharePoint; using Microsoft.SharePoint.WebControls; using Microsoft.SharePoint.WebPartPages; namespace connvision.Sharepoint... { public class AskSharepointService : IAskSharepoint { string _SharepointSite; System.Collections.Generic.Dictionary<string, Guid> KeyToProcess = new System.Collections.Generic.Dictionary<string, Guid>(); public string SharepointSite { get { return _SharepointSite; } set { _SharepointSi ...Show All
Visual C++ cannot convert from 'System::IntPtr' to 'Form1 ^'
Hello, Im passing a pointer of a form to be used in a Event handler, this goes well untill the pointer is been converted to the form again. The code looks like this: class cBlah { public: System::IntPtr Parent; // Parent pointer static void (*EventHandle) (cBlah^ obj) // Event handle blah (System::IntPtr ptr, void (* handle) (cBlah^ handle)) { Parent = ptr; EventHandle = handle; } void OnEvent(void) { // Function triggered on event. EventHandle(this); } } class Form1 { private ...Show All
Windows Live Developer Forums Contest Deadline Question
Hello, I was wondering whether the launches for our applications will count past the 31st, until the winners are announced or will the applications be shut down for public access after the 31st My application should be complete on 27th-28th (before 30th for sure) and I would also like to get a chance to get some feedback (as well as launch points) from visitors and I (as well as most other people who entered this competition a little late) would greatly appreciate if the application launches would still be counted after the submission deadline. Thank you. We'll stop counting launches towards the contest criteria as of the ...Show All
