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

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

CruzPedro

Member List

rhd75
Jamie Thomson
rhd75
Mehta Vikas
SivaS
doank
Samaritan
Prateek_cds
Oaf300092
Kyle J.
Masoud Farahani
BBesser
Andy Wilson
cgraus
Joel Poiron
ThePatrickP
Nat999
eldiener
OasisGames
fchasse73
Only Title

CruzPedro's Q&A profile

  • Visual Studio Express Editions How to create Discussions forum in c#

    How to create forum using  c# I've actually created many forums from scratch using ASP.NET and SQL Server. It's a big challange and no one will sit and talk you through it :-) you have to understand how to use ASP.NET and SQL Server - these are the foundations really. It's a big step, there are no "do this, do this, do this" type of steps im afraid. ...Show All

  • .NET Development XMLTextWriter Encode Attribute

    When I use the xmltextwriter in .net with the encode (utf-8) parameter in the constructor, the result is an xml file with encode attribute in small letters (utf-8 in place of UTF-8). Some validations systems expect "UFT-8" in upper case. How can I force the encoding attribute in upper case. Hello Marc, I am afraid there is no easy way to enforce writing the encoding name in upper case. (Of course, you may implement trivial post-processing.) The XML specification says the 'encoding' pseudo-attribute is case-insensitive, so using lower case is considered valid. The XmlTextWriter class calls System.Text. Encoding .GetEncoding( "UTF-8" ).WebName , which always returns the lower-cased nam ...Show All

  • Visual Studio Express Editions Drawing in PictureBox

    Hi All, how can I draw 2 dots or rather points with the mouse inside a picturebox and in turn link them up with a line. What Systems should I import into the code area Pls advice. Many Thanks You will need to import the system.Drawing namespace and use the pictureboxes mouse click events to draw the points...you can then use Graphics.DrawEllipse to draw your points...and then use Graphics.DrawLine to connect the two points ...Show All

  • Visual C# Hook and unhook and event using delegate

    Q1. Is it possible to check if an event is being hooked for eg. cbxXXX.selectedvaluechanged += delegate { .....;} Any way to check the above event is being hooked Q2. How is it possible to unhook the above event once hooked i tried -= but it doesnt work correctly. Thanks Regards Alu well in that case this means i have to be careful when the application load initially and make sure it wont move into the events ...right :) maybe a focused check may help Thanks!. Regards Alu ...Show All

  • Visual Studio Tools for Office Excel Object Releasing from memory

    Hi, i've developed a web application to retrieve the data from Sqlserver 2000 and fill it in the Dataset then, using the dataset i'l write the data into the Excel templatefiles by opening the Excel and copying the excel sheet writing the data into it. After writing the data i'l save the template file as a new file with different name. then i'm closing the Excel books, sheets and quits the excel application. My problem is after closing and quiting the Excel application also the Excel.exe is still running idle, so i can't open the excel file, after killing the Excel.exe only i'm able to open the saved Excel File. In my application multiple user can access the same application so multiple Excel.exe will be runni ...Show All

  • Visual Studio 2008 (Pre-release) Error while requesting "Product Keys" on MSDN Subscriber page.

    Does anyone know why this error is being displayed. please post your question here http://www.microsoft.com/communities/newsgroups/default.mspx ...Show All

  • SQL Server Sql Server 2005 Notification Services - Delivery Status Code 4

      Environment: SQL 2005 version 9.0.1399 32 bit on Windows 2003 2 different notification instances running Problem: One of my notification instances is receiving a delivery status code 4. The other instance is delivering e-mails with no problems. How do i figure out what is the real error code that causing the delivery status code 4. Gene   I had the same error when I wrote wrongly the subscriber parameters. Find the subscriber that the notification (with delivery status 4) was for. Check that the configuration of deliverychannel and device is written well for that user. Or you can also try to see it with a SP http://msdn2.microsoft.com ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Document of Help

    The XNA Game Studio will run with C# code. Now, will be a document of help and tutorial for learn to use XNA Or Will be a tutorial video for learn to use XNA Another question is, What's others programs are for make games and what code the programs use Maybe, Will be tutorial videos  and a big Document of Help by the release of the XNA Professional Studio or the real XNA Game Express(I mean no beta version). This video can be made by the people of http://www.LearnVisualStudio.com/ or www.Learn-XNA.com . Also the videos and the document of help must contains helps and definitions about XNA Framework and others thing, this will happen like visual studio, when they have released the real version of ...Show All

  • Visual Basic ComboBox: VB Code to select first one.

    Hi I have the following VB code, when someone selects the worksheet name from the combo box in the summary page it takes them to the worksheet. However, the problem is that if they select, for example, worksheet "B" it takes them to the worksheet fine but when they are back in the summary worksheet the "B" is still selected in the combo box and you can not select "B" anymore. You have to select other worksheet name before you can select "B" again. Is there any way to instruct the combo box to always select the first item in the list Thanks in advance. Private Sub AFISGBox_Change() Dim strSheet As String If AFISGBox.ListIndex > -1 Then strSheet = AFISGBox Sheets(strSheet).Select End If End ...Show All

  • Visual Studio Team System Team Foundation Server Workgroup vs Team Foundation Server MSDN

    I installed the workgroup addition with 5 licenses. I was able to successfully setup 5 windows users within Team System to connect toTFS. My company purchased the full licensed MSDN TFS editions (Architect, Developer, Tester). We need more than 5 developers to access TFS. My question is: do I need to uninstall the workgroup edition and install the full version Or can I upgrade The licensing/installation for this product I find is a bit confusing... Any help would greatly be appreciated. Thanks, - gshaf I believe you just run the TFS setup from Add/Remove programs and you can enter a new license key and you're off to the races. Same as upgrading from Trial to licensed. Rob Caron touches o ...Show All

  • .NET Development convert XML doc to Word

    The C# VS build option that creates an XML file from keywords embedded in the source code seems like it ought to be a reasonable way to create readable documentation for code. I did discover that if I open the .xml file with Word and view it under "reading layout" it is sort of readable. Does anyone have any suggestions as to how to format the code comments with XML keywords so that it produces a somewhat readable XML file when opened with Word TIA Bill You may compose XSLT style sheet to format XML to any form you like including to WordML. I never have seen XSLT that does this already. If you find one let us know. ...Show All

  • SQL Server Is there a way to know if execution of activated stored proc is already finished?

    Hi everyone! Good day! I'm not really sure if my question should fall on Service Broker or T-SQL, but I hope someone helps me with this... After activating the stored procedure assigned to the queue, is there any way for me to find out if the stored procedure is already finished executing I have successfully sent messages to my queue but I have no way to know if all the processing is already done. Thanks so much! The Profiler will trace the Broker/Broker:Activation event when the procedure is started and when it ends. Also sys.dm_broker_activated_tasks contains one record for each running activated procedure. HTH, ~ Remus ...Show All

  • SQL Server Active Directory Sql Servers

    Hi everyone, how to retrieve programatically the list of the AD's Sql Servers You've been looking at SMO classes but it seems that it depends of your own workstation. Thanks in advance Hi, what about using the SmoApplication .EnumAvailableSqlServers() HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Software Development for Windows Vista Major Compile Error

    I am running 3.0 with 2005 Team Suite and I have installed the extensions for WF. I have downloaded the samples but when I try to compile them I get the following error. I need help figuring this out. The "CompileWorkflowTask" task failed unexpectedly. System.NotSupportedException: The given path's format is not supported. at System.Security.Util.StringExpressionSet.CanonicalizePath(String path, Boolean needFullPath) at System.Security.Util.StringExpressionSet.CreateListFromExpressions(String[] str, Boolean needFullPath) at System.Security.Permissions.FileIOPermission.AddPathList(FileIOPermissionAccess access, AccessControlActions control, String[] pathListOrig, Boolean checkForDuplicates, Boolean needFullPath, Boolean copy ...Show All

  • .NET Development Writing Peer to peer applications

    Am facing a problem in developing peer to peer appln. first of all a machine has two ips(one private visible in intranet like 192.168.0.121 and second public ip visible in internet 10.2.2.3).now i need to connect to a peer located at remote place with the same criteria(two ips).The problem is i cnt go through the public ip to internal ip.On reading some articles on net i came to know the technique used to connect through public ip to private ip is termed as "HOLE PUNCHING"/"PORT FORWARDING".can some one help me on this issue r is there any alternative other than this.I have to do it programmatically not manually. Bharath If both have global, public IPs why not connect direc ...Show All

©2008 Software Development Network