Devukjs's Q&A profile
.NET Development Sending out messages from a .net app to Pda's - advice
hi all, im researching some methods to distribute jobs to a small army of people across Canada and was wondering if anyone had some tips to help me along. My main question is, how (and what software / hardware) would i need to equip every person with a PDA and be able to send out messages (via Email i suppose) to the PDA's with scheduled jobs the people have to go on. A couple of things though: 1. I want the message to be delivered to the PDA without the user having to check email, press some sort of Send / Receive. Almost like a Pager. AS long as its on and they have some sort of wireless connection it should send the message an ...Show All
Visual Studio Team System looking for web test
VS 2005 newbie. I have VS team edition for software developers RTM version. I am trying to create a web test. However, web test is not an option. NOTE: The AuthoringTests.txt eludes to test version - but this is not specifically stated. http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/vs05tmsyswebtst.asp does not give an explicit statement that the web test is for test edition only. "Applies to: Microsoft Visual Studio 2005 Team System Web development" So why is the web test not an option Thanks, Johnathan ...Show All
Visual Studio Tools for Office VSTO add-in setup error accessing registry
A user is receiving the following error message during the exection of my MSI installation. I am using the MSI bootstrapper process and followed the guidelines to deploying a VSTO add-in ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/odc_vsto2005_ta/html/OfficeVSTOWindowsInstallerOverview.asp ). This is the error they receive: "An exception occurred in the OnAfterInstall event handler of MyInstaller.-> Unable to open the registry! The installation cannot continue." I do not have access to the machine it is running on, but it is a Windows XP/Outlook 2003 machine and the user was able to get the first ver ...Show All
Visual Basic Access VB module
I would like to know how I could use this vb code for another database of similar info I have no vb or access knowledge, any help would be greatly appreciated. Option Compare Database Dim db As DAO.Database Dim rsSheet1 As DAO.Recordset Dim rsTotalfull As DAO.Recordset Dim rsRunning As DAO.Recordset Public Sub updatedatabase() Dim slocation As String, saddress As String, slocation2 As String, saddress2 As String Dim sdate As String, sSql As String, sdatenew As String, samount As String Dim incident As Integer Dim count As Integer On Error GoTo ErrorHandler Set db = CurrentDb() 'Loads TEMP to parse and concatenate dates DoCmd.OpenQuery "TE ...Show All
Visual Basic Can i sell what i make
can i sell what i make with visual basic 2005 beta 2 App will not be time restricted but the IDE will stop working I think. Also, the license says that the end user has to obtain the target from Microsoft which means that the .NET Framework Beta 2 may expire which means that your app also does not work. A good idea would be to change the date on ur machine to May 1th 2006 and see what happens - that will eliminate all questions :) In case you do not want to try on ur dev machine, install Virtual PC and try on that: http://www.microsoft.com/windows/virtualpc/default.mspx Regards, Vikram ...Show All
.NET Development Application Settings Location
I have been experimenting with the My.Settings feature in VS 2005. I like the way that User-scoped settings are easily stored in a sub-folder under the user: <c:\Documents and Settings>\<username>\[Local Settings\]Application Data\<companyname>\<appdomainname>_<eid>_<hash>\<verison> However, I was wondering exactly where the Application-scoped settings are stored. I was planning on using an Application setting to store my connection string to my SQL database. A requirement by my IT guy is that this connection string needs to be be editable by him, as we might have to change it ...Show All
Smart Device Development Missing Windows 2005 templates
Hi, I installed Visual Studio 2005, and the Pocket PC and Smartphone Windows Mobile 5.0 SDKs. Altough they appear as devices in the emulator, I see nothing in project creation dialog box. All I have in the Visual Basic->Smart Device section is "Pocket PC", "Smartphone 2003" and "Windows CE 5.0", that were already present before I install the SDKs. But I can not see any project template for Windows Mobile 5.0 Pocket PC and Smartphone developpements. What did I miss Thanks I had the same issue. The windows mobile 5 projects templates did not appear after insta ...Show All
SQL Server visual studio running too slow
Hi friends after working visual studio (on my report model project) few minutes it runs too slow. i mean clicking on entities ,attributes takes ages to finish. I opened task manager i see "devenv.exe" is taking more than 800,000 k !! am using sql server 2005 standard edition. have you seen similar problem. Thanks for your help. I've seen similar issues. Not quite as bad though. I have a solution that contains 6 projects, including a report services project. When ever that project is loaded, especially if I've been using the report designer, VS seems more sluggish and other parts of visual studio (specifically the winforms des ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX 9.0c Dec 2005
Outstanding product. After install my eVga Nvidia 6800 GT has texture breakup in DirectX. Of course there's no rollback. So what now, repair to WinXP from CD and reinstall all updates, SP2, etc What a pain in the butt. Twil1ght wrote: After install my eVga Nvidia 6800 GT has texture breakup in DirectX. Of course there's no rollback. So what now, repair to WinXP from CD and reinstall all updates, SP2, etc You can uninstall the DirectX SDK (December 2005). You can't uninstall the DirectX 9.0c runtime, but the runtime included in the SDK is the exact same version as included with Windows XP SP2. ...Show All
Smart Device Development The device simulator has a japanese version
Hi,recently I download the device simulator preview,it is a wonderful tool,but my application will be deployed to a window CE of japanese version,is there a jap version thanks Is this you are looking for http://www.microsoft.com/downloads/details.aspx FamilyID=4953d34d-692f-4c87-ac69-cb235dbdad1d&displaylang=en&Hash=Q6KDTR9 http://www.microsoft.com/downloads/details.aspx familyid=8fe677fa-3a6a-4265-b8eb-61a628ecd462&displaylang=en -Thanks, Mohit ...Show All
.NET Development WinForms GUI TEST tools?
Hi! I am looking for some GUI Test tools for a windows forms app. Do you know some good regards, gicio To follow up for those interested. NUnitForms does compile and works against NUnit 2.2.6 (for .net 2.0). So NUnitForms remains a strong tool to use on .net 2.0. Cheers, Johnathan ...Show All
Visual C++ wcsstr with a const return type in rc1 header
Hi 40th Floor! > _CRTIMP __checkReturn _CONST_RETURN wchar_t * __cdecl wcsstr(__in_z > const wchar_t * _Str, __in_z const wchar_t * _SubStr); > > What's the deal with the "const" on the return in > > ...\Microsoft Visual Studio 8\VC\include\string.h > > when the docs I see show > > *wchar_t *wcsstr( const wchar_t* */_string_/, *const* *wchar_t* > */_strCharSet_/ *);* It seems that the docs (or the standard) are wrong :-) If the parameter is const then the return value must also be const. If the return valus would not be const, this could lead to GPFs... -- Greetings Jochen My blog about Win32 and .NET ...Show All
Windows Forms Adding new rows to DataGridView does not follow sort order
Hi! I have a datagridview in which I add rows using the rows.add method. Grid is not bound to any datasource. The problem I have is that newly added rows are always added at the bottom of the grid, ignoring the selected sort order. Do I miss anything I wouldn't like to call .sort method again, since my grid may contain a lot of data and rows might be added every few milliseconds. Awesome. Thanks! -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All
Smart Device Development VS2005 and Simbian OS is it possible?
Is there a possibility to program Simbiam OS with VS Please direct all Symbian related questions to Symbian related news groups. Thanks. ...Show All
.NET Development Only one WebServiceBinding attribute may be specified on type
Hi, i am getting this exception - Only one WebServiceBinding attribute may be specified on type 'servicededcexample.MyProxy.codeservice'. Parameter name: type this is the peice of code I have - [ System . Diagnostics . DebuggerStepThroughAttribute ()][ System . ComponentModel . DesignerCategoryAttribute ( "code" )][ System . Web . Services . WebServiceBindingAttribute ( Name = "codeserviceSoap" , Namespace = http://tempuri.org/ ) ] [ System . Web . Services . WebServiceBindingAttribute ( Name = "codeserviceSoap12" , Namespace = http://tempuri.org/ )] public partial class codeservice : System . Web . Services ...Show All
