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

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

anoo

Member List

Rusty01
Matja?
Pardasani
Dodo Roa
Benê
rzeineh
Gasys
Svenson21
Edward Wilde - PHWT
Jay Hickerson MS
kxp
Handi
Jukka Kivistö
throsturi
phlox
ASPnix
Chris Jiang
Bas Pronk
Flaxen
Hongtao Liao
Only Title

anoo's Q&A profile

  • Windows Forms Saveing data Into a Access Table

    Hi everyone                 My quetion is how would I save Data into a Access table.  I have a Main Form which holds a TextBox called "TextBox1" and 2 command which are called "CmdView" and & ...Show All

  • Windows Forms Disabling Scroll in a RichTextBox

    I'm using a read-only RichTextBox Control to display incoming data from a server connection and would like it so when the user scrolls up to review the backlog, any new lines being appended to the box cause it to jump back down to the most recent item. However, when the most recent item is visible, I would it to auto-scroll as normal. How can I do this is VB.net 2005 ...Show All

  • Software Development for Windows Vista WM_PRINTCLIENT trouble with IVMRWindowlessControl9::RepaintVideo

    Hello All, When trying to use RepaintVideo within a response to a WM_PRINTCLIENT message the video never draws.  I can easily get the video or still image to display in my window but it will not draw in the HDC in a WM_PRINTCLIENT message.  WM_PAINT works ok.  Any thoughts   Does anyone know what criteria this function uses to determine if it should do the repaint or not Where can I get an answer to this problem   ...Show All

  • Visual Studio DataConnectionDialog didn't work.

    I'm writing folowing code: DataConnectionDialog dlg = (( DataConnectionDialogFactory ) base .GetService( typeof ( DataConnectionDialogFactory ))).CreateConnectionDialog(); dlg.ShowDialog(); But on the last line I cought the exception: System.InvalidOperationException: No data sources are available. at Microsoft.Data.ConnectionUI.DataConnectionDialog.Show(DataConnectionDialog dialog, IWin32Window owner) at Microsoft.Visual ...Show All

  • Visual Studio Team System Build Manager system for your daily builds

    You can alternatively use Build Manager system at http://republika.pl/dailybuilds This distributed across machines system just help you with daily builds and co-work with VSS automatically for auto labelling and versioning solutions. Requirements: .NET Framework 2.0 beta 2 C++ Builder / Delphi (soon .NET compilers also) Visual SourceSafe (optionally when automatic labelling and code fetching) You can sign-up there and receive trial li ...Show All

  • .NET Development <msxsl:script> issue

      Hello,    I'm using the Data view web part for SharePoint where it randomly takes one quote from a list and displays that quote. I'm recently realized that microsoft extends script usage for xslt using the <msxsl:script> tag to incorporate JScript. This is the code that I've created: <xsl:stylesheet xmlns:x=" http://www.w3.org/2001/XMLSchema "       xmlns:d=" http://schemas.microsoft. ...Show All

  • Visual C++ How to change this VB program into Vc++ program

    The boss give me a big VB program  and ask me  change this VB program into Vc++ program  and this program has no any document.Please tell me if there is some short-cut method to do this job.Maybe I can use some code of calculation in that VB program.I know a little VB  and am familar with VC++.And I think that the interface should be in Visual c++. Please give me more suggestion. Thank you! I don't believe there ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D game tools

    I want to create a simple flying game using DX and C#, what are some of the tools people here use to place objects into world space(to get the coords), my idea is to use a manager I created to manage my resources then once I find a good tool to use to get world coords I will create a class that will tie into my rendering loop that will grid out my world for rendering. thanks for any help or Ideas Placing objects ...Show All

  • SQL Server error '800a03eb' Type mismatch

    Maintaining database website,its running ASP pages on windows 2003 server with SQL server 2000. I have upgraded SP2 for SQL server to SP4 in maintance process. The problem accur with some ASP pages are server_errors [server_Errors] GetErrorMessage [serverSERVER version 1.0.0] error '800a03eb' Type mismatch /server/asp/cmfls/errorconfirmation.asp , line There may be permission /security issues related with database.help me to tr ...Show All

  • Smart Device Development VS2005 Smart Device form designer fails

    All VS 2005 Smart device applications form designer fail to display forms - receive following error: Unable to cast COM object of type 'Microsoft.VisualStudio.DeviceConnectivity.Interop.ConManClass' to interface type 'Microsoft.VisualStudio.DeviceConnectivity.Interop.ICcServer'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{EA537AF4-2226-4D26-BBC0-9CF3A82749A5}' failed with HRESULT: 0x8 ...Show All

  • SQL Server About Login Account

    Hi everyone, I have a simple question for you which is too important for me. My question is about logins in my own(local) server. I know that my local server(my computer's server) has to default login account which are called sa and BUILTIN/ADMINISTRATOR. While I am using my own server, I do not know which default login account is used by my Server since I use windows authentication while connecting to the Server. Another question is that while ...Show All

  • Visual C# Blocking ALT+CTRL+DEL in your application!

    Hello all How to block ALT+CTRL+DEL or ALT+F4 in your c# application. Thanks for your help. For ALT+F4 you could add the following to your form:    protected override void OnKeyDown(KeyEventArgs e)   {     if (e.KeyCode == Keys.F4 && e.Modifiers == Keys.Alt)     e.Handled = true ;        base .OnKeyDown (e);   }   There i ...Show All

  • SQL Server Query Visual FoxPro .dbf files from SQL Server 2005 (64-bit)

    I need to query a foxpro database from a new SQL Server 2005 (64-bit) instance Running on a 64-bit Windows 2003 Server. I can't find an ODBC driver, only the OLE DB one. I install the OLE DB and it creates the appropriate registry settings, but it doesn't show up. Please help, I'm probably not on the right track, but I don't know where to go from here. Any and all attempts at helping are greatly appreciated. Thanks, jim ...Show All

  • SQL Server Checkpoint restart

    I have a package that uses checkpoint restart. It is resposible for truncatings many sets of tables and then loading them. There are several ExecuteSQL tasks to truncate the tables and several corresponding data flows to accomplish the loads. If a load fails I want the corresponding truncate task to be part of the restart otherwise duplicate data may be loaded. Normally, SSIS will start at the failed task. I read something about containers ...Show All

  • Smart Device Development Standard C++ code in Smart Phones?

    Hi friends I am Developing a program written in standard C++ for Smart phones using embedded visual c++ 4.0 as editor, Smartphone 2003 sdk. the code is follows # include <stdio.h> int main(void) { printf("Hello World"); return 0; } my project is having a single file whose code is written above. So when i try to build this code for smartphone 2003 it gives Linker error which is written below _mainCRTS ...Show All

©2008 Software Development Network

powered by phorum