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

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

Predator14567

Member List

fredrikt
Scott Allen - OdeToCode.com
eldiener
comspy
Warren13
rajendra patel
laurag
Roggan
Claudeb1965
redshock
MoniDD
CaRNaGe_46038
nkojuharov
Whoisit
Hang Lam
vicarious
OldPivot
Pockey
h1
Digital Autumn
Only Title

Predator14567's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. I need to Load my own graphics format file --> Custom Importer

    I need to Load into the content manager my own graphics format file, i already have the libraries to load this file and extracting it into a Bitmap Array , but i don't have any idea about how i can allow the content manager to load this info. I'm making a 2d videogame, my own graphics file format have a lot of extra information for each frame that it have, because of that i need to read this file extract the bitmap info and the extra info, off course i need that my Texture2D objects obtain the images from the bitmaps that i extract from my own file. something like that: **Solution Explorer --Content ----Textures -------MyFile.JKI Where MyFile.JKI is a file with my own graphic image format, i have the lib ...Show All

  • Visual C# DateTime formatting in 2005

    Having converted a medium to large website from .NET 1.1 to 2.0, I found that some machines displayed datetimes in en-GB format while one in particular (running under server 2003) displayed datetimes in en-US format. The code was identical as were the regional settings. I discovered that IIS on this machine had the default web-site still pointing to 1.1 (the virtual website for my system was set to run under version 2). When I pointed the default website to version 2 and pressed the Edit Global Configuration button and selected the Application tab, I found that the culture was set to af-ZA. I set this to en-GB and restarted IIS. Lo and behold, the datetimes were displayed properly. I then pointed the default website back to version 1.1 ...Show All

  • Windows Forms Get Item in ListView

    Before posting this i did search but couldnt find a solution so i am asking for help........ again Lets say you had on a ListView 5 Items(user names) and each have 2 SubItems (age, gender). The view is set to Details with click event enabled. Ok if i click on a user name (Item) in the Items list, how can i make the name i clicked on appear in a textBox1 Any useful links would also be great. thanks Im using VC++ In addition, here's the msdn about the listview. ...Show All

  • Visual Basic passing a function's name to another function (or sub)

    Dear all when programming in FORTRAN I was used to pass the name of a function to another sub or function. With VB.NET I have some problem. Suppose I have several functions, named F1,F2, F3,.., and that I have to perform some common task on these functions (for instance numerical integration). Well, I wish to manage things in such a way to have a library function or subroutine (to do integration) and to call it passing various parameters 'and' a function name ( e.g. F3 ) to perform the integration of F3 . In other words I wish something similar to this fragment of code to work (declarations and initialization omitted): module main integ1= integration(a,b,step,F1) integ2= integration(a,b,step,F2) end module m ...Show All

  • Visual Studio 2008 (Pre-release) Need Step by step hosting of wcf service in IIS and managed applications (Console)

    Hi all, I am new to .net 3.0. I am trying to create an SOA application using WCF. The SOA application I created a service which justs returns simple string (e.g. "Host service started"). I tried to host this service in a console application. when i run the application, it shows " The ChannelDispatcher at 'http://localhost/WcfHost' with contract(s) '"IService"' is unable to open its IChannelListener. " error. Also, I have doubts in : 1. what is baseaddress, and what data/files will be in base address. 2. how to create baseaddress 3. If i add a <behavior> tag in my config file, it shows an error " unrecognised tag <behavior>" The code having the service in console application is given below: na ...Show All

  • Visual Studio Express Editions can i create my own code snippets by any software to generate xml file?

    hi i'm searching the web for a software to generate xml file which is the code snippet to use it in vb.net can any one help me thanks in advance. Try the snippet editor ... ...Show All

  • Visual C++ Decimal Mistery

    Hi, My name is Angel Delgado, I have a problem with this operation: 16.88 - 15.88 The resutl is 0,999999999999998 I have tested it in VB6, VB 2005 and C++ 2005. Also I have tested it in diferents computers. Which the mystery is r9r99 wrote: I have a problem with this operation: 16.88 - 15.88 The resutl is 0,999999999999998 In addition to what others have said, I would recommend using the Decimal class for such operations. As in Decimal a(16.88); Decimal b(15.88); MessageBox::Show(Decimal::Subtract(a , b).ToString()); ...Show All

  • Visual C++ How can i call the COM Dll from my vc++ project?

    Hi all, How can i call the com based dll file to my vc++ MFC project. And i am having one com based DLL,which is only the dll file(like eg. comgs.dll) there is no .h file and .lib file then how can i use it. Please send any cleared article URL. Thankx in Advance.... Currently i am using Microsoft Visual studio 2005. How can i Add Reference on Solution explorer How can i use COM Object in Vc++ or Vc++.NET ...Show All

  • Windows Forms Disable New Row on DataGrid

    Is there any way to disable the ability to create a new row at the bottom of a datagrid The row marked as "*" appears automatically and I want to disable so I can programatically control inserting of new rows. Thanks If the new row is showing up, then your datasource is an IBindingList (a DataView if you are binding to a DataTable). You need to set the AllowNew property of the datasource to false. For example, if you are binding to the DataTable myDataTable, then set "myDataTable.DefaultView.AllowNew = false;". ...Show All

  • Visual C++ search for value not greater than another in a jagged array of structures

    I was tinkering with the idea of a class that had a reversible memory value array, and its first incarnation was to have for each "location" an array of structures that had values clock k and value v. Is there a way to adapt an array binary search to look at a structure value k which is stored sorted or do I really need to write my own alg for this in function readx: #define AML 0x100 #pragma once ref struct md { unsigned int v ; unsigned long k ;}; ref class rvd { public : rvd( void ); public : unsigned long inc_ks( unsigned int ); public : void dm( unsigned long k0); public : unsigned int readx( int loc, unsigned long k0); public : unsigned int read ...Show All

  • Visual C# Disabling Ctrl + Alt + Del

    I'm writing an employee login application where I of course don't want users messing with Windows while it is running; Therefore I need to disable ctrl+alt+del. I've spent 2 hours now trying to figure out how to do this in C#. I've read from some people that I have to write my own version of GINA. I've also read about using WlxLoggedOnSAS to capture the ctrl+alt+del event. Are these the best mothods for doing this If so how on earth can I accomplish this task Thanks for the help :) Frankly, you shouldn't be attempting this at all. Ctrl-Alt-Delete is meant to be a secure path into the OS; when a user is entering their password, we need to guarantee that he is interacting only with the operating system . If ...Show All

  • Smart Device Development .Net compact framework is not working on my O2 mini.

    .Net compact framework is not working on my O2 mini. I had tried installing .net compact framework version 2. and 2sp1 but both were having error on my phone. It shows "installation error. Stop all applications and process bla bla bla.to maximize storage space." Hey,but i had 20 Mb of free space left out to install the framework. somebody please help me.I just bought a software for my O2mini which requires .net compact framework. i remove all the startup lnk in the windows/startup but i still couldn't install that .Net I even tried going into safemode to install..still can't. ...Show All

  • Visual Studio Express Editions Deploying Visual C++ Application - WinSXS issue

    I need some help debugging an issue, im trying to test an application i have developed on my windows vista machine, with visual c++ express edition + windows sdk installed. when i try to test the application on my other windows machine with XP install (no vc + sdk) i get the usual incorrect configuration etc... Looking at the Event Viewer i get the following errors logged: Oh well, I should mention that I am using VS2005 SP1. According to the link http://blogs.msdn.com/nikolad/archive/2007/02/09/q-a-on-adapting-vs2005-sp1-to-build-your-applications.aspx (mentioned above) SP1 has updated the DLL version numbers and the VS2005 DLLs won't suffice anymore. After installing the vcredist_x86.exe that came as part of SP1 on the XP machine, the s ...Show All

  • Visual Studio Team System CTP7 Download Location

    We are happy to announce that CTP7 is already here, no need to wait till next Monday, here it is! http://download.microsoft.com/download/3/1/9/319c5020-0fed-4dc1-b043-69567fda3941/TeamDataCTP7.exe CTP6 was only released 2 weeks ago, so what changed We added how many errors/warnings you want to see and make it configurable. We added the ability to suppress warnings same like in a C# project. This way you can selectively filter out warnings caused by 3 or 4-part name references. We made the warnings and error numbers explicit so no more overloaded meaning errors and warnings, I will post a list of these in a while combined with examples on when the will occur. We allow you to override the project SET properties for ...Show All

  • Visual Studio Team System TFS: Source Code

    HI, I am using TFS/TS 180 days trial version and created a team project on TFS Server. I am unable to create a source code workspace. i logged into my machine as \domainuser and have [Sever] Team Foundation Administrator rights. i also have admin rights on TFS server in the same domain. thanks! Sneh Do you have rights on your local box If you are apart of Team Foundation Admin Group, on the server level, you should have perms. Thanks, John ...Show All

©2008 Software Development Network