Tryin2Bgood's Q&A profile
Smart Device Development AVRCP
Any help in finding documentation on how to use AVRCP in C# CF 2 appreciated :) http://www.google.com/search hl=en&q=AVRCP+Windows+Mobile+Blue+Tooth&btnG=Google+Search ...Show All
Smart Device Development problem with System.windows.forms.message in VS2005 & windows mobile 5 for pockectpc
I just want to override wndproc : protected override void WndProc( ref Message m) { base .WndProc( ref m); } But I got built failed: error CS0246: The type or namespace name 'Message' could not be found (are you missing a using directive or an assembly reference ) But I can do it in a windows application Make use of MessageWindow. Create the class that implements this. In that override the WndProc http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=59218&SiteID=1 another way is http://blog.opennetcf.org/ayakhnin/CommentView.aspx guid=9a05b2dc-c79f-4cd8-af17-aa485fada5c7 just check it out this. hope this helps u out. ...Show All
.NET Development Shared Assembly in GAC
My question is that why we install assembly in GAC ,if we can't refer to it through IDE The IDE doesn't talk to the GAC. The GAC is a runtime component. In order to get the IDE to see you're assemblies you'll need to install them to a standard directory as well as the GAC. Note that the framework itself does the exact same thing (Windows\Framework\v2.0.50727). There are a couple of good reasons for this. Firstly you can't store documentation files (XML) or PDBs in the GAC. Yet the IDE won't display Intellisense data for an assembly unless it can find the XML file. Therefore you'll have to create a directory to store your assembly XML files anyway. Secondly the GAC can contain assemblies that sho ...Show All
Windows Search Technologies WDS closes
I'm not a developer, but couldn't find another forum to post a question. here's what happens: I type in search words in the WDS deskbar search box. A list of choices appear I click on a file or on "more" WDS application opens Then immediately closes. I have completely uninstalled and re-installed 2 times, following all the instructions I could find on this forum. Here are a few of my "specs": Windows Deskbar Search--02.06.5000.5378 XP Pro 2002 SP2 IE V6 Hello Seprice, From the information given, there are a few potential issues. 1. Do you have any anti-virus or anti-spyware programs on your PC If you do, I would check these to make sure that t ...Show All
Windows Forms Adding Objects Question
hi my Form1.h file is becoming massive now even though it doesnt really do much. On my Form i have a tabControl with 3 tabs and i was wondering if there was a way to create another file to do some adding and removing of objects like textBoxs and labels so it can be used like a subroutine any help or advice would be great. thanks Im using Visual C++ MS VS 2005 i think i may have spoke too soon, i cant get that to work either i made a new Form with one button on it and then followed your instructions but lots of errors. ...Show All
Visual Studio Tools for Office Long running Working VSTO application RIP
Problem I have a VSTO application fully working and actively used since March on a consumer's desktop. Recently the VSTO application, an Excel document with the VSTO custom Action Pane using Remote assemblies has failed on that desktop. Yet works on another computer as well as my development machine. The problem manifests itself as if the machine does not have prerequisites for VSTO installed. I get the cannot find File or assembly name Microsoft.VisualStudio.Tools.Applications.Runtime and the Action Pane never comes alive. The only thing I can think of is that the user installed a third party add-in to Excel and that may be blocking...but it shouldn't..... Any Thoughts See actions tried so far. Factors File or assembly name Microsof ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Kudos to Microsoft!
Hate to do a little fanboyism here, but I was so impressed with how painless this whole setup was. I set up the X360 connection to GSE in under ten minutes, tested Spacewar successfully, downloaded the Dual X360/Windows template, copied all of the classes for my current Windows project into it and ran it successfully on the first try, first x86 then X360. I was thinking I'd be spending all day tomorrow getting to the point that it only took me about twenty minutes to get to. Yep, you missed one ;) here it is: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1066409&SiteID=1 . Direct link to the template site ...Show All
Visual Studio Express Editions is there a add-on "reportview" that can be use in VB Express?
is there a add-on "reportview" that can be use in VB Express slightly yes... the user must analyze the report 1st and if there's a mistake or want to add... just requery it again fill the datagridview and then click view report, analyze it again, if i'ts ok then save... ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Deploying to the 360 question
In the "Looking at XNA Part Two" video on Channel 9, Frank mentioned that deploying an XNA application to the 360 is only supported via a wired connection(No wireless). Does anyone know if it's possible to have the 360 connect to the internet with the wireless adapter and connect to my local lan on the ethernet at the same time I started a new post and emailed the xbox 360 customer service. Will wait to see what else is going on. Tokunbo Wpg ...Show All
Windows Forms another problem
i tried this but it doesn't work, what sould I do private void button3_Click( object sender, EventArgs e) { listBox1.ClearSelected(); } Hi, to clear text from TextBox, use textBox1.Clear(); To remove selected item from the ListBox, use listBox1.Items.Remove(listBox1.SelectedItem) Andrej ...Show All
Windows Forms Multicolumn ListBox...?
Hi... I want to develope one application which will have a multi-column listbox. I want 3 columns in this listbox out of which in one column i want to display the filenames which user will drag on this listbox using DragAndDrop opertion. Other two columns should display its filesize & filetype(.doc, .txt, .cs etc.) Is it posible to have a multicolumn listbox in which 1 column will allow drag and drop & other two wont . Can anybody me help in this... Thanks, VInay Hi.. One more thing i require in this is ... can i add column headers to single or multiple columns in a listbox... Thanks in advance, Vinay ...Show All
Connected Services Framework Regarding Profile Manager fields having Null value
Suppose I created a user profile having the following rdf structure. < rdf:RDF xmlns:csf =" http://schemas.microsoft.com/connectedservices/pm#/ " xmlns:owl =" http://www.w3.org/2002/07/owl# " xmlns:rdf =" http://www.w3.org/1999/02/22-rdf-syntax-ns# " xmlns:rdfs =" http://www.w3.org/2000/01/rdf-schema# "> < rdf:Description rdf:about =" http://schemas.microsoft.com/connectedservices/pm#/dik@contoso.com "> < csf:FirstName > Dikson </ csf:FirstName > < csf:Currency ></ csf:Currency > < csf:Email ></ csf:Email > < csf:Phone > < rdf:Description > < csf:PhoneType > Primary1 </ csf:PhoneType > < csf:PhoneNumber > 222-333333 & ...Show All
Visual C# Passing two paramaters
I have an app that I am trying to build using the BackgroundWorker Component, and I am having a little bit of trouble figuring out how to pass multiple paramaters back with ReportProgress. Below you can see the two small code snippets. Any help would be greatly appreciated. Thanks, Russ ////////////////////////////////////////////////////////////////////////////////////////////////////// (sender as BackgroundWorker ).ReportProgress(currentCount, totalCount); ////////////////////////////////////////////////////////////////////////////////////////////////////// void backgroundWorker_ProgressChanged( object sender, ProgressChangedEventArgs e) { progressBar1.Value = (e.ProgressPercentage); progressBar1.Maximum = ...Show All
Visual Studio Express Editions SQl statement to show database info
Hi everyone, I am trying to hand code a script to bring out information from a test access table. My test MS Access table is "TESTTABLE" COLOMN NAMES are ID,NAME, NUMBER - They really dont mean anything this is just a learning point. How to I display this on a form in text boxes, I will only need to display One on a search. but if your code shows all data thats Cool too, I will just add a WHERE in the SQL statement Thank you! Dim queryString As String = "SELECT ID, NAME FROM TESTTABLE" Using connection As New OleDb.OleDbConnection(connectionString) Dim command As New OleDb.OleDbCommand(queryString, connection) connection.Open() Dim reader As OleDb.OleDbDataReader = ...Show All
Visual C++ Add function or variable bug
I open VS2005. I create a Class Library CLR project. A default class is created called Class1. I go to Class View. I click on Class1. I right click and choose "Add | Add Function..." and receive an Error message box with the message of "A Runtime Error has occurred. Do you wish to debug Line: 842 Error: 'ParameterTypeValueLength' is null or not an object." If I then click No I am taken to another Error message box with the message of ""A Runtime Error has occurred. Do you wish to debug Line: 498 Error: Object doesn't support this property or method." If I then click No I am taken to the "Add Member Function Wizard". Is this a known bug Yes, you are certainly r ...Show All
