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

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

sarika

Member List

Karthikeyan
xird
Nick Winters
Dario Galvani
AksaiGora
FLDaveM
DanMeyers
Walker Boh
Heng-yi Liu
prrao
Alex_Petrovic
mattyw87
sarath_mankara
.net sukbir
pmarreddy
Unknown Name
Scott_t
leleu
baron5038
Robin E Davies
Only Title

sarika's Q&A profile

  • Visual Basic usercontrol and parents

    if i create a user control "A" that has 3 text boxes in it and add several instances of "A" to a panel...when i mouseover one of the text boxes how can i tell which instance of A it belongs to Thanks! Dan exually (i think) it would give you the panel where the usercontrol is hosted in But whatever works. right Remco ...Show All

  • Smart Device Development not a valid Windows CE SETUP file

    Hello, I try to debug an application - Visual Studio 2005, C#, .NET2.0 - on a DataLogic Jet running WinCE.NET Version 4.20 (not Second Edition). I installed .NET CF2.0 SP1. Debugging starts with deploying System_SR_enu_WM.CAB. This fails with ".. not a valid Windows CE Setup file". I tried to install in manually, which failed with same message. Debugging works but I there occurs an error in calling a web service. error.message does not contain information about the error. How can I install System_SR_enu_WM.CAB on this device Thanks for help. Jorg Can you please post the emglish version of the message It appears that your app is unable to connect and getting some WebException. Che ...Show All

  • SQL Server Problem with Resporting services on sharepoint: Server Error in '/' Application.

    Hi, I have a problem with Resporting services on sharepoint. My local host machine reporting services is ok though. The problem is when I click on "properties" button on sharepoint reporting services, and when I click on Parameters, Data Sources, Execution, and other bottons on the left hand side, I get the following error: Server Error in '/' Application. Look in the screencast section, not the announcements. HTH, Jens Suessmeyer. --- http://www.sqlserver0205.de --- ...Show All

  • SQL Server Leading Zero

    Hi all, Anyone know how to transfer data from 1 or 2 characters to 3 characters. For example we have mpc_code in source as 1, 2, 3 then target need to be 001, 002 and 003. Then if 12, 13 then change to 012, 013. Put zero as leading space. Thanks. Grace It is now working and I just retype RIGHT("000" + mpc_cd,3) Yesterday I copy then change mpc_code to mpc_cd and still show red color. Thank you so much. Grace ...Show All

  • Visual Studio Port placement manipulation with myPortShape.AbsoluteBounds

    Hello - I am trying to write an application that will generate a .diagram file if one does not exist using some arbitrary set of rules. I can get all of my GeometryShape derived classes where I want them, but I am having trouble placing my PortShape derived classes on my GeometryShapes. Setting the AbsoluteBounds and Bounds properties on my PortShape do not behave as I expect. I would expect setting the AbsoluteBounds property on a port would place it at the location specified, relative to the Diagram. [i.e. a 1 by 1 PortShape at a location of (4.5, 5.5) on a GeometryShape located at (4, 5) would appear with half of the top of the port appearing off the top of the GeometryShape]. It appears to be placing it relative to the bott ...Show All

  • SQL Server Help!! "The report server has encountered a configuration error........"

    Hi There, I have installed Sql Server 2005 on my machine. I've managed to created report, but when i try to deploy e same, I'm getting e following error...am i missing something here The report server has encountered a configuration error. See the report server log files for more information. (rsServerConfigurationError) Access to the path 'C:\Program Files\Microsoft SQL Server\MSSQL.4\Reporting Services\ReportServer\RSReportServer.config' is denied. I was experiencing the same problem on IIS 5.0 never had it in IIS 6.0 Solution: Asign permissions to ASPNET in rsreporserver.config file and problem solved !!! Hope this help ...Show All

  • Smart Device Development Selecting items in Listview

    I am trying to select items in a listview. The Listview is enabled but when I add "msgbox "hello" into the "click" event of the listview nothing happens The listview is enabled, just can't understand it I also need to get the selected "text" from the item that is "clicked", how is this done Thanks is advance. ListView.Items[ListViewName.SelectedIndexes[0]].SubItems[IndexOfSubItemInListViewHoldingRequiredText].Text; For example, this is what I have... lstQuestionTree.Items[lstQuestionTree.SelectedIndices[0]].SubItems[1].Text; Hope this helps. ...Show All

  • Windows Forms creating label

    System.Windows.Forms public void CreateMyLabel() { // Create a new label and create a bitmap. Label label1 = new Label(); Image image1 = Image.FromFile("c:\\MyImage.bmp"); // Set the size of the label to accommodate the bitmap size. label1.Size = new Size(image1.Width, image1.Height); // Initialize the label control's Image property. label1.Image = image1; // ...Code to add the control to the form... } in windows forms is it possible to create new label with its properties ;; i want to change my web form label image is it possible without using css like this but web form Label control did not have Image Property but any way you can create Label and set its properties in code in web forms like ...Show All

  • Visual Basic Create a class that disables specific controls

    Hi guys, I am considering creating a class that disables certain controls on my form when it loads. Opposed to setting each 'enabled' property to false, i think a class that executes when the form does, is the most efficient. Am i right, is this efficient If so, how exactly would i go about coding it Many thanks in anticipation for your help. Kyle Well it depends upon what your overall objective is...If it is to just disable controls on load of a form then you can do that in the designer or you can do it in the load event of the form. kitsch wrote: Opposed to setting each 'enabled' property to false What method would your class use to disable the controls ...Show All

  • Visual Studio Express Editions Increase in number of handles while using CDataBase- MFC Class

    Hi, I am developing a dashboard kind of engineering application the application takes data from the database and present it to the user ,during which the application also processes ceratain the raw data to incorporate some business logics before presenting it to the user this display is a auto refreshing display. so i have a timer,for every five minutes ths application will open a database connestion and get data from the DB , When it is done with fetching the data from the DB the application closes the connection on every refresh the the above process of opening and closing database connection is repeated I am using MFC Class namely CDatabase to open and close the database connection on every open operation of DB connect ...Show All

  • Visual Studio Express Editions Still stuck!

    I'm still trying to figure out how to get selectedindex of combobox1 to retrieve only certain information from SQL. I still think it's easier for me to just do Select Column From Table Where (certain row item) but for some reason this doesn't work. WHY Am I missing something I understand the statement, but I don't know how to get it to work. You know how the program automatically detects the language and highlights it in blue, well it doesn't do that for "From" and "Where". WHY If someone can answer that, I'd appreciate it. So anyways, I took a different route and now I get the message "Argument Exception was Unhandled: Cannot bind to the property 'Food Components' on the target control. Parameter na ...Show All

  • Visual Studio 2008 (Pre-release) Sign a Full Trusted XBAP?

    Can I sign a fully trusted XBAP with a Verisign key so it will work in anyone's browser without security errors Short answer: no. Slightly longer answer: The only way to elevate permissions within an Internet or Intranet deployed XBAP is to use the ClickOnce Trusted Publisher model. This means your end user must agree to installing the cert into their Trusted Publisher cert store. There is no workaround to this. By using a cert from a trusted certification authority, you are merely skipping the step of adding the cert to the Trusted Root CA store in addition to Trusted Publisher store. ...Show All

  • Visual C++ Forms and Memory usage

    hi, i setup a simple Form with nothing on it and compiled it then ran the application, it was in Visual C++ Windows Form Application but when running the application it was using over 15.000k of memory. is this normal for an application of this type just seems a lot of memory for one item that does nothing. thanks Hello Deen, Please follow your previous thread at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=596224&SiteID=1 . Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server Replication of triggers

    Hello ! I have set up some transactional replication on one of my database but I can't see where I can specify that we should replicate the triggers. What I have seen is that the triggers are automatically replicated when the table is replicated except id they are marked "Not for replication" But it does not seem to work for me. Do you have any idea Thanks, Hi Jarod, The snapshot agent does bypass scripting of replication generated triggers, encrypted triggers, and triggers that are marked as system object but I doubt all of your triggers fall into one of these categories (the snapshot agent should print out messages for the last two). That said, it certainly doesn't hurt to check whether that was the case. You ...Show All

  • SQL Server Table Header

    Is there a way to angle column headers in reporting services. The WritingMode property is not sufficient for what i need. i need the text to go from bottom to top but ata 45 degee angle. Thanks rduclos ...Show All

©2008 Software Development Network