migueldc01's Q&A profile
Software Development for Windows Vista Two problems with build 5231
1 - I have a dsl connection, so i go to "Create new connection". I select "Connect to internet", "Manually configurate" and in the next window i need to choice the second option, that is "Connect using broadband that nees user name and password" but is disabled (gray). I check help for that but all the answers are for XP and none works for Vista.. any help 2 - Now my PC stops when load. I choice the "Safe mode" and always it stop at "fvevol.sys" file.. y see somethin with netsh and ipv6 but how can i write that command if can0t join to Vista Thanks... ...Show All
.NET Development How to retrieve the SELECT statement from a dataset?
I trying to get the SELECT statement used to fill a typed DataTable at run time. Like in vb6 you used objAdodc.recordSet.Source or objAdodc.recordSource to get the SQL Statement The information is in the TableAdapter as design time but I can't access the SelectCommand at run Time. Any help would appreciated Thanks in advance Ger . you should be able to acccess the the selectcommand of the dataadapter and then the text with MySQLString=DataAdapter.SelectCommand.CommandText ...Show All
Visual FoxPro Primary key + delete....
General Design Question…. Suppose I have a table (Table1) with a primary key (PKId), if a user deletes a record then wants to add a record with the same PKId value there is a Primary key violation because the table has not yet Been packed. What is the best solution to this I have Considers the Following… 1) Indexing on PKId+!deleted() , but this would only solve the problem if he delete the record once, what happens if he deletes the second records he created The Delete will fail( ), or a primary key violation. 2) When deleting, replace the primary key with a value from a counter table. This will work but I ...Show All
Visual Studio 2008 (Pre-release) Ink Over Video
I am trying to allow the user to draw on top of a mediaelement(video) when the clip is paused. I have tried overlaying an inkcanvas over the mediaelement and also placing the mediaelement as a child of an inkcanvas. Using both methods, when the user draws on the video it tears (the underlying video isn't refreshing the current frame). The best solution I have come up with is grabbing the current frame as a bitmap when the user pauses and overlaying that to collect the ink. I would much prefer to not due this for timing issues and it causes some jittering on resuming playback. I have included my frame overlay code below, but I would greatly a ...Show All
Smart Device Development Hour Glass Like Wait While Thread Running
How do I get rid of the hour glass like timer while I have a thread running. The thread will be running for a long amount of time and I don't want it to interfere with user input. Thanks Cursor.Current = Cursors.Default ...Show All
Visual C++ Microsoft Visual C++ Runtime Library error question
I recieve this error when I launch Internet Explorer - version 6.0 OS Windows XP Home edition 2002 Service Pack 2. Error is as follows: Microsoft Visual C++ Runtime Library Runtime Error! Program C:\Program Files\Internet explorer\iexplore.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. I am not certain where to post this question and problem. Your assistance is greatly appreciated. Currently, I am using Firefox as my back-up web browser. had the problem with runtime error, removed google tool bar, ...Show All
Software Development for Windows Vista Install Sept ctp
I am using team suite beta 2 (.44 build) and installed the sept. runtime, sdk, and vs extensions on 2 different machines, but the WWF projects never show up in the New Project dialog. Also opening a sample (DocumentReview) tells me that the "project type is not supported by this installation". DanHaligas wrote: I am using team suite beta 2 (.44 build) and installed the sept. runtime, sdk, and vs extensions Can you clarify which SDK and VS extensions you're referring to Are you referring to the VS Extensions for Workflow or for WinFx Are you referring ...Show All
.NET Development Accessing IIS Hosted Remote Object with multiple threads fails with Concurrency error.
I have a client which spawns 5-10 threads all calling the same function of a remoted Singleton object hosted in IIS. All threads share a static reference to remoted object. I have removed the body of the function being called so as to narrow down the cause of the problem. When the thread count gets above 4 I encounter the following error: System.NotSupportedException was unhandled Message=" The stream does not support concurrent IO read or write operations ." Source="mscorlib" StackTrace: Server stack trace: at System.Net.ConnectStream.Inter ...Show All
Windows Forms infinite notes - How to?
I am looking for suggestions to handling large notes. Prerequisites: 1. Notes interface must look and feel like text editor. 2. Must use MSSQL 2000 3. Number and size of notes may only be limited by disk space. 4. Find notes via ad hoc queries. How have others approached this tia, Todd Did you ever solve this problem I have the same problem. Us ...Show All
Smart Device Development Modify a form by a thread
Hi all; I'd want to know how to access & modify parameters of a form by a thread. In fact, I want to change the text of a text box, or a value of a progress bar of the form1 in my thread. I tried this but without success, I pass the form in argument to the thread namespace Essai { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [ MTAThread ] static void Main() { Application .Run( new Form1 ()); } } } public partial class Form1 { S ystem.ComponentModel. ICon ...Show All
SQL Server Good SSIS Example tutorial - User Variables
Hi There I have read BOL extensively and gone to SSIS tutorial/example web links all day. Problem is the examples are way to simple. And the tutorials on BOL especially the DW warehouse example have no explanantion or step by step flow, and the others are to simple. I would REALLY appreciate it if some had a link or resource to a good complicated step by step SSIS tutorial/example. Or more specifically not a basic one, i am most interested in using variables to control flow, and the use of variables in expressions to set properties of a task. For example if i set a variable equal to a single result set in a sql task, how do i use that v ...Show All
Windows Forms Questions on using a timer
I have written a Windows service that needs to check other installed services to insure that they are still running. I want to use a timer to regularly perform specific tasks. However, the timer "Tick" event is not being fired (even though the timer is enabled and it has a valid interval). In my "OnStart" event for the service, I& ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Free PDF Release of "The COMPLETE HLSL Reference"
Paradoxal Press has just released a free PDF version of their "The COMPLETE HLSL Reference". The spiral hardbound copy can still be purchased but you can now also print your own copy for free :) Here are some details... The COMPLETE HLSL Reference is a small format (3”x6”) spiral-bound booklet intended to be a complete quick reference for assembly and HLSL shader developers. The reference includes a complete overview of all vertex and pixel shader assembly instructions, up to shader model 3.0, complete with parameter description and performance considerations. In addition, the booklet also includes a complete overview of all the HLSL intrins ...Show All
Smart Device Development Build rule
Hi, All! Could somebody tell me how can I choose Microsoft Macro Assembler Tool to buld *.asm file if this item is not present in "*.asm Property Pages" dialog->Configuration properties->General->"Tool" drop down list The same problem appears when I've ignored the Buld Rule Dialog at file addition... and in some other cases Thanks. Does http://blogs.msdn.com/jeffabraham/archive/2005/03/31/404283.aspx work for you There's a bug in the project system whereby this requires you to generate a .obj with the same name as your project in order to deploy, but you can address this by adding an empty .cpp wi ...Show All
Windows Forms Inheretance & Webservices
Hi all; I have an application that contains a form that is inhereted from parent form from a different assembly, everything works fine until I added a web reference. What went wrong Please help. ...Show All
