Software Development Network Logo
  • Architecture
  • Windows Vista
  • Game Technologies
  • .NET Development
  • Windows Forms
  • Visual C++
  • Windows Live
  • Visual FoxPro
  • Visual C#
  • Microsoft ISV
  • VS Team System
  • VS Express Editions
  • Smart Device
  • Visual Studio
  • Visual Basic

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

Peto_SVK

Member List

alpha T
Dave Berkowitz
Daniel Leom
richhudec
benong
Zeonz
Gary Harrison
karabo
Vic N.
sebepsiz
tjcbs
Vitor Ferreira
paolod
Burak1
Bill Gilman
toooooooona
dwebb
ademar
cmrlkr
Tom Trenka
Only Title

Peto_SVK's Q&A profile

  • Windows Forms .NET & WinForms for touchscreen applications

    Hi All. I'm just learning WinForms with C# and I am primarily concerned about creating applications to be deployed on a touchscreen. I have a few questions that I hope somone can shed some light on, point me in the right direction for additional information, or offer any suggestions.  My biggest concern is (semi)transparancy. Ideally I'd like to have semi-transp ...Show All

  • Visual Studio Convert Dialog to DropDown Menu Item

    I have code I am using in a Visual Studio addin that adds a CommandBarButton to the context menu of any code window of Visual Studio.  Currently, when selected, it invokes a dialog box with three radio buttons and the user selects their choice of further actions from there.  While this is workable, it has been suggested that a dropdown menu might be more appropriate and in keeping with the context menu theme.  How do I make this conversion   The choices being offered to the user are: Requirement, Task and Defect. I have attached the code I am using currently to let you know where I am at.   Thanks in advance for ...Show All

  • Visual C# aligning check

    Problem: a table with 2 columns: a columns of label and a column of textbox. Now in the second column i'm adding a checkbox. Problem: how to align it to textboxes The check has a little border that you can see when you check it. Isn't possible to enable it Thx You can set the CheckBox.CheckAlign property to align the check mark on the control. ...Show All

  • Visual C# calling scripts from C#

    how can i call javascript functions from my C# code <script language=javascript> function test() { // my code } C# --------  protected void Page_Load(object sender, EventArgs e)     {  Response.Write("<script language='javascript'>test();</script>");     } the above C# code is not working. but if i use alert() function, then its working Response.Write("<script language='javascript'>alert("hello");</script>"); pls help me to correct the problem. Try this: <script language=javascript> function test() { // your code } C# code ---- ...Show All

  • Windows Forms Updating Properties Window at design-time

    I have a control designer that is manipulating my control through the use of a verb on the property window. Everything works fine except for the fact that the property that I am modifying is not updated to its current value until the user clicks on the property in the Properties windows. Is there a way to refresh the properties window from wi ...Show All

  • Visual Studio Team System Connecting to a remote test controller

    Is it possible to specify a username and password when connecting to a remote test controller Otherwise it will always reject the client credentials if they are not exactly the same. Thanks. It is a workgroup scenario with local user accounts. I'll create an account on the client with identical credentials as the one on the remote controller until this gets sorted out, maybe it will work. ...Show All

  • .NET Development New to xml and how to read an xml doc advise needed

    Hi, Strange enough i have never played with xml very much.I have some questions and hopefully you guys will be able to answer them. 1)Need to read/Loop through an XML file whilst looping there might be both elements and attributes .Is there a generic way of looping through both the elements and attributes.I looked in the MSDN and I could not find an example. 2)Reading/Writing xml can be done in many ways. when shall i use the textReader when the doc class. ANy good links with examples for beginners in xml thanks a lot 1) Here you can find a sample code for looping through XML nodes: ...Show All

  • SQL Server Could not load file or assembly SQLXMLBULKLOADLib

    Greetings, I'm in the process of migrating several SQL Server 2000 DTS packages to Integration Services packages. One of the old 2000 DTS packages used the SQLXML Bulk Loader component. In order to use the new SQLXML 4 COM object in my Script Task (to initiate the Bulk Loader using .NET code) I've used the tlbimp.exe tool to create a .NET wrapper DLL. I've placed the DLL in the appropriate directory (C:\Program Files\Microsoft SQL Server\90\SDK\Assemblies), successfully added it to my project (with Intellisense working), but when I run the package it fails with the following error: Could not load file or assembly 'SQLXMLBULKLOADLib, Ve ...Show All

  • Windows Forms Esc in maskedtextbox

    Is there any solution for the Esc keystroke to change text back to its last state Just like regular Textbox. Wei, The idea is your solution....it is not easy and you will have to code your solution: Private Sub TextBox4_KeyPress ( ByVal sender As Object , ByVal e As System . Windows . Forms . KeyPressEventArgs ) Handles TextBox4 . KeyPress Dim MyString As String = TextBox4 . Text If Asc ( e . KeyChar ) = Keys . Escape Then TextBox4 . Text = MyString End If End Sub   Don't know what you are trying to accomplish but that should give you an idea of ho ...Show All

  • SQL Server SQL Reporting Services Subscription Does Not Work

    We have two SQL Reporting Services Servers (Test and Production).  In the Test environment I have set up some subscriptions to email reports to me, it works great. I have tried to set up reports in the Production environment, but the Report Manager never even attempts to email a report to me.  For example, this morning at 8:30 I set up a subscription to email a report to me at 8:45.  It is now 9:15.  I have not received the report.  My Subscriptions shows the subscription, the Trigger is TimedSubscription, Last Run is blank, Status is New Subscription. Any one seen this behavior before I found that when I edite ...Show All

  • .NET Development update SqlExpress dataTables fails

    I seem not to be able to update any table in my database. Not through the dataTableAdapter 's Update command, nor through a sqlCommand Object (command .ExecuteNonQuery()), although recordsAffected returns > 0. Am I missing something Hi, Hmm. Weird. Is there an error happening could you manually execute an INSERT statement in one of your tables in the sqlexpress using a SqlCommand Lets just see if the problem lies in SqlServer or in the code... cheers, Paul June A. Domag ...Show All

  • Visual FoxPro Docking PrintPreview toolbar and Making PreviewContainer Modal Window

    Hi, I am facing problems in the reportlistener class, my requirement is 1) i have to preview a report with the preview toolbar docked and should be moved from the position. 2) The PreviewContainer should be Modal and no other window should be accessed. 3) no resizing of the container and should occupy the application fully. I used the ReportListener Extension Handler Classes and Set the PROCEDURE Show ( iStyle ) THIS .PreviewForm. Movable = .F. THIS .PreviewForm. windowstate = 2 THIS .PreviewForm. windowtype = 1 THIS .PreviewForm. Toolbar . AddObject ("cmdProof","MyButton") ...Show All

  • Windows Forms Winform question

    Can a VB.NET winform be converted to a C# winform and verse versa Thanks. ...Show All

  • Visual Studio Express Editions How do I host my VWD website? Do I have to use Micorsoft's server software like SQL Server 2005?

    How do I host my VWD website   Do I have to use Micorsoft's server software like SQL Server 2005 Are there any other options available to me Michael SQL Server 2005 is a database.  It cannot host a web site.  IIS is Microsofts web server software, and it comes with Windows XP Pro.  For any other web server to work, it would need to be able to be configured to run aspx pages through the .NET runtime for compilation via the ISAPI filter that does this for IIS. If you have XP Pro, I think you need to put the CD back in and manually install IIS, it's not an option in the initial install.  And you need to install t ...Show All

  • Visual C# Loads of errors and warnings trying to load a beta one application into beta 2

    HI any ideas how to go about fixing this would be greatfully received. I've upgraded beta 1 to beta 2 (following all the uninstall instructions).  Simple apps load and run just fine but a more complex app I've written gives 9 errors and 16 warnings - the warnings are mainly now obsolete properties which should be easy to fix but the errors... Most seem to relate to designer generated code and I get an error when trying to view my form1 design screen. Here's a typical error The type 'System.Windows.Forms.DataGridView' has no field named 'ColumnHeadersHeightResizable But when I click on the edit link it takes me to this line this .sendc ...Show All

©2008 Software Development Network