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

Software Development Network >> Ed de los Reyes's Q&A profile

Ed de los Reyes

Member List

Andrea N.
SDixon
Ori'
Pradeep Gupta
mleary
Arslan.Ahmed
connect2sandeep
Ludo-R
mae ann
Anarchy
Billr17
Jinz
Muhsin Zahid Uğur
Pilot_cir
Rainadaman
Tareq11192
GazCoder
SuperSaiyanZero
Edijs
DOSrelic
Only Title

Ed de los Reyes's Q&A profile

  • .NET Development CasPol custom xml schema?

    Does a schema exist for the custom xml import for caspol I am trying to determine the format of the xml and cannot find a schema and minimal documentation on it. Am I missing something Thanks! ...Show All

  • .NET Development Encoding problem with StreamWriter

    Hello, When I write some data to the text file and open it with NotePad, the characters are displayed correctly but when I open the file with edit.com in DOS mode, some non-English characters are displayed incorrectly...The device which will read the file runs in DOS mode, so I have to write the file according to this.I tried several encodings like UTF-8,UTF-32 and Unicode but when I open with edit.com it again shows incorrectly.Beside these, i can write the non-English characters correctly in edit.com,namely there's no problem with the editor. May someone help please.. Hi, Have you tried to put the encoding on your console when your application started Console.OutputEncoding property Let me know if it works Cheers ...Show All

  • Windows Live Developer Forums I cant log onto msn...troubleshoot thingy comes up

    Whenever i try to sign into windows live messenger i always get the same problem, i sign in and the little men move around as usual but then... this is what it says "Signing into Windows Live Messenger failed because the service is temporarily unavailable. Please try again later. To let us try and Troubleshoot the problem, press the Troubleshoot button. Error code:80004005" I have been getting this message for nearly a week now and it is annoyin me very much....I have had the email address for 4 years now and this has never happened repeatedly. I made a new email address and that worked for nearly 2 days then it broke in the same way that the other one did. Same message. I press the troubleshoot button then repair then it still doesnt wor ...Show All

  • Visual FoxPro Error loading file

    Hello, I can't open same forms and report, I getting error "Error loading file - record number n. "object" <or one of its members>. : Memo file c:\mypath...\my database.dct is missing or is infalid Is there a way to open these file I will deeply appreciate advices or ideas.. Thanks. Aleniko, It isn't help me, I can build, run exe and see the forms and reports, but I can't modify them. I have a project with several database thanks for you help ...Show All

  • Windows Forms Did Bill forget document.selection for WebBrowser control?

    I'm wondering why Bill didn't implement document.selection for WebBrowser control in C# as it's the case for JavaScripts ( http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_selection.asp ). How can I get the selected text of a WebBrowser now :( I have the same problem, as I want to implement "ctrl+C" to copy the selected text. I didn't find a solution yet. Currently I use the ActiveElement property as workaround: void m_WebBrowser_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { if (e.KeyCode == Keys.C && Control.ModifierKeys == Keys.Control) { Clipboard.SetText(m_WebBrowser.Document.ActiveElement.InnerText); } } Best Re ...Show All

  • Architecture Design processes for commutability?? MCSD.NET Book

    Hi Forum I'm currently reading the book "Analyzing Requirements and Defining Microsoft.Net Solution Architectures" for the 70-300 exam. I have come across a section where best practices for designing for scalablity is listed. They explain Commutability and come with an example. The problem is that I do not see the benifit of the solution they suggest. The section states the following: Design processes for commutability Two or more operations are called commutative if they can execute in any order and still obtain the same result. Typically, operations that do not involve transactions are commutative. For example, a busy e-commerce site that continuously updates the inventory of its products might experience content ...Show All

  • SQL Server Passing array to stored procedure

    Can some one tell me the way to pass Table or Array or list of values to stored procedure [Note: I already know some ways which are not useful in my case: - By passing a list of values separting each with a delimeter like comma(,) - Using XML ] Any other way Please, its urgent Thanks in advance I think the line StrVal varchar(1000) can be changed to StrVal varchar(10) The size here depend on the size of your list item in the parameter. Size of 10 is fine for a list of integers. ...Show All

  • SQL Server Change Color of Textbox Depending on Value

    I have the following: =IIF( Sum(Fields!Percentile.Value, "RegionalSnaps") < 10.0, "Yellow", "Black") Doesnt appear to be changing color to the numbers, actually its just putting the work black in all the cells in the report, the nubmer are % numbers, like 10.53% of 3.45%, and if its great than 10.00 % I want the textbox to show up yellow, if its >10% i want it to show up normal. Any help would be greatly appreciated. I tried that and than this is what I get: h:\sqlreports\snaps\Report1.rdl The background color expression for the textbox ‘textbox2’ references a field outside an aggregate function. Value expressions in matrix cells should be aggregates, to allow for subtotaling. h:\sqlrep ...Show All

  • Visual Basic Downgrade Confusion

    The website (http://msdn.microsoft.com/vbasic/previous/downgrade.aspx) used to say "If you require a previous version of Visual Basic, you may purchase Visual Basic .NET and then downgrade to a prior version." We did this, and I still have the printout from earlier this year.   Now the same website says, "If you require a previous version of Visual Basic, you may purchase Visual Studio 2005 Professional and then downgrade to a prior version."   Are we still legal to use the Visual Basic .NET to downgrade, or do we now have to purchase Visual Studio 2005 I would suggest directing this question to the support personnel rather than asking views on from the general public. The reason ...Show All

  • Visual Studio 2008 (Pre-release) Custom command

    I have been trying to implement and use a custom command like this: namespace myns {     class Commands     {         static Commands()         {             InputGestureCollection inputs;             inputs = new InputGestureCollection();             inputs.Add(new KeyGesture(Key.S, ModifierKeys.Alt | ModifierKeys.Control));             Snap = new RoutedCommand("Snap", typeof(Window), inputs);     &nbs ...Show All

  • SQL Server Fixed header

    Hello! I have a report that the users reach from an url. In the url I have rc:parameters = false. That part works fine. But when I use rc:parameters = false, the property fixed header doesn't seem to work. If I run the report from the report server it works fine, but not from the url. Any ideas /C Fixed headers don't work if the url access displays more than one page at the same time. The best way to ensure that fixed headers work is to run with rc:toolbar=true ...Show All

  • Visual Studio Express Editions Some basic C# questions

    In the process of learning C#, I have a small project that I am using as a learning excersise. So far, the project uses 2 forms: A login form A project form The Login form gets launched via the Main entry point with the Application function that VS created. On my login form, after the user has clicked submit, the form validates the user against a SQL database and once it has verified this, it instantiates a user credentials object that contains user name, authority (from the DB) and some user preference data (also taken from the DB). Following this it loads up the Project form like this: ProjectManager formProjects = new ProjectManager ( ); formProjects.Show(); formProjects.BringToFront(); this .Hide(); th ...Show All

  • Windows Forms How to Package and Send New Application to Friends

    I have recently completed a VB application and want to send it out to folks to test for me. When I publish the app out of Visual Studio the files for the application are co-located in a "Publish" folder but the database needed for the applicationn is not included. Are there installer packages out there that I can download for free or buy that permit me to create a distributable package for my application Thanks! Doug Your idea was correct. The database is now included in the build package. Thanks very much for your help! Dioug ...Show All

  • Visual Studio Express Editions syntax code

    to those of you who are familiar with the coding, could you write a simple code example so we can understand,give us simple syntax examples please of; deleete command accept changes command that way those  of us who are beginners can read the syntax and get a better view of how it works. indeed but it has been explained on what things are doing at the time and how to fix it. It's hard to just explain where the problem is if you have any errors and not explaining in depth on what code you have, where the errors are coming from etc... What exactly, in this case, do you need help with I understand for this thread you are wanting to know how to use a Delete command correct I have supplied cod ...Show All

  • SQL Server Nested Interactive sorting

    Hi, Is it possible to have nested interactive sorting in RS2005 eg. My report displays COUNTRY | STATE | CITY | SALES I enable interactive sorting on COUNTRY and CITY. First the I sort on COUNTRY and then if a user clicks on CITY, then it should be sort combination of COUNTRY and CITY. Is this possible AFAIK, you will have to group that to make a nested sorting. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network