Ricky Kelley's Q&A profile
Software Development for Windows Vista Jason Sacks - Alittle information on my confusion please.
I was referred to the Vista Beta 2 by a friend. I have gained access to MSDN at a OS level. I have downloaded Office Pro 2007 Plus, and have allready found a repetative bug. However achiving a download location for Vista Beta (any build) latest I belive is 5365 is impossible. I am not interested in SDKs to build programs as I am a end-user. I have went to : http://www.microsoft.com/windowsvista/default.aspx Main Info Page. http://msdn.microsoft.com/windowsvista/downloads/products/getthebeta/default.aspx The so called "Getthebeta" Download the Latest Windows Vista If you are not already a member of the Windows Vista ...Show All
Audio and Video Development Mpeg1 format support?
Hello everyone, I was trying to rewrite the VideoSource example provided in the MF SDK as a mpeg1 source filter that output two streams (one for video payloads and one for audio payloads). In VideoSource::CreateMediaType() I was supposed to convert a AM_MEDIA_TYPE that presents a mpeg1 video payload media type into a IMFMediaType format, however, the MFCreateMediaTypeFromRepresentation() function does not seems to recognize the AM_MEDIA_TYPE and return E_INVALIDARG. Can someone gives me a hint about what is done in the MFCreateMediaTypeFromRepresentation() and is it currently possible for MF to do mpeg1 file payback, like mpeg decod ...Show All
Software Development for Windows Vista workflow and web apps
How do you go about utilizing WWF in a web application I'm currently looking into building a workflow system for publishing web pages in a cms. I've got a basic workflow built and have been testing it using a console application. I need to port this workflow to the web application where users would interact with it using webforms instead of a console app. I'm a little confused on how this would be done in a stateless environment. The workflow is the usual review process... a reviewer receives a notification via email that a page needs to be approved. They log into the web app and do their review and either approve or reject the page. If a ...Show All
SQL Server report builder cant join views?
Hi friends i have quick question with report builder utility .am using VS2005 and Sql 2005. When creating report model solution ,when adding field names from a table it loads fields names as it is ,right so to make end users life easier i created Views with lengthy field names. the issue is ,i'll start with an example ,i've 2 views (ParentView and ChildView) and the tables used by these views have foreign key relation ship .when i use these 2 entities in report builder as soon as i add a column from one view (say ParentView) the other view disappears from list !! I assume Report builder looks FKey to link 2 entities and since am using views ...Show All
Visual Studio Team System Updated. User in Project Contributors is unable to access Source Control
Hi all, I created new project with Source Control folder under Server TF Administrator role. I created new solution with project and some files into Source Control and successfully checked in. I included new user account into Project Contributors group on TFS, SharePoint Services and Reporting Services. New user connected to TFS, project tree displayed correctly. When user clicked on Source Control item in project tree, message box with “Configure Source Control” appeared with message: Either source control has not been configured for this team project or you do not have permission to access it..... &nb ...Show All
Visual Studio Team System Team Explorer doesn't respect filesystem encryption settings
I've got an encrypted folder (called 'Dev') on my laptop where the source is stored. When Team Explorer creates subfolders within the 'Dev' folder the folders are encrypted, but the files it creates are not. I've done this in the past with Source Safe and it worked fine, but it appears that when Team Explorer places a file on the file system it doesn't respect the folder settings for encryption. Even if I manually set the file to be encrypted, the next time I do a get from TFS, it overwrites the file without encryption. Is this a bug or is there a setting somewhere that will fix this I didn't see the TFS ...Show All
Visual FoxPro how can i get a array from function/procedure as return parameter?
i wrote one function ,i put the values in a array for return,but i can't get it . for instance. function a() return arrayname endfu b= a() hi Stuart i can get the array now.but when i complie the program,it told me "Unknown LACFGSETUP - Undefined".it don't know the array i used to get the return value.So how can i fix it ...Show All
Visual Studio How to add Intellisense to a New Project Type
Hi. I am new to the forums and extending Visual Studio 2005. I am working on creating a new project type for Visual Studio 2005 using C# and the Managed Package Framework (MPF). I used the examples provided by the SDK and the SDK Help to create a new project type. The new project type is working quite well, but Intellisense on any variables or classes within the project fail to be utilized by Intellisense. Intellisense is still functional on built-in C# objects and responds to the normal methods for invoking it. I have found the same occurs in the Project sample in the SDK. Now, I need to enable Intellisense functionality on the variab ...Show All
Visual Studio 2008 (Pre-release) Good job!
I just wanted to let you know (the LINQ project team) that I'm thrilled by the goodness that LINQ has bring into my (developer) life! I liked C omega, but I love LINQ (and DLinq and XLinq). I love CRUD operations. I love the idea, and the implementation. And congrats for having a preview even sooner than the launch of the previous (next) edition of .NET (2.0)! Thank you! ...Show All
Smart Device Development windows mobile 5.0 smartphone use serialport reading gps data problem
Hello all : I use serialport.read function read gps data in windows mobile smartphone by vs.net 2005, but it has some problem happened. The error happened in serialport1.read(data,0,50) This following is my code: Private Sub MenuItem2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles MenuItem2.Click SerialPort1.Open() If SerialPort1.IsOpen = True Then Label2.Text = "Open" Label2.Visible = False Else Label2.Text = "close" End If Dim data(999) As Char SerialPort1.Read(data, 0, 50) TextBox1.Text = data(1) SerialPort1.Close() End Sub ...Show All
Microsoft ISV Community Center Forums What version of Team System do EmpowerISV members get?
Current MSDN Universal subscribers get a free upgrade to their choice of one of the Team editions of Visual Studio 2005 when its released. What about current EmpowerISV members And what will future members get I'm planning on joining the program, but I want to be sure I know what my team will be getting long-term, especially as it relates to Visual Studio Team System. Hi Tim Do you remember who you spoke to at MSDN As I've spoken with a number of people who just transfer me around an are clueless when it comes to Empower. Would you be able to PM me with the comfirmation email ...Show All
Windows Forms Problem with BindingSource.Find on Relational BindingSource
(Beta 2) I get an error message, "DataMember property 'AccountingPeriodId' cannot be found on the DataSource." when calling the Find method on my binding source: AccountingPeriodBindingSource.Find("AccountingPeriodId", 7); Any clues TIA, Rob Guys, Indeed, the solution with using overloaded BindingSource.Find Method (PropertyDescriptor, Object) helped. THANK YOU! Alexander. ...Show All
Visual Studio Express Editions Publishing
This may seem like a silly question, but how do you publish your file into an application (.exe) hi, you can check this link for the last tutorial it talk about that in details http://msdn.microsoft.com/vstudio/express/vb/learning/default.aspx but simply right click in your project in solution explorer and then go to the last tab at buttom its called publish you can check there hope this helps ...Show All
Visual C++ thread exit code
hi, everyone, i have wrote some simple programs in c language, here is my code list: /* code list 1: */ #include <stdio.h> void main() { } the compiler tell me: The thread 0x3B0 has exited with code -858993460 (0xCCCCCCCC) /* code list 2: */ #include <stdio.h> void main() { printf("hello world"); } #include <stdio.h> void main() { printf("hello world"); } the compiler tell me: The thread 0x6A0 has exited with code 11 (0xB). the programs are very simple bcoz i know that thread exit code is zero which indicate that thread exit successfully, but why the two threads ...Show All
SQL Server Create a table and put it in a file
When I create a table I can create it in a filegroup, but how do I put it in a file. Example--- I have two files in one filegroup called "Secondary" file A and file B. I want to create a new table called tableA and put it in file B on filegroup Secondary. I looked at bookes online and can't find it. Thanks Thomas Hi, It's part of the CREATE TABLE syntax. CREATE TABLE myTable ( myID int ) ON [Secondary] You cannot control on which file you create it because different files in a filegroup is exactly for spreading the table over multiple files. Ki ...Show All
