ossent's Q&A profile
Smart Device Development Context Menu
Hi everyone, hope you're doing fine. is it possible to add some entries to Windows Mobile 2003 context menu can we add icons next to the entries i have added keys in the registry like it is done on windows xp but it didnt work (maybe the key names are different) :(. any suggestions Please see this post for details on where to post non-VS 2005 questions http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=223605&SiteID=1 ...Show All
Visual C++ Visual C++: serial communication and MFC
Where can I find a good example of serial communication in Visual C++ and MFC. http://www.naughter.com/serialport.html ...Show All
Visual C++ C++ & SDK
I'm completely new at C++, though have reasonable experience with .NET. I'm trying to switch from VB.net to C++ because I want to write native code... but i'm having problems. I have 'Microsoft Platform SDK for Windows XP SP2' and 'Visual C++ 2005 Express Edition Beta 2' installed. I have also created a dir in "C:\Program Files\Microsoft Visual Studio 8\VC" called 'PlatformSDK' which has the Bin, Include and Lib folders in it. Now how do i make a native program, not complied in .NET If i go to File|New|Project| Win32.... I can only select console application, windows application is greyed out. If i select "Windows form application" it ...Show All
Visual Studio Express Editions Is it possible to use two OLEDB datasources In this Way?
I am wondering if its possible to do something like what I have in my adaptor= line below (which doesn't work at the moment). All I am really trying to do is come up with a quick and dirty way to pull a few rows out of one database/table and pop them into another database/table: Dim constr As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Media\Databases\Configurator.mdb" con = New OleDbConnection(constr) dt = New DataTable() adapter = New OleDbDataAdapter( "Select * into Customers2 from [Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Media\Databases\aDifferentDatabase.mdb].Manufacturer_ ...Show All
SQL Server SSIS execution of transformation tasks.
I'm not exactly sure how to ask this question ... but here goes!! I want to get an idea of how SSIS actually executes transformation tasks. Do transformation tasks (eg a lookup) complie down to managed code or are the executed as SQL commands in a SQL server database Thanks. They are not executed as SQL statements against a database. Data is loaded into memory buffers and the operations as defined by the components are carried out upon those memory buffers. The components themselves are already compiled DLLs so there is no compilation that has to occur on a SSIS package - it is simple an XML fil ...Show All
Visual Basic Missing flash.ocx file
I am using windows 98 se, and for some reason I am now getting an error message "cannot find flash.ocx file" , can any help , where do I get a copy, what is it, it keeps going on and on, when the computer is left unattended . Its very annoying, any help is greatly appreciated. Using on a home computer. looks like your flash player install failed or got corrupted. The simpliest thing to do would be to try and install from http://www.macromedia.com/support/flash/downloads.html Cathal ...Show All
.NET Development Problem Calling C dll from C#
I have the following C code typedef struct _mxh_IdCode { MXHBOOL Modified; MXHLONG Id ; MXHCHAR Code[24+1] ; } MXH_IDCODE, *P_MXH_IDCODE ; MXHDBEXPORT MXHRETCODE mxhdb_IdCode_open_Id (MXHDB DbHandle, P_MXH_IDCODE Instance, P_MXHDBLIST ListHandle ) ; MXHDBEXPORT MXHRETCODE mxhdb_IdCode_fetch (MXHDBLIST ListHandle) ; MXHDBEXPORT MXHRETCODE mxhdb_IdCode_ ...Show All
Visual C++ How do you install CRT, ATL80.dll, MFC80u.dll applocal?
When we look at other installation options than side-by-side installations, we consider "applocal" installations. Unfortunately we cannot use side-by-side installation since it prevents “Per User” installations in Windows Installer. (See http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=552c704c-75ba-4cb1-8bf3-0c1d6d50d5a2 ) A drawback with applocal installations is that fixes issued by Microsoft to components such as MFC80u.dll will not automatically applied. On WinXP I suppose MS can do this by using policies. I found a KB article where this is discussed: http://support.microsoft.com/default.aspx scid=kb;e ...Show All
Windows Forms How to: Webbrowser NewWindow and Navigating equivalent to axWebbrowser
At first, I enjoyed the new webbrowser control but then I noticed that the args provided by the events NewWindow3 and BeforeNavigate of the axWebBrowser had not been implemented in the new control. Arg. Good news, the guys from Microsoft gave us the a workaround recently in C# and said they will publish a sample soon on MSDN. In the mean time, here is some VB.net code inspired from Microsoft's C# that will give you 2 new events and the args people like me were crying for. NavigatingExtended gives you the following args: - Url as string - Frame as string - Headers as string - Postdata as string - PostdataByte () as byte - Ca ...Show All
Visual FoxPro My software helps young woman win Microsoft's "Start Something New" Competiton!
A customer of mine won an award from Microsoft using my software today. Bill Gates met with her and received a crash course in my program . Pretty wild. Again not a programming message but you all helped me make this program the best it could be and it is nice to see it on Microsoft's web site : htt p://www.mi crosoft.co m/windowsx p/homeuser s/awards/s ports.mspx Don Higgins Don Higgins www.crewchiefpro.com Way to go Don! A great accomplishment indeed! I saw in Tech-Tips that you forwarded to Ken Levy. Any extra VFP exposure, case studies, etc. always helps! Congratulations! http://www.bloglines.com/blog ...Show All
Windows Forms App fails to install on one machine but ok on others.
I have a user who has installed my app on his laptop with no problems but it fails to install on his desktop with the following: ERROR SUMMARY Below is a summary of the errors, details of these errors are listed later in the log. * Activation of C:\Documents and Settings\John C\Desktop\Downloads\Lees-Bingo\Ver 3.2\Lees Bingo.application resulted in exception. Following failure messages were detected: + The referenced assembly is not installed on your system. (Exception from HRESULT: 0x800736B3) He's using WinXP Pro and has the .NET framework installed. It installs fine on my machines running XP Home. Anyone have any ideas what's ...Show All
SQL Server How keep together table rows?
Is it possinle to keep together few table rows It's not very good, when detail data and group footer was printed on different pages.. Hi, Use the KeepTogether property of your table. Best, Radu. ...Show All
.NET Development msxml6, xslt and preserving newlines
Hello, after the upgrade from MSXML4 SP2 to MSXML6 a simple XSLT (performed in C++) does not preserve newlines anymore... I just changed the document instance creation (DOMDocument40 to DOMDocument60) and the #import (msxml4.dll to msxml6.dll). with MSXML4 SP2 my simple XSLT generated the output: alpha bravo charlie now the same code (with just the changes described above) generates: alphabravocharlie what has changed many thanks andrea This is the XML file: < xml version="1.0" encoding="utf-8" > <ArticleList> <Article> <Name> ...Show All
Visual Studio Express Editions how can I uninstalL Visual Basic 2005 express edition
Hi all, I need help uninstalling vb 2005 express edition. When I do it manually I get such an error: "Setup is unable to determine a valid ordering for the installation. See the error log for further details." I was trying to repair it from CD but without results. and I found this post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=311301&SiteID=1 and I used this application msiinv.exe to find the product code to be able to uninstall this vb like that: msiexec /x {product code} but unfortunatelly there isn't this program on list generated by this program. Please help. Regards, sweet_dre ...Show All
Visual Studio How to Set orientation of Report Document
Is it possible to set orientation as portait or landscape or Can it resize by itself in Reportviewer control Can anybody help in this regard Thanks. The report viewer will pick this up automatically from the page size setting. If width is greater than height, the viewer will use landscape. ...Show All
