Software Development Network Logo
  • Windows Forms
  • SharePoint Products
  • Visual Basic
  • Windows Vista
  • Smart Devicet
  • .NET Development
  • Audio and Video
  • VS Team System
  • IE Development
  • Visual C#
  • Game Technologies
  • Visual C++
  • Visual Studio
  • SQL Server
  • Visual FoxPro

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

Swimmer84

Member List

Alexei Pavlov aka BlackTiger
kewpcg
ajeton nandan
Fulankazu
Torgeir F.
Ross B.
dreameR.78
Ke Sun
Christoffer Skjoldborg
Cuneyt Deger
Dr. Pastor.
Adam Nemitoff
ancient sord
ksona
ShivaanKeldon
Thomas Li
reborne
Chanakya
kidwidahair
Dave Britton - VERTIGO
Only Title

Swimmer84's Q&A profile

  • Visual Studio 2008 (Pre-release) Does Rotate also mean skew?

    I've drawn a Rectangle and filled it with a DrawingBrush, then tried to transform the brush and rotate it by 45 degrees [ see the source code ]. The resulting transformation as you can see in the image is also skewed. The same applies for all brushes as well as the opacity mask ones. Does anyone have any idea why this is happening (this was answered in the newsgroups, but in case people aren't watching there I'll copy the thread back) I believe that's correct - basically what's happening is that your rotation is applied, and the result is then scaled by Viewport.Width / Viewbox.Width, Viewport.Height / Viewbox.Height. If that results in a non-uniform scale, you'll see what looks like a skew applied to your rotated object. I'll ...Show All

  • Visual Studio 2008 (Pre-release) How to create an instance object with NetTcpBinding

    I want to create an instance from a server, so the client can use and call that instance. But I am getting communication error like this: "The socket connection was aborted. This could be ...". Here I have provided the code: ///////////////////////////////////////////////Create a project called Common and add these files-Must be of type class library ////////////////////// DatabaseData using System; using System.Data; using System.Runtime.Serialization; namespace Company.Common.Data { [System.ComponentModel. DesignerCategory ( "Code" )] [ DataContract ] public class DatabaseData : DataSet { public const String DATABASES_TABLE = "Databases" ; pu ...Show All

  • SQL Server INSERT INTO table From EXEC -

    Hello, How can I insert values from a query directly to a table in my database the query gets values from a linked server and i want to directly insert the results in my local database. This is how i thought would be done: CREATE PROCEDURE dbo.SP_INSERTfromEXEC AS BEGIN INSERT INTO dbo.mytable EXEC dbo.QuerytoLinkedServer END When i execute dboSP_INSERTfromEXEC procedure, then i get this error: The operation could not be performed because OLE DB provider "SQLNCLI" for linked server "blahblah" was unable to begin a distributed transaction. Now, when I execute dbo.QuerytoLinkedServer procedure, i do get the values, there is no error. It just doesn't want to insert it I suppose. Any help would be greatly appreciated! ...Show All

  • Software Development for Windows Vista THe application can't be loaded when it's attached to Verifier?

    Why this happened Does that means my application failed to run in the vista Hello Focus, Can you please be more specific Are you receiving any error messages Do they have a hex code associated with them Is your application 32 or 64 bit Is it a .NET application What tests are you running on the executable Thanks! Matthew Braun ...Show All

  • SQL Server Install Sql 2005 Instance on Sql 2000 Server

    Hi We would like to install Sql 2005 Enterprise Edition (including database engine, reporting service, integration service and analysis service) as a sepearte instance on a server which already has Sql 2000 with reporting, analysis services. We do not want to disturb the existing sql 2000 setup. I heard that reporting services are instance unaware application. Please let us know If I can install the sql 2005 on 2000 server. Sankar N Ok. Thank you. So there will be only one reporting service on my server after installing Sql 2005. If so then what will happen to my earlier sql 2000 reporting service Will it be upgraded to sql 2005 reporting service Where will be the default reporting service da ...Show All

  • Visual FoxPro ActiveX control created in multithreaded VFP COM dll

    I just can't to solve the problem. May anyone say why a MSWinsock control isn't work in VFP COM dll. In common exe this all works fine, but in the COM dll nothing happens, while I invoking Connect method. Really nothing! The State property remains 0 at all. Help if you know   cosmmm wrote: I just can't to solve the problem. May anyone say why a MSWinsock control isn't work in VFP COM dll.   I just understood one thing: I organized a loop to wait an answer from the server and used the INKEY(.1) command. In this case all works fine. But in COM dll INKEY command causes the error "User-interface operation not allowed at this time". So MSWinsock control doesn't have idle ...Show All

  • Visual C++ Dependency debugging

    Is there anyway to turn on any kind of dependency output so I can debug a problem that I'm having If you've ever used make i'd like to see output similar to 'make -p'. My solution file has 15 projects in it and any time I try to debug the main program it thinks that all the projects are out of date and need to be rebuilt even i just rebuilt 2 seconds ago. Thanks in advance. This is very annoying. Please add something like this or fix the visual C++. It's a shame that years after the makefile concept was introduced vc8 still can't get this right. I get unnecessary builds every day when I do make solution. The users shouldn't have to break up their solutions just because projects spontaneously get out of dat ...Show All

  • Internet Explorer Development How to disable backspace

    Is there a way to disable backspace, so that when I am entering text in a form and hit the backspace, I don't accidentally go back a page if my cursor is outside of the text box This is a major problem for online university tests that have essays, because you end up ending your test in the middle of an essay if you hit the backspace. Note - I don't want to disable this as a web-developer, but rather as a client. (IE, there's a lot out there on code to disable backspace on a web-page you wrote; I want to know how to disable it for all webpages of my copy of IE 6). Thanks. Jon Thanks for the suggestion, Omar. This almost works, but I want to be able to use the backspace key for its original function (backsp ...Show All

  • Visual J# MYSQL Connection in J#

    Hello! I've been surfing around and I cant seem to find a easy way to connect to a mysql database using J#. Is it like 300 turns before you make it work or does any simple way exist I have the import System.Data.Odbc.*; and I can get a connection but how do I execute a statement that return just a string with the data I need The connection I make with "OdbcConnection MyConnection = new OdbcConnection(MyConString);" I really need some help regards David Hi, Create odbc datasource to MYSQL database. (For more info see here ) Use the following code to execute your query OdbcConnection con = new OdbcConnection ( "dsn=Test;uid=test;pwd=test" ); //specify your datasource ...Show All

  • Internet Explorer Development IE7 FTP Security Issue

    I have run into a security hole in my ftp site that has only now become a problem with IE7. The structure of my ftp directory involes several streaming media folders and a Client folder in the root directory. The contents of the client folder and its children are all password protected. Inside these folders I upload content for my clients to view approvals and allow them to upload files for my own use. The root directory has read-only permissions for everybody because of the streaming content I am hosting. In the past when a client logs into their ftp folder, the password protected nature of the client folder prevents them from moving up in the hierarchy outside of their folder. In IE7 however, I have found that a client can now leave he ...Show All

  • Visual Basic Capturing a section of the screen.

    I am trying to make a simple personal program and cannot figure out how to capture a section of the screen. I want it to work like prt scr does except it captures a specified rectangle instead of the entire screen. I am thinking I have to use Drawing.Graphics but am not sure. Thank you. Troy L I use Bmp.Save(ImageFullPath, Bmp.RawFormat) and still get 'A generic GDI+ error.' ImageFullPath = New IO.FileInfo(open.FileName).FullName Bmp = Image.FromFile(open.FileName) And open is my OpenFileDialog. Any Ideas ...Show All

  • .NET Development Asp.net web service problem

    In our project we use asp.net and asp.net web service..... in our local network......... asp.net web application invoke web service..................works fine............... but if we try to invoke web service from remote Server(Hosted in australia in Windows 2003) to our local machine.(Windows XP) it generate an error of 403 ................ 1) how can we create an web service that hosted some where and invoked by any application 403 is an security error thrown by IIS. You need to investigate your security access levels. If you dont want authentication on the virtual directory, turn Integrated Security off and turn on anonymous access. You can do this in IIS->[Website]->[Virtual Directory]->pr ...Show All

  • Visual FoxPro print form

    hi all, i have some Labels on form. i want to print entire form. help me regards m.a.khaleel There is nothing built-in to VFP to print a form. You'll find some code if you search the downloads at www.universalthread.com, or you could use a 3rd party screen capture product like SnagIt (www.techsmith.com), or use alt-PRTSCRN and paste the image into Word for printing. ...Show All

  • Smart Device Development not able to scroll the webbrowser to the bottom of the document?

    Hi, I'm working on a chat application. I'm using the webBrowser control for displaying the chatText. Now the prob is the control does'nt automatically scroll the page down when the new msg is appended to it. I'm actually appending the new msg to the "documentText" property of the control. How to get the scroll bar of the control, scroll to the bottom of the contents, when the new msg is appended to it. Any idea Plz help. Thanks, Hari. Thanx Andrew, I used window.scroll(). It works - Hari ...Show All

  • Smart Device Development how to debug App on WM6.0 Device?

    Hi, My Environment: Windows XP +Sp2 ,Visual Studio 2005 professional, ActiveSync 4.5 beta. firstly, i use WM5.0 SDK, and i set some bleak point, then Press F5, the App can run, but the app likes ignore the break point. today, i install the WM 6.0 SDK, it also can not work, although it stop some places, the break point lines can not changed ,and Press F10, it didn't continue running. what is the problem thanks.     Debugging on devices is fully supported by VS. Is it possible for you to share the snippet (or full code) so that I can have a look to it. BTW, you may find following link useful http://msdn2.microsoft.com/en-us/library/ms180772(VS.80).aspx Thanks, Achal VSD, Microsoft ...Show All

©2008 Software Development Network