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

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

tsadipe

Member List

Kieron Lanning
WolframW
donnie100
kawing0510
T Pedersen
Mike Batton
Programmer Chang
Finch82
akira32
NewbieElliott
paolod
imed-deborah
Animatrix
gharen1234
austriana
english_d
Rattlerr
Reid Williams
pdavis68
F. Gsell
Only Title

tsadipe's Q&A profile

  • .NET Development How to register a program as a trusted application?

    Does anyone know how to register your program as a trusted application in Windows so that the user is not prompted with security concerns throughout its execution ...Show All

  • Visual Studio Express Editions How do I format my data coming from an access DB

    I have a bunch of questions. I am a newbie to VB 2005 express edition. I have a DB in access. I have created my queries to get the data I want from the DB. I am inserting labels to pull data from the query. How do I format the positioning of the data (labels) so that my data starts where I want it to start from, Eg: How can I have, lets say (label2) start from position 13 on the page. I can select the pixel it will start from but I need to select by position. Also if I have 2 rows, my data is displayed one at a time. How do I get it to show all at once. Thanx I think you need to fill people in more. "lets say (label2) start from position 13 on the page." What is positio ...Show All

  • Visual Basic Class not registered

    I just transferred an app from one computer to another and upgraded from VS 2002 to VS 2005. After doing this, I'm getting several errors, the most common one being: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)). The error occurs on the line that says InitializeComponent() at the end of the region "Window Form Designer generated code" for one of my forms. I looked at my classes in the Class View window, and they appear the same as those on my other machine w/ VS 2002. What do I need to do to register this class The error occurs on the InitializeComponent () line below. # Region "Windows Form Designer generated code " Public Sub New () ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Vector Math Help

    I'm having a problem...I have a ship heading in a direction VectorA and a gravitational force pulling it towards an object, when it collides with that object, I need to bounce it off that object into the correct direction, (180 - angle of collision), but I cant figure out how to get it to head in the proper direction at the correct speed. if (shipBounds.Intersects(sphereBounds) == true ) { double yoffset; double xoffset; double returnangle; yoffset = ( double )(playerShip.Position.Y - sphere1.Position.Y); xoffset = ( double )(playerShip.Position.X - sphere1.Position.X); returnangle = Math .Atan(yoffset / xoffset); returnangle = (double)MathHelper.ToRadians(180) - returnangle; playerShip.Velocit ...Show All

  • Smart Device Development Protocol Violation Exception for httpWebrequest

    hi all, I am trying to send the set of datas to the server in the RequestStream.But i m getting error of protocolviolation exception.Code i m using is:: HttpWebRequest httpReq; HttpWebResponse httpResp; Stream httpStream; string ServiceInfo = "Uploads/1.0 "; try { ServiceInfo += DeviceInfo(); ASCIIEncoding ASCII = new ASCIIEncoding(); Uri l_uri = new Uri("http://or2.inamobile.co.uk/inamobile/xml"); httpReq = (HttpWebRequest)WebRequest.Create(l_uri); httpReq.AllowWriteStreamBuffering = true; httpReq.SendChunked = true; httpReq.Method = "POST"; httpReq.Timeout = 60000; httpReq.ContentType ...Show All

  • Visual Basic Can't find solution ANYWHERE

    Sorry, but I'm about to rip my hair out... I have 3 machines..1.serverbox with xp pro and sqlexpress...2 laptop1 with xp pro visual studio 2005....3 Laptop2 with xp Home edition. I wrote an application in visual basic 2005 (Laptop1) that connects to an SQLserver on an xp pro box. I used Network Wizard to set up my home network on 3 machines. serverbox, laptop1 and laptop2 I set up user1 in sqlexpress with the db1 access...and password. conn.ConnectionString = "Provider=SQLOLEDB;Data Source=" & logServer.Text & ";Initial Catalog=" & logDatabase.Text & ";User ID=" & logUsername.Text & ";Password=" & logPassword.Text The application I wrote is on my ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed DirectX in C# Training Courses in UK?

    Hi all, I don't want to be the next best game developer but I've always been interested in game development. I have a couple of personal (unique, I think) game design ideas that I would like to undertake using Managed DirectX. I really would love to go on a crash course for Managed DirectX in C#, especially targeting Direct3D. I realise graphics programming and game programming as a whole is a massive subject that spans several skills and takes years to master. I've been reading books over the years and following C++ tutorials, I've got some understanding of bits and pieces of this API. What i haven't got is any completed projects or code and versioning is inconsistant. I suppose I am getting there slowly and steadily but I don't al ...Show All

  • Visual Basic hi

    hi to all i am new here i didnt find any forum for java http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=28&SiteID=1 Is the forum for J# That's the best you'll do here... since Java is not a Microsoft technology. You might try the Sun website... ...Show All

  • Visual Studio Team System Hosted TFS

    Anyone knows of a company that offers TFS as a hosted solution I found these guys: http://www.vsteamsystem.com/ but they're not active yet. Any others Can I use CodePlex to develop commercial software Or is it just for open source projects Can I limit the developers on a project ...Show All

  • Visual C# Merge sort code

    CAN SOMEBODY TELL ME HOW TO MAKE THE MERGE SORT CODE FOR C# WINDOWS FORM....THANKS ...Show All

  • Windows Forms Problem with User Control

    Hello, I have a tree control that I have extended as a user control. When I drag this new user control onto another winform, the tree control does not respond to the click event in the calling form. What am I doing wrong Hi Seattle, Silly question, but did you put a debug point on the entry to the Click event Maybe it is reaching the Click event but just not executing any code Kind Regards ...Show All

  • SQL Server SQL Express -> SQL CE

    Hi there , if i'm posting on wrong forum, pleas redirect me :-D i'm still learning, and i decided to make my app for start in SQL Express and Visual Basic Express... i dont use stored procedures and sql specific features... so i use express only as data store.. questions 1. can i just convert database from sql to sql ce format when sql ce goes public 2. is then enough just to change connection string in my aplication or do i need more changes 3. when users needs grow, can i then again convert sql ce database to sql database with all the users data ! i need it to work with both... cose i would like to have one version for single user app and another (using sql express) for network version of the same app... Hi William I just dow ...Show All

  • Visual Studio How to add an assembly reference when processing an item template?

    Hi, I have an item template that uses a base class in another assembly. Is there a way to ensure the project has a reference to that assembly and if not, add it when processing the template Regards, Alexander Well, the idea was to have some kind of declaration (probably within the tempate) stating what assembly references the template needs. And the engine careing for the reference in the project. I know how to do that in a custom action, yet it strucks me as a very common demand that should be available within the system. Regards, Alexander ...Show All

  • Software Development for Windows Vista Throwing SoapException between WS_Receive and WS_Response

    I have a state machine workflow that has a WebServiceInput and a WebServiceOutput. According to the documents, any unhandle exceptions thrown between a WS_In and a WS_Out will return a SoapFault. A soap fault is being returned to the consumer of the web service. However, in one of my activities I am explicitly creating a SoapException and building the Detail property of the SoapException. After the SoapException is created, I throw it, and dont handle it. When the soap fault is returned to the caller of the web method, the xml contents of the detail section of the SoapException are gone. If I throw a SoapException from some code in a normal web service and use the soap toolkit to see the contents of the soap fault, the <Detail> ...Show All

  • Visual Studio Express Editions Richtextbox borderstyle

    Hi, I created a simple form with a richtextbox in it and I find that whether I specify the borderstyle as fixedsingle or fixed3d, the richtextbox displays as though the borderstyle is fixed3d. I downloaded the recent patch for the C# express edition and that did not fix the problem (bug ). I am running under Windows 2000 but I doubt that is the problem since borderstyle as fixedsingle displays as it should for other controls, e.g. panel. Has anyone else noticed this problem and does it occur in Visual Studio 2005 Also, does anyone know when the next release of Visual Studio will be out Thanks for any help. Thanks for the response, Hans. I do not have msftedit.dll on my system but do have riched20.dll ...Show All

©2008 Software Development Network