white_angel_22's Q&A profile
Visual C++ MFC documentation
I have Microsoft Visual Studio 2005 Professional installed on my machine. So far, this product has been an incredible hassle and ridiculously difficult to use. I have the task for writing a simple application for Microsoft Windows, and the MSDN library is installed, but I can't search for MFC functions at all. The MSDN library keeps trying to give me totally inpertinent results. I have used Visual Studio in the past, and the older versions were a lot better. I ONLY want to see information about MFC. Is there a way to set this Thank you. Perhaps my question is not clear... I cannot access the internet from within my Windows box. I can only use what was installed from the Visual Studio Professional 2005 ins ...Show All
Visual Studio Team System <ALLOWEXISTINGVALUE> not valid for System.Reason
Can anyone explain why <ALLOWEXISTINGVALUE> is not allowed for System.Reason. I would think this is just an ordinary string field. Thanks. Here is the section of one of my WorkItem types that has the new field and the WorkFlow. I also use GlobalLists alot so I included these also. Hope this helps. < FIELD name = " DashReason " refname = " Nowcom.Dash.Reason " type = " String " > < WHEN field = " System.State " value = " Active " > < DEFAULT from = " value " value = " New " /> < REQUIRED /> < ALLOWEDVALUES > < GLOBALLIST name = " Bug.Rea ...Show All
Visual Studio Express Editions Which .lib file is linked for the iostream.h ?
Okay, I set up my VC Express 2005 for the PSDK. Since then, the 'cout' object stopped working in my programs. This is the error I get : TimePass.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl std::operator<<<char,struct std::char_traits<char> >(class std::basic_ostream<char,struct std::char_traits<char> > &,char const *)" (__imp_ $ 6DU $char_traits@D@std@@@std@@YAAAV $basic_ostream@DU $char_traits@D@std@@@0@AAV10@PBD@Z) referenced in function _wmain It says there is an unresolved external reference. So I want to link the library manually, which of course was supposed to belong to the d ...Show All
Silverlight (formerly WPF/E) Questions on WPF/E
Hi, I have been reading blogs on WPF/E and it's has got me pretty excited: I had a few questions on it: 1) I plan to use WPF/E to design a kind of user input form (WPF/E to get better user interaction - do something funky) - Can this be done 2) Can I make call to webServices from WPF/E application to process data, Is there any built in support 3) What are the things I could do in WPF/E which cannot be done in Flash - i.e. what is it that would drive people to migrate from Flash to WPF/E. Thanks in advance. Regard - A..K My post on this may help. Also, see Mike Harsh's post here may help as well. Related to web service support, we don't have built-in web service sup ...Show All
SQL Server calendar format
Hi, everybody. I have a problem with the calendar. I have a parameter from datetime type. But I want to change this calendar's format. When I click the calendar button near the parameter textbox and select a date like 14.3.2001, 3.14.2001 is written to the textbox. And this causes to an error.(Because 14 can't be a month number) How can I change that parameter's format or calendar's format Any idea about this Daniel Reib wrote: The date supplied to the calendar is based on the accept language for the browser. In IE look at Tools->Internet Options->Languages and make sure the top language is what you expect. Thanks I did what you said but it didn't work. Because I am not working on IE now . ...Show All
Visual Studio VS.NET 2005 Automatic Debugging when a dll gets loaded
Hi Folks, I have an unmanaged dll which gets called by the Logonui.exe (basically this is a credential provider for windows vista that i am talking about). Now I want to have the VS.NET debugger to get launched when my "xyz.dll" is loaded by the LogonUI.exe I created a key named "LogonUI.exe" in the registry (of course at the appropriate place) and added a string value to it called "Debugger" and the value to that I gave as "devenv /debugexe" Basically the logonui.exe will inturn call my "xyz.dll" and I want to debug that xyz.dll and I created it using VS.NET 2005 (unmanaged dll). When the Logonui.exe gets kicked in when I boot my computer I can see the vs.net gettting st ...Show All
Visual C# Learning C#
Hi, I would like to ask anyone here for their advice on where I should start with C#. I have been programming for nearly a year now and dont know any other languages other than the VB family, such as vba, vb6 and vb.net. Since i have been programming with .net I have learned alot from the msdn library that comes with the installation of Visual Studio, and whenever looking at the example of code I still am always drawn to read the C# code. Something is just making me want to learn this language, However a good friend of mine is trying to alter my path by suggesting I learn C++. Learning C++ I would like to do, and also think I would benefit with the fact my friend knows the language. But may it not be a good path to learn C# then g ...Show All
SQL Server Teradata data source and Parameters
Does anyone have any experience setting up paramters when using a Teradata data source I am specifically looking for how to set up dates and multi-select drop down boxes as parameters. Using a fixed query against Teradata using SSRS is straight forward and is working well. Parameters, not so much. R Please check my response on your other thread for some more information: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=820351&SiteID=1 -- Robert ...Show All
Visual C++ IDE for C++ 2005 Problem with Resources
When i add any control in Visual C++ 2005 Form Designer or add a new resource string (It's displayed in arabic without any problem) but after i save the file , the resouce file doesn't save it in arabic then it will not be displayed in the right way. I to add any resource string in arabic without open .rc file in an external viewer. Any Suggestions Thanks Ted. for your help, I have installed SP1 and the problem was resolved. I had to wait about 45 minutes till it's installed like windows installation but my problem has gone. Thanks alot. ...Show All
Visual Studio 2008 (Pre-release) Why is everything so slow ?
The following code may not be a real-world application but it shows our main problems with WPF: slow rendering with many controls. I didn't find any hint to make those things faster. In this sample I've tried to use a bitmap effect. With this effect set, the application gets absolutely unusable - but even without bitmap effects the performance is poor (just try resizing the window - I used a fixed canvas size here to force redrawing). XAML: <Application x:Class="WindowsApplication2.App" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " StartupUri="Window1.xaml" > ...Show All
Visual Studio 2008 (Pre-release) InlineUIContainers not firing any events in the RichTextBox
Hi, Up until the June CTP, I was able to trap events from elements inside a InlineUIContainer, e.g. // Wherever you create the InlineUIContainer Canvas can = new Canvas(); can.Width = 80.0; can.Height = 20.0; can.Background = Brushes.Blue; can.PrevewMouseMove += ........ InlineUIContainer uiCon = new InlineUIContainer(can); This used to work find as any delegate added to the elements (even though the InlineUIContainer was "Disabled") would fire. Now it doesn't. Can someone please help me Thank you very much, Jaco That is very strange, so is there any reason why the control inside the InlineUIContainer can't be disabled, but still fire events (I know its a b ...Show All
SQL Server Render RS Report to Excel and changes Sheet Names
I am wondering if anyone knows how to change the sheet names in Excel when exporting a report from Reporting Services 2005. In other words, I have a report with approximately 5 page breaks built in. When I render the report to Excel, it creates the 5 sheets as I expect, but it names them "Sheet1", "Sheet2", "Sheet3" etc... Is there a way to specify the name of the sheets I am currently using a different table in my report for each sheet, but I am open to structuring this differently if needed. Hi, no this is not supported, but will be eventually targeted within later releases. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Windows Forms Identifying selections in ListBox multi selections
How do you identify the several items selected in a multi select ListBox Perhaps some code that would do the intended purpose of the following: for(int i=0;i<numListedItems;i++) { if(myListBox.Items is selected) // does anyone have a line of code to do this } As the ListBox was populated by a DataSet, the object type to be used in the coding is "DataRowView". That worked fine! Thanks all ...Show All
Smart Device Development How do I include a dll in my project
Hi everybody, I’m trying to use a dll in my Project using: [DllImport("shapelib.dll", CharSet=CharSet.Auto)] I add the dll file doing: right botton of the mouse over my project - > Add existing item -> And I select the dll file. The project compiles ok but when it uses the dll I get the following unhandled exception: System.MissingMethodException was unhandled Message="Can't find PInvoke DLL 'shapelib.dll'." How can I use a dll file in my Pocket Pc Application Thank you, Have you checked using file explorer on device if file indeed exists If it does, it might be what you using DLL not designed for your device. If you don't know, you should ask who ...Show All
Visual Basic carry on execution after event "_leave" run
Hi, image a textbox, the cursor leave it for another object like a button; I would like to carry on execution). e.g. textbox1 button1 button2 button3 button4 cursor is on the textbox1, button 1 is pressed. the event "_leave" for the textbox outputs a msgbox then I would like to carry on the execution of code inside the button1, insted of pressing it again. I accept any solution, the only important thing is that when textbox1 is leaved for an object in the form a msgbox is shown. Anothe question: I would like to apply this only for some object. e.g.: if button1,2,3 are pressed the event "_leave" for textbox1 run, but not for button4. How can I do Thank I don't think th ...Show All
