Software Development Network Logo
  • Microsoft ISV
  • .NET Development
  • Smart Device
  • VS Team System
  • Game Technologies
  • Visual Studio
  • Windows Live
  • SQL Server
  • Visual FoxPro
  • Architecture
  • Windows Vista
  • Visual C#
  • Visual Basic
  • VS Express Editions
  • Visual J#

Software Development Network >> TLandry's Q&A profile

TLandry

Member List

srak
StoneWasHere
Dustin Campbell
Barrie A Kenyon
bud1024
Nedrum
Regre
mspres
Nigel Rivett
Hockeyanimal
aHAB
Jeff Pigott
Samantha Low
Paully13x
JeffWoodard
Mike Allen Mc Donogh
BBedell
Lorry Craig
Nightsfall
Vramin
Only Title

TLandry's Q&A profile

  • Visual Basic Counting Letters in a string

    Hello,  I am trying to get VB to count how many A's B's C's D's E's etc... that are in a  declared string, can someone tell me how to do this. thanks Ray RFeather[AT][NOSPAM]chstaffing.com Just in case you need it. . .  sorted list  add this function to CharacterCount: ==============     Private Function Sort() As Dictionary(Of Char, Int32)  &nbs ...Show All

  • Visual Studio Team System Hello?

    I am using RC. I have configured TeamBuild to run unit tests defined in a test run configuration. All the build steps work correctly except when TeamBuild tries to copy the "additional files and directories" specified in the test run configuration it runs into a UnauthorizedAccessException. When I run the unit tests locally all the additional files and directories are correctly copied to the /TestResults/<test run name>/Out ...Show All

  • Software Development for Windows Vista Vista 5308 Media Center Extender issues

    Does anyone know if the extender function in the Media Center module of the February CTP is compatible with the Xbox Media Center Extender (MCX) I have been attempting to set this up on my test system, and will get as far as the programming the device stage of the extender setup, but at this point the setup will sit there for over an hour without completing. Is there an update that will need to be obtained to allow this to function, or is this ...Show All

  • Visual Studio Team System Calling Multiple webtests from a webtest

    Hello, I would like to call several webtests from a 'master' webtest so that I can modularize my test suite to some degree. I did see a previous post that stated that it was possible to call a single webtest from another webtest. Am I correct in assuming that this should extend to calling several webtests from a webtest. Also, can these calls be nested Can a webtest call a webtest that is calling yet another webtest Finally, the previous po ...Show All

  • Visual Studio 2008 (Pre-release) SecurityNegotiationException: A call to SSPI failed / Win32Exception (0x80004005): The target principal name is incorrect

    Has anyone go any idea why the following exception should be thrown on a client connecting cross-machine to a WCF service: [Win32Exception (0x80004005): The target principal name is incorrect] [AuthenticationException: A call to SSPI failed, see inner exception.]    System.Net.Security.NegoState.ProcessAuthentication(LazyAsyncResult lazyResult) +109    System.Net.Security.NegotiateStream.AuthenticateAsClient(NetworkCredent ...Show All

  • Visual Studio Express Editions How do I get back into Form1.vb [Design]?

    Visual Basic 2005 Express Edition: I am in the middle of developing a large application. I can get into my Form1.vb code, but, how do I get back into Form1.vb [Design] It is not in my list of Active Files! When I click on Form1.vb in SolutionExplorer, I get Form1.vb code, but, I do not get Form1.vb [Design]. ...Show All

  • Smart Device Development Get Current Method Name in CF 2.0?

    Hi! Does anyone knows a way the get the name of the current method in CF 2.0 At the .Net Framework it works this way: System . Reflection . MethodBase . GetCurrentMethod (). Name Thanks in advanvce... Markus Hi, I am trying to use your code, but it seems that aex.StackTrace doen't exist in Compact Framework 1.0. Any other way to resolve the problem Thx, Moiss ...Show All

  • Visual C++ CObList and CPtrList

    Are CObList and CPtrList protected against concurrent access by multiple threads I presume the answer is "no". If one thread is in the process of changing the list, e.g., Add Head, RemoveTail, etc., and some other thread barges in to review the list, there is a potential for the latter thread to sustain a memory violation, correct A mutex must be created for all threads to use when accessing the object, correct ...Show All

  • Visual C# link one form's controls to modify the main form

    How do you link one form (say an OptionsDialog) to modify the Main Form i.e. Choose options in the OptionsDialog and make them modify the Main Form Like a settings dialog... you create separate form and call it. then check it's settings and modify main form accordingly using(SettingsForm frm = new SettingsForm()) { if(frm.ShowDialog() == DialogResult.OK) { //change title for instance this.Text = frm.MainForm ...Show All

  • Visual C++ converting c++ stl strings --> Tchars? (NO MFC)

    How would I go about doing this Thanks! I ran into string problems all the time in unmanaged c++. You can use the cstring() method of a string class to get the c style string and then use the multibytetowidechar() function to put that c string into a tchar buffer. Its a big pain and maybe not efficient but it works if speed isnt of vital importance to you. I made a function to do it because I had to do it so m ...Show All

  • Windows Forms Shut Down App If Not Signed

    If an app isn't signed by me (if it has been altered), is there a snippet that would allow me to shut my app down Something like: if( /*my program has been altered*/ ) {     //close the app } I want to sprinkle my shareware with seve ...Show All

  • Visual C# Refactoring: Encapsulate field.

    Hi All, Just started to look at VS2005 beta 2 - I don't seem to be able to use the encapsulate field refactoring function.  I select a private class level variable and click encapsulate field.  The IDE then prompts for the property name and displays a code preview window which has the original field renamed to that of the property (highlighted) and no get/set type code.  Am I doing something wrong here Cheers, JW. ...Show All

  • .NET Development Once my Database is ready...How do i make??

    How do i make my database run without me compiling it ever time...You know i wanna put my User Interface on a disk and put it on someone eles computer and run it...how do i do that Well you have to: 1) be sure that they have the same database system installed (example: SQL Server) 2) make sure that the appropriate user accounts are created in SQL Server for the application to access it 3) all should be well, just run the applicati ...Show All

  • .NET Development Problems with .NET (Console aplication)

    I have a Problem. When I execute an aplication in .NET type console that print a document in Crystal report a have the next conflict between Operating System and .NET  The instruction at "0x77fcc024" referenced memory at 0x00000000. The memory could not be written. The Just in time debugin show us: "Unhandled Win 32 Exception has occurred in SPOOLSV.EXE Someone know what happen Thanks for your time. ...Show All

  • Visual Studio Tools for Office Upgrade record

    How can i upgrade record from excel to db table (msaccess), when i use vsto dataset merged into excel spreadsheet Have you a sample please Thank you Carlo Cantoni Hi Carlo, Yes, you should be able to use the same code within a Microsoft Word VSTO project to update the underlying data source. You would obviously need to change the code slightly such as: Globals.ThisDocument.CustomersTableAdapter.Update(G ...Show All

©2008 Software Development Network

powered by phorum