Software Development Network Logo
  • Visual J#
  • Visual C#
  • VS Express Editions
  • Smart Device
  • Visual Basic
  • Visual Studio
  • Visual FoxPro
  • Windows Live
  • Windows Vista
  • Architecture
  • VS Team System
  • .NET Development
  • SQL Server
  • Windows Forms
  • Visual C++

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

trevorgmitchell

Member List

CodeMission
live cricket audio commentary
wacher
orama
SteveTr
jacky1019
Yeowser
neonDog
Gideon Schlen
Brian Leech
Dave Jeffrey
WiKoPL
El Looper
srem
carlsnilsson
Anand
Markchr
Maik Wiege
lle
digioso
Only Title

trevorgmitchell's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. retrieving more than 4 values per texture lookup

    Is it possible to have a texture with more than 4 values per texel My problem is, I need to look up a chunk of many values (about 16) multiple times per pixel and I like to do that quickly. In my setting more than three 2d texture lookups each time (= 12 float values) is the maximum I can allow without a significant performance drop. Also if anybody has experimented with 64 or 128 bit textures I'm interested to know about the performance of a lookup compared to a 32 bit tex lookup. Maybe it is reasonable to pack more values into those larger formats If that is possible at all. Nico No, you can’t g ...Show All

  • Visual Studio Express Editions finding lesson resource file for absolute begginer video

    I am trying to locate the Resource File for lesson 2. It says to find it where I downloaded the video from however I cannot locate it anywhere. Any help would be appreciated. Are you talking about the video's from "LearnVisualStudioNow" The free one's you can download from the MSDN VB Express site   If you downloaded the videos, the code file should be in the same loacation you saved the video to.   Hope it helps. ...Show All

  • Visual FoxPro function argument is invalid...

    I have a problem with this message and a few similar once. When I get it I invoke the debugger and attempt to examine the variable/argument. In this particular case it is a memner of an array. I suspect that instead of a character string it got an .F. value but it is hard to prove because I cannot examine it. If I attempt to look at it in Command Window I will get the same message that it is invalid. More than that, some other related, neighbouring variables become shielded as well. If I try to examine them I get the same message. Is it a particular anomaly of my setup or a universal problem Can anything be done about it Thanks. Hi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem with lights

    I've created a model with 3ds max 5 and I've exported to .x fileformat. I used Manged DirectX to load the file and render it, but all the materials are rendered in white color. Here is the C# code I use to load the meses, the method I use to load is called LoadMesh and the one which renders them is called DrawObject. Can somebody help me thanks: /* Author: Eduardo Fonseca B.  * Create on: 23.October 2005  * <comments><comments>  * <changes>  * Author   Date    Description  * </changes>  * */ using System; using System.Drawing; # region Direc ...Show All

  • SQL Server controlling security through stored procedures -- 2005 behaviour

    Hi! I'm trying to control security through sps -- meaning execute permissions are granted on stored procedures, and no users have read/write permissions on tables, etc directly. Which works fine as long as all objects referenced are in the same db as the procedure. An issue arises when a stored procedure accesses a table in another database: Getting a : Msg 229 SELECT permission denied on object 'blah' Even though the procedure is created by sysadmin. Has this changed since 2000 I'm pretty sure in 2000 it would've worked as the sp would be executed in sp owner's security context. Moreover, when I try to use EXECUTE AS in the sp as ...Show All

  • Visual C# Generics C# Matrix

    I was about to design a Generics C# Matrix in this way: public class Matrix < T > {        List < List < T >> _data;        .... } Many issues made desirable in this case, constraint the type T to be a numeric base type. Let's say, int, long, byte, float, double... But I really couldn't find the legal way to add such a constraint. The question is precisely that: How do I constrain the generic type to a numeric base type This is just an admirable and elegant solution. Is very clean and recursive. I wish I could imagine it before! ...Show All

  • Windows Forms resizing constituent controls within an instance of a userCtrl

    hiya I have a userCtrl that contains: 1) a label 2) a combobox   I want to be able to resize the label, making it a different size on  different forms.   So, I:   1) drag an instance of the userCtrl onto my form 2) make the userCtrl modifers PUBLC. 3) use the propertyBrowser to manually change the "location" properties  of the userCtrl label.   Howeve ...Show All

  • SQL Server "Invalid Object Name" error in "Database Setup" step of "Configuration Manager"

    Hi-- I'm getting the following error trying to connect to my SQL 2005 server in the in "Database Setup" step of "Reporting Services Configuration Manager": "Invalid object name 'sysdatabases'". FWIW, I installed "Reporting Services" on top of an existing 2005 install. Just to validate the advice above...I was installing SQL 2005 Standard Edition x64 Reporting Services, and after runnign RS config, I was having this problem as I tried to connect to a remote SQL 2005 Standard Edition x32 RS/DB instance. Changing my administrative account which I was using to install/and config to have master as my default ...Show All

  • Visual C# why can't auto list members in c# editor?

    in project WebSite1 can auto list members, but when I add a classLibrary to the solution, C# editor can't auto list members, why sorry,it can works. i test class A {    Console. // so no auto list members } the right sample is class A {    void MethosA()    {       Console.Write(); // auto list.    } } i am sorry. ...Show All

  • Visual C# Can I trigger timer interval of 24 hours?

    Hi all, I would like to perform a job daily. May I know how to trigger a timer of interval 24 hours to perform the job Can anyone please help Thanks Why not just create an application and add it to scheduled task Start -> Control Panel -> Scheduled Task -> Add Scheduled Task It's easier this way, and you are certain that your scheduled task will executed on your specified time of day without worrying of thread breaks. Regards, -chris ...Show All

  • Windows Forms Create property Datasource,DisplayMember,ValueMember same Combobox Control

    Please help me create property Datasource,DisplayMember,ValueMember same ComboBox form my control. Please help me! If I understand you right... you’ve got a User Control that contains a ComboBox and you want to be able to set the DataSource, DisplayMember and ValueMember properties on the UserControl and have them affect the ComboBox... is that correct If so... you can simply use the following, just make sure to rename the ComboBox name in this code to match the one in yours:         public object DataSource         {      &nbs ...Show All

  • Visual Studio Express Editions How can I do reports with my visual Basic Express Edition?

    I would like to do charts reports with my visual basic Express edition.     I'm seeing a number of issues like this. I wonder if the user community is not forgetting the intent of Visual Basic Express It's intended for hobbyists and people who are learning computing. It is not intended for production use. ...Show All

  • Windows Forms Merging ContextMenuStrip to ToolStripMenuItem

    I have a context menu which defines a basic set of items(add, remove, properties). I would like to add these items to a ToolStripMenuItem. Using the MainMenu and ContextMenu from .Net 2003 this was very simple to do using the following code: MainMenu1.MenuItems(1).MergeMenu(ContextMenu1) I have tried the ToolStripManager.Merge function but the incoming types are different. There is very little documentation still for Whidbey, as expected since it is still in beta. Can anyone help me out Am I just goin at this with the wrong approach now, has the architecture changed radically You can merge on opening and re ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Want to make a high end game

    Can anyone tell me whats wrong with the free express versions I downloaded the C++ Express Edition Beta and I have been having trouble right from the start.  How do I fix this fatal error C1083: Cannot open include file: 'windows.h': No such file or directory I tried downloading the platform SDK from microsoft and it didn't even want to install... ...Show All

  • Visual Studio 2008 (Pre-release) Endpoint not found exception when more than 20 clients connected simultaneously

    Hi, I am developing a WCF application in which more than 100 clients will connect to the server simultaneously and in each request server may send large data (say 25MB per request). While testing the app, I realized that only 10 request can be handled at a time and client will not get any exception till 20th request but after 20 request it start throwing Endpoint not found exception for the rest of the connection. Below are the server and client config files: (I am using Feb CTP and threading in loop(100) at client side to test the application) Server: < xml version = " 1.0 " encod ...Show All

©2008 Software Development Network