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

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

JerryMcR

Member List

Edward B.
Alex-MyRpg
SasiInfy
SQLBOY36
Salim Hemdani
Ultrawhack
Hoang Nguyen
Ishai Sagi[MOSS MVP]
Mastroyani
idos
MMCompton
uhclstudent
Richard_Wolf
robinjam
dmetz
M.A.D
Marcin Książek
Fox Me Up
Brian Kramer
Billr17
Only Title

JerryMcR's Q&A profile

  • Windows Forms How to load XML objects into custom .Net classes?

    Hi all, Hoping someone can point me in the right direction here. I'm writing a VB.Net 2.0 WinForms admin app to allow users to do maintenance on an Oracle database behind another very large app. To keep the size of the admin app down and to avoid a maintenance nightmare when the tables (about 70 of them) change I am trying to write it so it's totally automated. I already have code to read the schema of each table to get the columns and then I have a form that adds an appropriate custom control for each table column. This works very well but I need it to be advanced enough to hide some columns, make sure others are entered, validate some others, etc, etc. So my idea is to have an XML file (see XML below) containing the tables and colum ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D Playing Cards ?

    How would I approach a 3D representation of a playing card(s) If using a model, would 52 different models be required so that each card has it's own texture Can user primitives (i.e. 2 triangles to make a card shape) have different textures on each side What would be the best method for this I don't think this answered the question asked. The question is would you have 52 models that include texture definitions, or would you "skin" the model with a different face texture based on its value and store the textures separately associating them programmatically with the card at run time I'm interested in opinions on this as well, it may be easier programmatically to create 52 separate models i ...Show All

  • Visual C# how to disable the event of index_change of ComboBox

    There are two ComboBoxes in my application with the same items and should be changed synchronized. However, whenever there is a change to the index, the programe should write data to the Serial Port...So the problem now is, when I change the index of one ComboBox, the other one will also change, however the data will be written to the Serial Port twice... private void cbFreq _SelectedIndexChanged(object sender, EventArgs e) { comboFrequency .Text = cbFreq .Text; decimal freq = Convert.ToDecimal( cbFreq .Text); if(registers.GetFrequency().ToString()!= cbFreq .Text) registers.SetFrequency(freq); } private void comboFrequency_SelectedIndexChanged(object sender, EventArgs e) { cbFreq .Text = ...Show All

  • SQL Server MS Reporting Services 2000 Error ??

    hi when i try to use Reporting Services to render a report from aspx page (web app) (vb.net) by using ReportingServices.dll (by add referennces) i am not using (web referennces) i get this erorr : ================== System.Web.Services.Protocols.SoapException: The permissions granted to user 'NT AUTHORITY\NETWORK SERVICE' are insufficient for performing this operation . ---> Microsoft.ReportingServices.Diagnostics.Utilities.RSException . note: ===== - i have windows 2003 server ent. - sql 2000 sp3 . - MS Reporting Services 2000 sp2 . - i am login as administrator . pls tell me what i can do thank you all Hi, as you did not post a ...Show All

  • SQL Server Teradata, SSIS OLE DB Source error (0x80040E21)

    I am trying to use SSIS to pull data from teradata to SQL2005. 1. When setup ole db source, firstly i setup the connection manager. I tested the connection to teradata, it prompted Okay without problem. 2. then, there are 4 types of data access mode for selection.     If I select view directly, it works fine for copy specific view directly. But if I select SQL command(or from variable), it will prompt an error msg as below Error at Data Flow Task [Source - Testing]: An OLE DB error has occurred. Error code: 0x80040E21. An OLE DB record is available.  Source: "OLE DB Provider for Teradata"  Hresult: 0x80040E21  Description: "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if avai ...Show All

  • Visual Studio Express Editions Webbrowser Title Help needed

    Hey i've been working hard on my browser lately and i've been testing it aswell as some other people and we've notcied that the title of the website dosen't show and over the past month i've tryed some things and been looking into stuff i was also wondering can you get the program's title with the website title for example halo2formbuddy Index - H2F-Browser Can anybody help me thanks. private void wb_DocumentTitleChanged( object sender, EventArgs e) { this .wb.Document.Title = "H2F-Browser - " + this .wb.Document.Title; } Dosen't work sadly thanks. ...Show All

  • Visual Studio Express Editions official description of express edition limitations by microsoft?

    Hello, I read several times that Visual C++ 2005 Express Edition does't support MFC. But only in newsgroups. I have looked for an official microsoft page containing this information for half an hour now because I need reliable information to tell my chief. But I just can't find it. Can anybody help me Best regards, CLenny Take a look at the official FAQ for C++ Express : 42. Does Visual C++ 2005 Express Edition include MFC and ATL No, MFC and ATL are not included with Visual C++ 2005 Express. MFC and ATL will be included in all other Visual Studio 2005 Editions. ...Show All

  • .NET Development Arraylist of an Arraylist

    … public static ArrayList pathDirs = new ArrayList (); public static ArrayList [] allPathDirs = new ArrayList [10]; … for ( int  p = 0; p < 10; p++) { //Changes to pathDirs allPathDirs[p] = pathDirs; //Replace by extra foreach p++; } foreach ( int path in allPathDirs[0]) { MessageBox .Show(path.ToString()); } …     I always get the result if int i was 10(messagebox.show output). If I replaced allPathDirs[0] by allPathDirs[5] or any other number, it wouldn’t make a difference. I would like to get the value of allPathDirs[0]. To make the code sample short, I deleted the things that make pathdirs change of value. Don’t worry about it, I went over the ...Show All

  • Visual Studio Team System Search and delete

    In Source Safe I made a wildcard search for files that I want do delete. I can't find any "search" function in the Source Control Explorer...does it exists Hi: Unfortunately we have not currently specified a date for our next version because we are still in the data collection and analysis face with our customers. After that is done we will make an announcement of what VNext will contain. thanks, mario ...Show All

  • Visual Studio Express Editions Webbrowser control versus I.E. Explorer

    Hello, I have an application running with a webbrowser control. In some webpages I get script errors . When I navigate through these same pages, outside the application , and using I.E.7, I have not these script errors. Is there somme differences between the Webbrowser of V.B. and the I.E. 7 browser Thanks for your quick reaction...! In this case I should better use I.E. instead of the Webbrowser of V.B. What is the best way to replace the Webbrowser control by I.E. 7 the one I am using with Windows XP ...Show All

  • Visual Studio Team System Error creating new Team Projects

    Hi, I've keep getting this error when I'm trying to create a new Team Project. It says "TF26173: Team Foundation could not connect to the application tier", but that's strange 'cause my TFS is a one-server installation. I've recently installed SP1. I can do check-in / check-out on existing projects, so the different tiers can talk to each other... /Casper 2007-02-22 14:23:02Z | Module: Internal | Team Foundation Server proxy retrieved | Completion time: 0,3906125 seconds 2007-02-22 14:23:02Z | Module: Wizard | Retrieved IAuthorizationService proxy | Completion time: 0,4843595 seconds 2007-02-22 14:23:03Z | Module: Wizard | TF30227: Project creation permissions retrieved | Completion time: 0,687478 seconds 2007- ...Show All

  • Visual FoxPro Arrange the "character string" numbers in order

    I use the character string for number input. What Syntax should I use to sort out the “character-string” numbers as below For example: To sort out according to the number 1 1 12A 3 3 4 4 5 443546 12A 5 443546 555AB 555AB Thank you. If your strings are like you showed then you could sort using val(). ie: select myString, val(myString) from myTable order by 2 PS: I didn't actually understand your logic of sort (human wise how do you sort it like that What ...Show All

  • Software Development for Windows Vista Custom/Preconfigured StateActivity

    DI am trying to create a custom StateActivity. This activity should have a default StateInitializationActivity and three predefined EventDrivenActivities. (The state represents a page in a workflow driven wizard-like dialogue. The EventActivites are BackButtonClicked, NextButtonClicked and CancelClicked. I realy do not want the user to have to assemble all nessesary activities for each page on its own. Especially if only few properties of the state are of interest for him (template to use, parameters to pass and next state depending on the button clicked). I use the CreateComponentsCore function of my own derived ActivityToolboxItem class to create the SubActivites of my custom StateActivty. So far anything is working just fine. But ...Show All

  • Visual Studio 2008 (Pre-release) Tier 2 GFX-card displayed as Tier 0

    I have a 9800pro(128mb) gfx-card wich, according to http://windowssdk.msdn.microsoft.com/en-us/library/ms742196.aspx , should be a Tier 2 card. However, if i run a program and check the RenderCapability .Tier value, it says Tier 0. The strange thing is that if i run perforator, it says 0 software renderers. According to the link above there should ONLY be software rendering if you got a tier 0-card (wich i realy don't have, but the Tier-property says so). I've had alot of performance issues, specially with mediaelement and bitmapeffects and i think it has something with the above problem to do. I have the latest drivers and DirectX-version. Also note that BitmapEffects is Software only. The gen ...Show All

  • Visual C++ Error message PSAPI.DLL

    I am getting a error pop up saying Get Process Image file name w. could not be located in the dynamic link library psapi.dll What should I do to fix this. April Does anyone know whether this DLL is required to be distributed when installing on Win2K/XP In other words, does psapi.dll is part of Windows 2K/XP installation Thanks, Irit. ...Show All

©2008 Software Development Network