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

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

jsedlak

Member List

Microbert
kiran1234
VFaul
Luis Esteban Valencia Muñoz
AmrishDeep
EddieBear
AlfonsAberg
nickwilliams
TboneToo
sebs
giddy
SimonS_
RC COLA
akeiii
Tega
Rajesh batchu
ares_l
Aleniko29139
GetCode
Webstar
Only Title

jsedlak's Q&A profile

  • Windows Forms Multiselection of columns in datagrid

    Hi, How can I do th multi selection of columns in datagrid (It must be like selection of rows) Thank's Alexei ...Show All

  • Visual Studio unable to start debugging

    After installing VS2005 and i have made an application..when i started debugging i usually gets an Error unable to start debugging the binding handle is invalid..Wat TO Do.. Ididn't Understand Plz anyone can help Me regarding this Uday, This is a known issue. You need to enable Terminal Services to work around. Here is a link that describes how to do this. https://blogs.msdn.com/habibh/archive/2005/11/10/491572.aspx Azeem Khan VS Debugger. ...Show All

  • SQL Server import ascii file with ssis and script

    Hi, i've question about how to import an ascii-file in a sql 2005 table. I want to import this file also with an unique key. There i first have to get the last key form the table and then raise this key. Next step is to use this key during the import. How do i have to do this in ssis Thanks in advance Olaf Your flat file should hook into the data conversion transformation and then to the script component and then to the OLE DB destination. FF -> Data Conversion -> Script Component -> OLE DB Destination. No union is necessary. ...Show All

  • Smart Device Development updating web reference thru UI

    how can i do this I'm sorry, I do not understand what you're saying and what IDE has to do with it. It just changed use URL and instead of one server connection would be established to another one, that’s it. Web Service has to be unchanged. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Collision - Boundingbox

    Hey guys it’s me again I have one further question. How can I make Boundingboxes and Collisiondetection. I now the sample in the help documentation but i don`t understand it and it doesn`t really work. Could someone give me a sample collision class Can you also show me how to use the class boundingbox i am to stupid for it. Thanks to all Thanks for the code! I tried it on my models, which were made in 3D Studio Max and exported to .X format, but I had to add an extra foreach in there because the MeshContents are grandchildren of input instead of just children. I'm gonna go over to Connect now and submit a suggestion for this because IMHO it's something XNA should offer out of the box. ...Show All

  • Windows Search Technologies WDS 3.0 adm

    Hi Does anyone know if/when ADM files will be released for WDS 3 to manage through GPO Or know anyone the reg-keys to manage it regards, This was answered in the " Windows Desktop Search Help " fourm. WDS 3.0 does not completly contain all GP settings. The .adm file will be included with the 3.01 release. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. constructive solid geometry

    Hi , I hope to create a system CSG, where you will be able to add boolean operators between object (cube/sphere/cylinder...), is there anyone who know algorithm's name to apply boolean operator cheers Hi, although I am aware, that this probably doesn't belong to DirectX or XNA itself, you might find this link interesting: http://www.flipcode.com/cgi-bin/fcarticles.cgi show=64448 At least there are some basics and references for two different realization methods: "Set Operations on Polyhedra Using Binary Space Partitioning Trees" by Thibault & Naylor ( ACM Link ) "Constructive Solid Geometry for Polyhedral Objects" by Laidlaw, Trumbore & Hughes ( ACM Link ) If you have an ACM ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How do I manually uninstall old XNA framework?

    I was messing around with my registry (trying to delete old items from the Add/Remove Programs list) and I seem to have removed the "Remove" button for the XNA framework. How can I manually uninstall the old framework so I can install the new one Also, do I need Game Studio Express or just the XNA framework Thanks, John If all you previously installed were the (beta) XNA framework runtimes, you can uninstall those manually by going to c:\windows\assembly, finding the Microsoft.Xna.XXX assemblies and choosing "Uinstall" from the menu that appears by right clicking on them. ...Show All

  • Visual Studio 2008 (Pre-release) 3d Mesh Collision

    I'm working on a simple game in WPF, and I would like to know when to meshes (ModelVisual3Ds) collide. For example, if a character shoots a rocket, I want to know if the rocket hits something. I thought that one of the HitTestResult classes may be the answer, but I'm not so sure. In v1, the WPF does not have a feature for general collision detection, but ray hit testing may be adequate for your scenario. The code to perform the hit test will look something like the below: VisualTreeHelper.HitTest( _mySceneRoot, /* filter = */ null, new HitTestResultCallback(HTResult), new RayHitTestParameters(_rocketPosition, _rocketDirection)); Your HitTestResultCallba ...Show All

  • Visual Basic SQL command to Access database in vb2005

    Hopefully someone can shed some light on the problem I’m experiencing. I’m fairly new to vb2005 but I’ve managed to totally confuse myself. Below is an example I’m using to extract data from an access database however when I try to include a "Where/Like" command I’m getting no data returned. The really confusing thing is that if I paste the sql string into access it works fine. The actual sql string I build is:- “Select * from M_Businesses Where Description Like 'B*' Order by Description;” I’ve included code and an access database to recreate. Any comments would be much appreciated. Cheers John Private Sub TextBox1_TextChanged( ByVal sender ...Show All

  • Visual C++ Converting 64-bit number into string

    Hi everybody, I need to convert an unsigned long long number (64 bit) into string with C++ 2005. The number for example is: 13057201162865595358. I want to write this value in a text file, but when i try to use ultoa to convert the number the result is 292279262. Here is the code: unsigned long long mt; char buffer[64]; mt=13057201162865595358; ultoa(mt,buffer,10); The result in "buffer" is the number mentioned above. Anyone can help me Thank's in advance Andrea Your input number 13057201162865595358 is more than 8 bytes. ultoa can only convert 4 byte numbers. You can convert 64 bit numbers using _i64toa. using namespace std; int _tmai ...Show All

  • Windows Forms Change cursor problem

    Hi, i got problem when i tried to build and run this: this .Cursor = new Cursor (GetType(), "pen.cur" ); or this .Cursor = new Cursor (GetType(), "Resources/pen.cur" ); I got thrown by NullReferenceException I have embed it under resources, change its Build Action properties to Embedded Resource . And it is under Resources folder that i have created. What's happenning I think i have to change the question. How can i change a cursor of the form to the cursor i have added to my project I found in some website like this: Cursor .Current = new Cursor (Properties. Resources .MyCursor.Handle); But i can't get .Handle properties when i use mine. So.. anyone thanks ...Show All

  • Visual Studio Express Editions best way to find all if webbrowser is totally ready

    I am trying to automate saving data from browsing some websites. I am having great difficulty to judge whether the webbrowser has completed all frames and becomes ready. I tried matching download complete against beforenavigate2,...etc as well as trying to use webBrowser.ReadyState Assuming you are using the VB Webbroswer control....Use the "DocumentCompleted" Event of the webbrowser control..if this is an asp app then use the page loaded event ...Show All

  • .NET Development Enumerate page objects

    I'm creating a page that will change over time. I'd like to be able to do a for next to get all the IDs of the text boxes and populate them from a database that has a matching column name. I'm struggling with how can I enumerate objects that are contained within the page. My language of choice is VB.net Thanks If this is an ASP.NET question, I would post it to : http://forums.asp.net/ If it is a Windows Forms question, I can move this post. Bret Grinslade [MSFT] NETFX/VS Setup and Deployment ...Show All

  • Visual Studio Express Editions Is it me or has intellisense been dumbed down for C++ Express?

    I just downloaded the Visual C++ Express Edition for one of my classes after using the Visual C# Express for a quite a while, I went into the program thinking it would be an extension to my already existing program with an added language. To my dismay I found out that it is actually an entirely seperate program, if there is any way to unify the two though, could someone please tell me how, thanks. Anyways, I started using it expecting the intellisense to pop up automatically as soon as I started typing anything, and sadly, It did not. After looking around through settings I was able to find that I can make it pop up by hitting alt-right Arrow, but that is alot of extra keystrokes, that I would rather not have to hit and have it be like the ...Show All

©2008 Software Development Network