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

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

Vertigo1

Member List

bfoster
T_
George Hannah
Jul
Cristianoq
ericsmoth
kunal shanishchara
TonyStoker
Leneise44
Robert Bell
Rajendra Shekhawat
Timdog68
meFox
cmorel
Tummaluru
T Solutions
bear007
Federico Caselli
Shri Rao
Sarah Roberts
Only Title

Vertigo1's Q&A profile

  • SQL Server Remote Connection problem on MS SQL 2000

    Hello, First, I want to say I read all threads similar this thread and I couldn't solve problem. My firewall is always off when I tried to connect remotly to SQL Server. I opened 1433 port from my router's configuration page and forwarded it to 10.0.0.4:1433. When I started SQL Server service and checking "netstat" with "-na" paramters. It shows only one row as "TCP - 0.0.0.0:1433 to 0.0.0.0:0". What "0.0.0.0" means and why foreign ad ...Show All

  • Visual C++ printf backspace in quickconsole

    int j; for (j=19;j>0;j--)    printf("%3d\b\b\b",j); works fine when the app is executed on command line, but in "Quick console" it gives strange output like  19 18 17 16 15 14 13 12 11 10   9   8   7   6   5   4   3   2   1   thanks This seems like a bug to me: you should log in on: http://lab.msdn.microsoft.com/productfeedback/default.aspx So that the appropriate ...Show All

  • Visual Studio Team System Error creating team project with RTM

    I am having trouble creating a team project with the RTM of TFS from a client machine.  I can create a team project from the server itself (logged in as myself), just not from my machine (also logged in as myself).  My machine is XP Pro and I have Windows Firewall disabled. I have tried deleting my cache directory several times as well as uninstalling/reinstalling Team Explorer on my machine. I can also navigate to the following ...Show All

  • Windows Forms Modifying Images

    I am trying to create a program that displays a map, which is a satellite photograph, of  a street or community for example. I want to design it so that I can have several small icons on the form that users can drag and drop on the map, to "mark" certain spots on the map. I then want the user to be able to save these changes to the map, and print the map with the icon on it. Can anyone point me in the right direction, maybe an idea of what ...Show All

  • Windows Forms Office Charting controls and ClickOnce

    Hi, I want to use office charting controls in my windows app and want to deploy this app using ClickOnce. My clients may or may not have office, and for the clients which dont have office, I am not authorised to install it. I just want to have my charting components up and running without having a dependency on office. Is it possible and if so then please tell me how to go about it. Thanks, Kunal Clickonce will ...Show All

  • Windows Live Developer Forums Invasion of the Robots Contest for Windows Live Messenger

    It's here... an unstoppable force sweeping the globe the Invasion of the Robots! Microsoft is challenging developers worldwide to create conversational robots, or BOTs, for MSNR Messenger and Windows Live Messenger. The most original, useful robots collect $40,000 in total prizes . See http://www.robotinvaders.com/main/default.aspx . Questions about the contest, building Messenger applications with a BOT or Activity, what you can, should ...Show All

  • Visual Studio 2008 (Pre-release) LINQ and SQL Server Permissions

    Hi, I have one reservation about jumping into LINQ for an enterprise application: Security. It seems (and correct me if im wrong) that to be able to use DLinq to perform insert/updates on the database, you would have to allow the database user you connect as, to have insert/update permissions on the tables in the database. This is not considered good practise at the company I work for, where we only give the user execute permissions for store ...Show All

  • Software Development for Windows Vista MSWF Persistency / How To - Step by Step Instructions + VB.Net Samples

    Hi, I am fairly new to MSWF, I am using MSWF Beta 2.2 installed on WinXP SP2 which has the official release of VS .Net 2005 . I managed to create a simple sequence workflow. Now I am trying to evaluate using MSWF in a human interaction workflow where a user starts a workflow process by starting Activity-A (For example) and then some other user continues this process by working on Activity-B of the same process instance. To be honest, I h ...Show All

  • SQL Server Trying to do too much in a view... I think?

    Hello all, I have a table that contains a whole bunch of clinical statistics. There are some other fields I would like to add, but they are best created on the fly, so I thought I would do this with a view. I can create some of my dynamic fields (like BMI below), but when I try to use them again in the view it doesn't work. (ie, I get an error when I try and include the case statement bit). Does anyone know what I can do Kitty. ...Show All

  • Audio and Video Development Is the new Media Foundation a replacement of Direct Show?

    They seem to perform the same task too me. Is Media Foundation supposed to replace Direct Show Hi John, You're correct that DirectShow and Media Foundation are similar; both of them are platforms for running multimedia presentations. As for whether Media Foundation is a replacement for DirectShow... As of Media Foundation v1 (i.e. the flagship version of Media Foundation that will ship with Windows Vis ...Show All

  • .NET Development DNS Resolve problem in .NET 2.0????

    I can type an IP address and receive Internet domain name and my workstation name however no other IPs of computers on our internal network will resolve to a thier machine name only to the same IP that is entered. What's up Microsoft I can say that before we switched over .NET 1.1 to 2.0 the Dns.Resolve(entry); would find a name for any IP, LAN or WAN. Q. Any ideas [This is new .NET 2.0 method that replaced the former .Resolve method] pri ...Show All

  • Visual Basic Why ADO returns EOF in VB while there are data in the SQL2005?

    In the VB code, I use ADO to access database. The SQL statement like "select RequestNum, RequestID from Request where timestamp = {ts '1999-04-02 11:02:56'}" will be executed successfully sometimes, while sometimes it will fail. I tried to sleep some time before the sql statement runs. But the failure also occurs sometimes. Does any others encounter this issue Please give some advice. ...Show All

  • Visual Basic Faulting application...faulting module kernel32.dll, Source - .NET Runtime 2.0 Error Reporting

    I am getting following error once I double click on the executable of the custom application Faulting application km.exe, version 1.0.0.13965, stamp 4486cb6c, faulting module kernel32.dll, version 5.0.2195.6946, stamp 40d223b8, debug 0, fault address 0x0002bbf3. Km.exe is my custom WINFORM application executable. I believe the above is a common Error Message. It has been a very frustrating experience for last two days exlcuding today. ...Show All

  • Visual Studio Express Editions Printing a form

    After following the code found here   to print a Windows Form I now have this Dim memoryImage As Bitmap Private Sub CaptureScreen() Dim myGraphics As Graphics = Me .CreateGraphics() Dim s As Size = Me .Size memoryImage = New Bitmap(s.Width, s.Height, myGraphics) Dim memoryGraphics As Graphics = Graphics.FromImage(memoryImage) memoryGraphics.CopyFromScreen( Me .Location.X, Me .Location.Y, 0, 0, s) End ...Show All

  • Visual Studio Team System Testing migration from TestDomain to NewDomain

    Hi, I've been testing the process of moving from a Test Domain to a New Domain. Everything went pretty well and at first I thought it had all worked, however there is a slight problem with Reports. If I browse to http://localhost/Report and try one of the default reports everything is ok. But, if I use VS 2005 and browse to the reports using Team Explorer I gets a dialog box asking for username and password when I launch a stock report. ...Show All

©2008 Software Development Network

powered by phorum