hallr's Q&A profile
Visual Studio 2008 (Pre-release) WPF goes mobile?
Hello, does anybody know if there will be a WPF-Player for mobile devices. I am interested in building User Interfaces with WPF for embedded systems. Maybe it is possible to generate targetcode for a specific embedded plattform Thank You! Drew -- I thought you liked me :-) For more WPF/e information from the PDC -- see PRS200 There is a demo of WPF/e running on the Macintosh and there is a demo of it running on a device as well (the in-browser application is a WPF Web Browser Application). -Arik ...Show All
Visual Studio 2008 (Pre-release) Why can't show the Indigo Service Page?
I have downloaded the Lab 1: The Fundamentals of Programming the Windows Communication Foundation, follow the lab1 correctly. Build it successfully,but I choose Run from the windows Start Menu,and enter: http://localhost:8000/Derivatives/ IE has no page,error text: Why How can I show the Indigo Service page Thanks a lot!! Koukai Internet Explorer cannot display the webpage Most likely causes: You are not connected to the Internet. The website is encountering problems. There might be a typing error in the address. What you can try: ...Show All
Software Development for Windows Vista Which Ati Drivers for my X800PRO?.I have 5308
I dont want to screw up my computer cause when i tryed to install the xp 64 drivers, i got errors about running in admisistrator mode(which i was in). And for some reason, the 5270 Drivers dont work.. Thanks for the replies. I'm using build 5308 as well, and i'm having trouble with the ati 5270 catalyst drivers as well. my card is an ati radeon x800 xt pe. I'm afraid you're up the creek without a paddle for now, unless you have a 3rd party card (asus, sapphire, etc.) and they have specialized drivers already. lucky for me i guess, vista picked my card up with no problem. the catalyst drivers never really treated me very well. what i'm ...Show All
Software Development for Windows Vista can't install the wwf!
the following are my steps 1.install vs2005 2.install vs2005 extension for wff 2.0 3.start the vs2005 ,it shows wwf is installed in started form 4.file->new project,can't find the workflow node! what's wrong with my steps my system is win2003+office 2000 Do you install the SDK and the Foundation Check in your control panel/AddorRemove program. You should see both the Windows Workflow Foundation and Visual Studio 2005 extensions for Windows Workflow Foundation. Bill ...Show All
SQL Server Web Site Admin Tool problem in VS2005
All, When I create a new project and try to use the WSAT security tab, I get the following : There is a problem with your selected data store. This can be caused by an invalid server name or credentials, or by insufficient permission. It can also be caused by the role manager feature not being enabled. Click the button below to be redirected to a page where you can choose a new data store. The following message may help in diagnosing the problem: Unable to connect to SQL Server database. I am using VS2005 beta2 with a local copy of SQL Server Express. I am new to all of this so a little help would be great Thx jonpfl ...Show All
Visual C++ Correct way to reference managed code
Hi, I am trying to call a form object using _beginthread(), if: Form ^ myForm = gcnew Form(); and void myThread(void * theForm) {...} and _beginthread(myThread,0,myForm); How do I use myForm within the thread function Thanks in advance! Ljubica You dont' need to use _beginthread in managed application, use System::Thread class for this. Thread function can be non-static class member, this means, it can access all other data from the class directly. public ref class Sample { Thread^ thread; void StartThread() { thread = gcnew Thread(gcnew ThreadStart(this, & ...Show All
SQL Server MS SQL vs free Databases
Hello I need to write an application which must use a database system as a backend, but i have not choosed which one to use. MySQL and PostgreSQL has all the features i want. the most important is database performance. anyone has an idea which database performs faster thanks in advance Hi, well SQL Server Express is very powerful, fast, and has rich features. There are normally other conditions that have to be kept in mind while decideing, but if you ask people in a MSDN group, I would say go the Express Way :-) -Jens Suessmeyer. http://www.sqlserver2005.de ...Show All
Windows Forms Custom DataGridViewColumn multiline text box
Does anyone have an example of how to create a custom DataGridViewColumn that would emulate a multiline text box control I have one I've done, but it allways get reset to the cell size and the multiline value gets set to false. I've tried to override the associated properties but still no success. Here is part of my current attempt Public Class ExpandedEditTextCell Inherits DataGridViewTextBoxCell Public Sub New () End Sub Public Overrides Sub InitializeEditingControl( ByVal rowIndex As Integer , _ ByVal initialFormattedValue As Object , _ ByVal dataGridViewCellStyle As DataGridViewCellStyle) ' ...Show All
SQL Server Stored Proc
I am working on a vb.net app w/SQL Server 2K backend. App uses microsoft's Ent. library Data Access Application block for data access. The app is working fine. I have stored procedures that will not return the desired results. Below is a sample proc. SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO SET NOCOUNT ON Go IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'RaidSiteCaseCount') BEGIN DROP Procedure RaidSiteCaseCount END GO ------------------------------------------------------------------------------------------------------------------------ -- Date Cr ...Show All
SQL Server Tag name from an XML
How can i get the tag name from an XML. Suppose this is my XML, <ROOT><NAME/><ADDRESS/></ROOT>, I need to read the tag name, NAME, ADDRESS. Using the local-name function: -- If you want to use the tag name in XQuery declare @x xml set @x = '<ROOT><NAME/><ADDRESS/></ROOT>' select @x . query ( 'for $i in /ROOT/* return local-name($i)' ) -- If you want to use the tag name in SQL declare @x xml set @x = '<ROOT><NAME/><ADDRESS/></ROOT>' select n . value ( 'local-name(.)' , ...Show All
.NET Development Voluntaries who are intrested to develop a site from the first step.
Hi, I use Microsoft Visual Studio 2005 and VB.NET to develop a web site. I really appreciate if I get help with the difficult part witch is the web FORMS. I want a form gathering Name and Family name of the site visitors and add it to a SQL Data base file and later by for instance another visitor this data base file has to be searched and retrieved. If I had a sample, it would help me very much. I don’t know about SQL and Programming in Visual Basice.NET either. Or if someone voluntarily helps me to develop this site or perhaps the voluntaries are too much so we can do it together as a group project. Thanks all of you. ...Show All
.NET Development .NET HttpListener has a limit of 2 concurrent requests handled at a time per process, How can I increase it ?
I created a simple server using HttpListener using .NET 2.0 The server simply accepts http connections from clients, sleep 3 seconds and return "OK" message. Server Code : HttpListener m_Listener = new HttpListener (); public void StartListening() { m_Listener.AuthenticationSchemes = AuthenticationSchemes .Anonymous; m_Listener.Prefixes.Add( "http://*:1234/" ); m_Listener.Start(); AsyncAccept(); } // this method is called in a loop to listen to new clients private void AsyncAccept( ...Show All
SQL Server How to control visibility of table columns at runtime?
Hi all.. Using ReportViewer in an ASPX page, is it possible to hide certain columns of a table at runtime That table is databound to a business object and I'm using local reporting capabilities of Visual Studio 2005. Thanks Jaime Hi Robert.. I meant programmatically. How can I change Visibility property of the table using code. Suppose the table is named tblDatos and report viewer control is named rptBusqueda. Jaime ...Show All
Visual FoxPro Setting papersize in Crystal Report from Foxpro
Hi Friends, i am using Crystal Report 9 + SP5 & Visual Foxpro 9 + SP1 All reports are created on "TVS MSP 355/XL Classic Printer", and the paper size used is 8" X 6", 210mm X 12" & 15" X 12". When i deploy my reports & software to client's machine, the paper size turns into default printer's paper size. how i code so that the software will automatically set the papersize i required. "crxreport.papersize = " doen't work. and please tell me what is the value of for above mentioned paper sizes Thanks in advance So what is the values of X & Y in setuserpapersize(x, ...Show All
Windows Forms Teaching .Net in Colleges
In January 2004 (possibly in September 2003), I will be teaching VB .Net at a local college. I was wondering what kind of ideas my friends over here have for me. Also, does anyone know of a school that is already teaching .Net I'd like to find out what they are doing too! Let me know as soon as possible as the 2004 class books need ...Show All
