Media's Q&A profile
Visual C++ Runtime error: Unhandled exception at 0x004cd752 in quikcomp.exe: 0xC0000005: Access violation reading location 0xffffffff
Hi all, I am experiencing a runtime error that I am having trouble solving. I am extending a current application to include SSE intrinsics. During runtime, I receive the following error: Unhandled exception at 0x004cd752 in quikcomp.exe: 0xC0000005: Access violation reading location 0xffffffff Here is a code snippet: __m128 *mPre = NULL; __m128 *mDst = NULL; __m128 *mPost = NULL; curK = kHalf; do { ...Show All
Visual Basic How to get a string between 2 arguments.
im searching a textbox for a string using 2 arguments. i will be getting more then one of each. the arguments are [ and ]. for example: the quick brown [fox] jumps over the lazy [dog]. i want to be able to get [fox] and [dog] using the arguments. i do not want to use arrays because it will be to slow. so my output will be [fox] and then it will be [dog]. i searched the net for something like this but nothing helped. thanks. ...Show All
.NET Development converting xml to html using xsl and preserving newline / formatting ??
I want to build a web page on the fly based upon data stored in SQL. I currently read the data into a datatable and extract the xml representation. Using xsl I then apply an xslt stylesheet to produce an html representation of my data. This works great, however ... Some of the data contain embedded \n character (entered via a richtextbox). How do I preserve these so the resultant html reflect the formating. Currently all formating characters are ...Show All
Smart Device Development How to start iexplore
How to start iexplore with html page from .NET controls I have CF 1.4. and System.Diagnostics.Process doesn`t exist :( Hi The OpenNETCF.org ( http://www.opennetcf.org ) Smart Device Framework implements a class named OpenNETCF.Diagnostics.Process which provides this functionality. Michael ...Show All
SQL Server Migration of DTS packages to SSIS
I am in a situation where we are redesigning our Datawarehouse. Currently we have our Datawarehouse in SQL 2000 and we are rebuilding from scratch in SQL 2005. This means that even though we will get the same tables but we are planning to rename each & every attribute to make it more meaningful. The question is like this: We can migrate the current DTS packages to SSIS but since all the ODBC connections , field names(attributes) will c ...Show All
SQL Server between operator
Hi, I'm having problems using the between operator in a query statement. Select * from <mytable> where date between @date1 and @date2 The date values with a hour specified, aren't returned. What is the approach you would recommend here Thx EDIT: by playing with this problem I've figured out I can append the hour to the date like this: <date> between @fromDate + '00:00:00' and @toDate + '23:59:59' ...Show All
Software Development for Windows Vista Creating user interface elements (especially forms) from workflow activities
I am trying to solve a number of use cases where a particular workflow is required to "create" a variety of different Windows forms. Based on the workflow running on a different thread than that of the main thread running all the other user interface elements, I am starting to think that this type of use case might not be a good candidate for WWF ... thoughts Am I trying to use the technology is an incorrect way I understand how ...Show All
.NET Development Could you write a XSD file for the requirements? thanks!
Could you write a XSD file for the requirements thanks! 1. The Folder elements and the Bookmarks element can occur with free order 2. The Folder elements can occur 0 or unbounded times 3. The Bookmark elements can occur 0 or unbounded times I have made the following code Part A-1 and Part A-2, they work well, the only problem is that the Folder elements must be at front of the Bookmark elements. So I have to write the code Part B-1 and Part B ...Show All
Visual C# Graphics
Hello, I'm looking for a code sample for creating graphics, edit pictures and save/load them. Can someone help me Here's an image class library that you can use for free http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1145317&SiteID=1 ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Game Server Question
Hi, I would like to get some information in regradrs of Game Server Technology. 1. Is there a "know-how" / white papers or any other source that can describe how to build a game server 2. Are the peer-to-peer games (like NBA2K6 / FIFA2006 etc.) can be running thru a game server (in order to allow ranking of players for instance) 3. Is there an open source game server technology Thanks! ...Show All
.NET Development How to Host a Web Service
I am facing problem in hosting .NET Web Service on windows 2000 Advance Server with port other than (80) . Can some one tell me the procedure of hosting web service. So that by doing this people can add reference of my web service. Thanks, Saeed Nawaz all you have to do is to setup IIS. you can create website (with differetn port than 80) or create virtual folder for Web service. once you have done this people can reach you servic ...Show All
Visual Basic searching a text box
Hi all, I need to search a textbox for a phrase like "R20" or "R21" or "R44" The phrase could be anywhere within the text and in any order and buried within a string of text eg.(Harmfull to.... R20, flammable liquid....R45), when I have found the phrase I need to copy it over to another text box to build a string like R20, R21, R44. I have tried everything I know as a VB newbie but am completely stuck on th ...Show All
Visual C++ Error with istream_iterator
Hi, I am new to using Microsoft VC++and STL . Just wrote a test program but doesnt seem to be working. Can any one tell me what the problem is #include <iostream> #include <algorithm> #include <list> using namespace std; int main(){ int a[10] = {12, 3, 25, 7, 11, 213, 7, 123, 29, -31}; int *ptr = find(&a[0], &a[10], 7); list<int> list1(&a[0], &a ...Show All
Visual C++ how to burn dvd using vc++
hi!everyone! i am developing an windows application to burn dvd using vc++.the os is windows 2000.what can i do is there any api i can use is it hard if it is ,what is the hardest part You probably want to check out the Win32 discussion boards as they will have more information about the APIs you need to use to do this kind of thing. Check out http://msdn.microsoft.com/newsgroups/topic.aspx url=/MSDN-FILES/028/201/015/topic.xml to see the ...Show All
Visual C# How to create a new instance of the template type?
Hi everyone :) Lets see what my problem is. public class MyClass<T> { public MyClass() { T entity = new T(); //This is wrong. } } My question is, how can I create an instance of type T in such case, thanks You can't, because you don't know if the ctor of T is parameter less and if the ctor is even public. Why should you want to create it ...Show All
