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

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

ke4vtw

Member List

kashif afzaal
jmac82
Good-man
EBX
Kris_Jana
the_devhead
weejay
amocella
Kryten
LeeSan
fireballgfx
Mat Gardam
dhble
MKMahesh
François Paradis
Kalpesh Paradava
Jehanzeb Naeem Khan
Toni Petrina
Fota
TopLevelXquery
Only Title

ke4vtw's Q&A profile

  • SQL Server Format the Report Manager Parameter headings

    Hello, I was wondering if it would be possible to change the font type and color of the parameter titles in Report Manager Like can I change it in XML some sort of way... <QueryParameters> <QueryParameter Name="@ProductLang"> <Value>=Parameters!ProductLang.Value</Value> </QueryParameter> Ex: @StartDate is a parmeter, I'd like to change the text's font color and style to BLUE and Italics. It is not possible to configure this in Report Manager. You could write a custom ASP.NET page with your desired stylizations that will pass the paramete ...Show All

  • Visual Studio How to Create a Graphical Designer

    I am looking for documentation or sample code on how to build a standalone GUI designer. The basic functionality is A tool box A canvas that controls can be dropped onto and be (re)positioned and viewed at design time. Property Explorer to set the various properties of a control As this will eventually be used in a commercial product, please limit responses to tools/libraries/SDKs that are freely distributed. Any help is appreciated. Dave Not specifically, but there may be an assembly that could be used that is also re-distributable that will meet my needs. Just trying to find inform ...Show All

  • SQL Server Getting Field List to display in Reporting Services 2005

    In VS2005 Report Designer how do you get the field list to display. In VS2003, The field list for the data sets shows on the left side of the screen under the toolbox without having to do anything. In 2005 I don't know how to make it appear at all. Any help, thanks in advance. Ctrl-Alt+D or from the last item on the View menu, select Datasets. ------------------------------ This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • .NET Development InvalidCastException - Deserialization error

    Hi , I have a web method that returns an object. One of the properties of the object holds an array to another object (this was written in java and we are using the existing application as is). When I call the web method from .Net I get the following innerexception. Can anyone tell me how I can prevent this deserialization error Thanks Murali "System.InvalidOperationException: There is an error in XML document (25, 17). ---> System.InvalidCastException: Cannot assign object of type XincoCoreGroup to an object of type System.Object[]. The error occurred while reading node with id='id2'.\r\n at Microsoft.Xml.Serialization. ...Show All

  • Visual J# Rebuild Issue with Object Test Bench

    I am able to create an instance of a class in the Object Test Bench.  But everytime I attempt to invoke a method (even an empty void method) of the class, the tool asks me to rebuild it, after which it resets the class and does not execute the method.  It does this even though I have not modified the code in any way.  I try to execute the method right after I create the instance. This seems to happen if you have multiple projects in a solution.  Is there a workaround Help! :) Steven It was orginally a web site that I added projects (class assemblies) to.  Then I tried jus ...Show All

  • Visual Basic editing xml serialized datasets with ide

    In 2003 one could open up an xml file that was a saved serialized dataset and edit it. It was quite helpful to use the data tab to edit using the grid. In 2005, I open up the same file and get the familiar xml display. I then select the view/data grid menu and get another tab which only displays an empty Relationship table. What am I missing ...Show All

  • Windows Forms c# getting crazy with a simple insert into....

    Hi all :) Here is my problem: myCommand = new SqlCommand("insert into myTable values("@field1")", myConnection); myParam = new SqlParameter(); myParam.ParameterName = "@field1"; myParam.Value = myTextBox1.Text; myCommand.ExecuteNonQuery();   Whatever i write in myTextBox1.Text, in database i obtain ever a "null". If i modify my insert like:"insert into myTable values('" + myTextBox1.Text + "')"; it work...but we know that it isnt a safe way to solve proble, thinking at sql iniection for example... So...a gentleman that show me where i wrong Thx in advance. Have you added myParam to myCo ...Show All

  • Smart Device Development Could not establish secure channel for SSL/TLS

    Hello, simple problem: I can connect to an HTTPS webservice using .NET Windows Forms, but from my Pocket PC device using the .NET Compact Framework I get the error from the subject: "Could not establish secure channel for SSL/TLS". I suspect it has something to do with authentication to our proxy server... , but using the exact same code from my desktop works fine Here is the code snippet: // connect to the webservice private void btnConnect_Click(object sender, System.EventArgs e) {    try    {       // connect to the webservice -> create webservice object       ...Show All

  • .NET Development Sending large files with WSE

    Hi guys. I'm trying to create a web service that will expose a method to upload a big file from a client to the server. I want to send a really big file ( aroung 1Gb ). I succeeded with 64Mb, but not with files larger than this. Any ideea Thank you in advance. Mircea Hi. Thank you very much for the answers and for your time. It pointed me to some directions. Thanks. Regards, Mircea ...Show All

  • .NET Development Using Win Xp for Remote IIS and SQL

    I am trying to set up Visual Studio.net 2003 to use a different machine for SQL Server and IIS. I have 2 Win XP boxes, one with a full install of VS 2003.net with IIS6.0 and MSDE as the development SQL source. This works OK, but I am trying to set up the second box IIS to be where VS creates projects. Both machines are on the same workgroup (BDUC). I have installed the pieces of VS on the remote webserver that should allow remote debugging and creating of projects on the remote instance of IIS. However, I have yet to be able to use the path ( http://remoteiis/WebApplication1 ) and create the project without error. Right now I get 'Default ...Show All

  • Visual Basic Can it show that?

    Hello, can i find out, if the Internet Explorer can show a File from the file extension For example: My String Path="C:\Documents\my.exe" This file cannot be shown in Internet Explorer. Now i want, that the String Accept="No" The answer to the core quesion is "no". Here is a quote from a MS Security Bulletin : "No. Internet Explorer does not determine file types by the file name extensions that they use." IE will attempt to open a file and look for things it recognizes (such as MIME type data). I think the best you can do is to create your ow ...Show All

  • SQL Server How to set null value for a smalldatetime inside a Script Component task??

    how the hell you allocate a null value for a smalldatetime sql field Now, I'm putting a false date because of I'm stuck with this f.. and then I do an update: .Parameters( "@FecEnajenacion" ).Value = "1999-01-01" error: .Parameters( "@FecEnajenacion" ).Value = vbNull .Parameters( "@FecEnajenacion" ).Value = Null .Parameters( "@FecEnajenacion" ).Value = SqlDbType. Try Parameters("@FecEnajenacion").Value = Nothing -Jamie ...Show All

  • Windows Forms Collapsible Listview control

    Does anyone know any shared control which looks like the Outlook 11 style collapsible list view, where the items are grouped into some categories and you can expand and collapse the categories by clicking a +/- sign. You can take a look at the following screenshots: http://members.fortunecity.com/aripal2k/images/outlook.jpg http://members.fortunecity.com/aripal2k/images/outlook2.jpg to see what I am l ...Show All

  • Visual Basic checking properties of folders

    Hi all, I am trying to run some processes to tidy up our SAN storage.  A couple of the things I am struggling with are : 1)   Checking the security of the folder properties to check who the owner is 2)   Checking the security of the folder to check if "Inherit" is ticked 3)   Search a text file for specific text I already have a process to run SETACL to fix ownership and permissions, however this will run regardless.  What I want to do is first check the Ownership and permissions before I run the process. With regards to the 3rd point, the SETACL pipes the results to a text file, so I wa ...Show All

  • Software Development for Windows Vista Re-hosting the Workflow Designer tool

    Vihang, I have reviewed your article http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnlong/html/WFDsgnRehst.asp and was wondering if xoml only workflows with namespace references can be used with it BTW: Have you considered a web based version of this product I look forward to hearing from you soon. Sincerely, John Portnov The x:Class attribute tells the WF Designer about the DesignTime type systems defined in the WF and hence is absolutely necessary. Basically the WF type system looks for the DesignTime types defined in the type provided by the x:Class. Hope this helps! Thanks, Kusha ...Show All

©2008 Software Development Network