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

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

AJNothing82

Member List

jagan_unique
Kirk Marple
TheBlackNoodle
yjoe3
AARONSANDY
DetlevD
Shane Fatzinger
palamangelus
Othmane Rahmouni-MSFT
BrandonTurner
Subodhs
I-D
Gluber
carzyR
solanky
SMaste
Iainr
Andy Hooper
OrfWare
MagorGirl
Only Title

AJNothing82's Q&A profile

  • Visual Studio Tools for Office Where is my cursor?

    I have developed and outlook add-in that contains a custom task pane hosting a windows form user control inside it. The user control had a textbox and a button. The button has an event handler attached to it. When the end user enter some text in the textbox while compposing a new email and click the button, I want to insert the text from textbox into the body section of the email. The problem is that how can I identify where my cursor is currently positioned As I want to insert text at cursor position, is there any way to find out solution to this problem Any help will be appreciated. I hope you have some s ...Show All

  • Visual C++ "this" pointer cannot still not be accessed when debugging 1 line inline !!!

    Since always (ie VC6) such pattern cannot be debugged properly class A { void f() { m_a=0; } int m_a; }; If a breakpoint is set on f, "this" cannot be access within the debugger. Both F10 & F11 finish before entering f(). The solution is to write it like void f() { ... } But I have always found this to be a pity and awkward. I hoped 2005 would have fixed this! No, it's the same in 2005. The debugger seems to get confused because it doesn't know where the breakpoint is. Sylvain Bougnoux wrote: Since always (ie VC6) such pattern cannot be deb ...Show All

  • Visual Basic cannot debug avalon application on vb express beta 2

    I m usin vb express beta 2 with win fx extensions (no previous intances of beta1) when i try to debug "avalon application" it gives me following error: Error 1 Unable to copy file "obj\Debug\AvalonApplication1.application" to "bin\AvalonApplication1.application". Could not find file 'obj\Debug\AvalonApplication1.application'. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 2492 9  i got same error while bilding vb projects using 'click once' Hi, I realize that this is a very old post, but I did want to ensure that it was clear that the WinFX extensions ...Show All

  • Software Development for Windows Vista Workflow management in Enterprise Environment?

    Hi I want to develop a Workflow management system in enterprise environment using WWF. I design the system as follow: 1. A Workflow management server manages workflow definitions and workflow instances (host in IIS or Windows Service). Workflow definitions can be deployed to the server. Server will supply interface (maybe Web service methods) to client to remote interact with workflows. 2. Workflow designer which is customized from WWF designer to design some specific types of workflow (such as document workflow,...). These workflows will be deployed to run on server. 3. Many kind of clients can be de ...Show All

  • Visual Studio Express Editions vb6

    Where, oh where, is a free download of vb6 I am taking a class that is going to teach vb6, but the book for the class was only available used. Therefore the s-ware that WAS bundled with the book is no longer. I specifically need vb6, and was unable to find the download on ms.com. My textbook says it is available from ms for free. I need a rather specific answer, and thanks in advance from a novice! Not only is there no free download, the product is completely unsupported anymore. It's no longer shipping with MSDN, even. I'd suggest you try ebay, if you have a specific need to use VB6. VB6 is three versions o ...Show All

  • Smart Device Development System.IO.FileNotFoundException

    When I debug my application , It work well, but it shows exception in the output windows. Application coad: cmdsetting.CommandText=@"select ......"; drsetting=cmdsetting.ExcuteReader(); //exception occured if( !drsetting.Read()) {...... } output windows A first chance exception of type 'System.IO.FileNotFoundException' occured in mscrlib.dll mobilecard.exe(managed) Loaded 'System.SR.resources.dll No Symbols Loaded. How do I colse the exception. You don't, it's expected and handled. Please see this: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=132465&SiteID=1 ...Show All

  • SQL Server Combining text data rows

    I am working with a database derived from text documents. One of the tables (TEXT001) contains the text of the documents with each paragraph of each document assigned to its own row with a paragraph number in a SectionNo column. I want the entire text of each document in a single row with its own unique number (so that I can do a full text search with SQL Server 2005 that will search and return the entire document as a result). How do I combine the rows with the same DocumentID into a single row of text data This will put the entire text content of each document in its own row. TEXT001 table as it is Documen ...Show All

  • SQL Server CREATE INDEX statement for SQL Mobile not documented?

    Hello, I'm unable to find documentation for the CREATE INDEX statement for SQL Mobile. DROP INDEX is documented however. Is this a known issue or am I missing something This can be seen here: http://msdn2.microsoft.com/en-us/library/ms173440(en-US,SQL.90).aspx If you scroll the left pane up a little, you will notice that CREATE INDEX is not in the tree. Am I missing something Thanks. Finally it is live in SQL Mobile Books Online @ http://msdn2.microsoft.com/en-us/library/ms345331(en-US,SQL.90).aspx Thanks,. Laxmi Narsimha Rao ORUGANTI, MSFT, SQL Mobile, Microsoft Corporation ...Show All

  • Visual Studio 2008 (Pre-release) WSDualHttpBinding security

    How can there be no "Transport" mode on WSDualHttpSecurityMode How does one specify the HTTP security information, for exmple if IIS is set to Windows Authentication Am I suppose to manually add an HttpTransportSecurity item to this default binding Al Al, it turns out that if you have two http connections working together, as in the WSDualHttpBinding, transport security doesn't work very well. Since there's no cryptographic correlation between the channels, you end up with a few classes of attacks that become very difficult or impossible to mitigate. So rather tha ...Show All

  • Visual FoxPro REPORT error-invalid path

    i have a button in a form and when its pressed it creates some select sqls which have into table and overwrite an existing table.then from the table i create report..from.. ,then i update the report and finnally i report form.the problem is that if i press the button->see the report->close the report->press again button->i get a message "invalid path or file name" if i close the program and reopen its the same press the button->see report->close the report->press again button->i get a message "invalid path or file name" so i can only see the report once and then close and open the programm again to see the report seco ...Show All

  • Visual C++ Easily adding methods to the current class

    I know I can bring up the class view, right click a class, and "Add function", but is there an easier way I'm thinking of something like - while using the text editor and writing code for a class, being able to press a short cut key and add a new function without having to use the mouse at all. I've tried to add a shortcut key to "Project.Addfunction" and "Project.AddMethod" in the keyboard editor, but neither brings up the dialog to actually add a new function. Also, the keyboard configuration dialog only shows 3 lines of the list of configurable items - is this intentional, it could do with being resizable. ...Show All

  • Visual Studio Express Editions Problems with changing groups.

    Hello, I have had Visual Basic for a while, and I'm working on a project for school. Currently it is done. Except, when I click the button (that HAVE been programmed) they do not open their Group. 2 of the 5 buttons for groups work. I was wondering if anyone else has had the problem, and if they could help me solve it. Below is a snippet from one of my working buttons, and non-working. Working: Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click GroupBox1.Visible = True GroupBox2.Visible = False GroupBox3.Visible = False GroupBox4.Visible = ...Show All

  • Visual Studio Team System VSTF Coverage Analysis service won't start

    If I try to start the Code Coverage Analysis Service on my Team Foundation Server it stops directly and write the following error in the Windows event log: The connection to the Team Foundation Build database could not be established: System.Security.SecurityException: TF50309: You do not have sufficient permissions to perform this operation. at Microsoft.TeamFoundation.Proxy.BisRegistrationProxy.GetRegistrationEntries(String toolId) at Microsoft.TeamFoundation.Proxy.BisRegistrationService.RefreshMemoryCache() at Microsoft.TeamFoundation.Proxy.BisRegistrationService.RefreshCachesIfNeeded(Boolean direct) at Microsoft.TeamFoundation.Pr ...Show All

  • Visual C# Change the language of a form instantly?

    Hi! Is there a way to change the language of a form instantly e.g. When I click a button I want to change the Text of all controls from English to German. Thanks. Jus   Dear Jus, I have used a radiobutton instead of a text box. You can change it. // Event rGerman.CheckedChanged += new System.EventHandler(rGerman_CheckedChanged); private void rGerman_CheckedChanged(object sender, System.EventArgs e) {  // Make the CultureInfo.  CultureInfo culture_info = new CultureInfo("de-DE");  // Make a ComponentResourceManager.  ComponentResourceManager component_resource ...Show All

  • Visual Studio Accessing tableadapter library?

    Hello all- We've built a library of TableAdapters as our data access layer for an ASP.NET 2.0 project. That library is in a separate VB project we include in our solution. The rest of our code is C#, including code-behind for our aspx pages, so all the C# code is in a separate project of the solution. Works great. Now, come reports. In order to use VS 2005's designer to build reports, it has to know about the datasets of our tableadapters, and it appears that the report designer needs to have this code in App_Code, which of course uses C# code. The report designer does not appear to be able to reliably get information about the tableadapters ...Show All

©2008 Software Development Network