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

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

akodad

Member List

Venugopal Gummuluru
Bulk
Mobo_man
Ted Young
CanUHelpMe
roussec
Michael _Kidd
Robert Green
Speech Pathologist
Wes Shaddix
alfios
icedfire007
Matt Gates
Paul H English
Brian S. Ward
Watzinaneihm
Iain Shanks
bbull26
ravinder reddy
Jitendra Shahani
Only Title

akodad's Q&A profile

  • Visual C# favourites in web browser

    does anyone Know how to add favourites for a web browser. Do you mean you're making a web browser and want the user to be able to save favourites If so, you could use an SQL database or even an XML file. ...Show All

  • Windows Forms Help with WndProc override in .NET Visual C++ 2005

    I have inherited from ...::UserControl and have a need to capture private window messages. I have been all over the Internet and tried everything and have found no means to override virtual WndProc. My latest definition looks like ... protected : System::Void WndProc(System::Windows::Forms::Message m) {    __super ::WndProc(m); } ... where from the debugger I am sitting on __super ::WndProc(m); to see if the break point catches. Breakpoints elsewhere in the code catch just fine, but no definition of WndProc seems to allow for an override. Any suggestions   bxs122 wrote: I have ...Show All

  • Software Development for Windows Vista Getting Return Data from a sub Workflow

    Hello. I am calling a sub workflow from a work flow via the "invokeWorkflow" shape. Here is my problem. The sub workflow returns a value that is displayed via a web service. How can I retrieve that value from the sub workflow in the main workflow The master web service passes a value into the main workflow, and that value is in turn passed in the sub workflow so that it can perform its work. Now I need to get the return value back. Any help would be appreciated. Thanks. Hi Greg, The InvokeWorkflow activity executes the target Workflow asynchronously, and there is no provision in the I ...Show All

  • Visual Studio Team System Can't Query Qork Items. Error TF26000

    I'm in Visual Studio and either trying to do a checkin or just trying to run queries against work items I get the error TF26000: Could not connect to the Team Foundation Server. Check that you have a network connection and that your Team Foundation server is available. The server is available and I can connect, other things that require the server are working (for example I can check code in). Any help would be gratefully received! This happens when connection to the work item tracking database fails. Can you expand your project's "Work items" node in the team explorer ...Show All

  • .NET Development Logout Programatically

    Hi All, There is a simple prob. I m using Login Control in .net 2.0. At some stage on my pages i want to programatically logout. How can I do it. Thx Hi Sandeep, This forum is for questions related to ASP.NET Web Services. General ASP.NET questions such as yours are best handled on the ASP.NET web forums at: http://forums.asp.net You will need to repost your question there. Thanks! Daniel Roth ...Show All

  • Windows Forms Unselecting text when entering DataGridView cell

    When a user clicks on a DataGridView cell to enter edit mode, the contents of the cell is automatically selected (i.e. all the text in the cell is highlighted in blue). How can I stop this Is there a way to make it so that when they enter edit mode, the cursor is just placed into the cell without highlighting the text. Is there something I can do in the DataGridView.CellBeginEdit event, or am I looking in thw wrong place Set the DataGridView's EditMode property to EditOnEnter http://msdn2.microsoft.com/en-us/library/system.windows.forms.datagridview.editmode.aspx ...Show All

  • Windows Forms how does issue vision "redraw" screen when spitter is dragged ?

    hi, At runtime, I can drag the splitter and the screen resizes itself correctly. eg, if i drag the splitter to the right-hand side, then the "chartPane" correctly re-sizes itself. I want to implement this functionality, but I've no idea how to do it.Is it a "propery browser" setting in the "chartPane" userControl  Is it an overrideable "paint ...Show All

  • Microsoft ISV Community Center Forums Importing data from Microsoft Access to Microsoft Word

    To anyone who can help Is there anyway that data from an access/sql query can be imported straight into Microsoft Word without losing the formating that has been set up in access. Many Thanks to anyone who can help Mark Hi Mark, The support engineer needs to know if you are planning for any reporting like mail merge, or simple data copy and paste And, he also needs to know which version of Office you are using. -brenda (ISV Buddy Team) ...Show All

  • Visual Studio Tools for Office word xml layout

    I wish to populate a large word document from information supplied by users on a form which combines their information with existing information from a SQL Server database. My quest is how to lay this out. I am using Visual Studio Beta 2, Office Professional 2003, and SQL Server. From SQL Server I generated an XML record of data from a stored procedure. Using this record as a template in Visual Studio I have marked up  the word document for XML and built the .xml and .xsd by building a Visual Studio/Office Tools/Word Template Project. I now need to make a form to take user input and combine it with data from SQL Serv ...Show All

  • SQL Server How To Audit DML Table Changes w/o Triggers?

    Whenever any DML activity occurs in a database I need to audit the following: 1.  The table that was changed (INS, UPD, DEL) 2.  The data value of the primary key of the changed row For example, if someone executes: UPDATE payroll SET Salary = 50000 WHERE empid = 123 I need:    "payroll" and "123" For various business reasons I can't use triggers.  It is just one of those things... I've looked at various options on SQL Profiler and while it looks like I can tell there was an action on the "payroll" table it doesn't look likely that I'll be able to figure out that it was on primary key 123.  This s ...Show All

  • Visual C# Run an .exe from the build events

    I want to run an executable from the "build events" (in the properties) of a c# project. I tried to write the command as if I would write it in DOS - I tried with or without quotes like the following: "C:\path\exename.exe -U param1" or C:\path\exename.exe -U param1 When I compile my project I get the following error: Error 80 The command "C:\path\exename.exe -U param1" exited with code 9009. TryOnHost Any ideas why I can't execute a program from there Thanks. I face the same problem but I have the couple of .InstallLog files but the .InstallState file d ...Show All

  • Visual Studio Team System Team system and MS Project

    Do you need to have MS Project installed to use the report features of Team System In the last beta it didn't seem like it was this neccesary to have MS Project installed, but now it seems I can't get most reports because I don't have MS Project. Shouldn't it be possible to get close to full use of team system without MS Project No, you shouldn't have to do anything. Just create the Team Project and you should be able to see some docs and reports in the two folders. As for customizing methodologies, take a look at these Webcasts: MSDN Webcast: Implementing and Customizing MSF 4.0 Process Guidance wit ...Show All

  • .NET Development OOPing my code

    I built a quick and dirty app to iron out the DCOM issues. Now I've got to make it readable, maintainable and bug-proof.   1] Currently, all database access is through a class - I'm not sure how to name this class - it doesn't seem right to simply name it 'Database'. At the moment I'm calling it 'DBAccess'. It's not that naming it is any big deal, it's just that I've learned that OOP is so elegant, particularly at facilitating self-documenting code, that, when I have trouble naming something, it causes me to wonder if I have a conceptually cloudy understanding of the object. So, I'm *pretty sure* that the entire database and its acce ...Show All

  • Visual C# Link Button - Windows ApplicationC# Signatu

    Hi, How can I make a link button minimize a applicationto taskbar And from the taskbar maximize Thanks As zapacila89 says, you can use the CloseWindow method with p/invoke. This method is located in the user32.dll so it will be availabe. This works from Wndows 95 and Windows NT 3.1. The method returns a true when if succeeds; otherwise it will return false and you can get the error information with the GetLastError method. But never use GetLastError method with p/invoke but use the GetLastWin32Error method of the Marshal class. Here is a little example: [DllImport("user32.dll" ...Show All

  • SQL Server SQL Server 2005 - Generate DB Script...

    In SQL Server 2000 we were able to set the scripting formats like adding the script to drop the object if exists and then re-create the object.  Could anyone tell me how would I do that in SQL Server 2005, please The options I am talking about are like shown below: if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Category Sales for 1997]') and OBJECTPROPERTY(id, N'IsView') = 1) drop view [dbo].[Category Sales for 1997] GO CREATE TABLE [dbo].[Categories] (  [CategoryID] [int] IDENTITY (1, 1) NOT NULL ,  [CategoryName] [nvarchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,  [Description] [ntex ...Show All

©2008 Software Development Network