Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

ravi vellanky

@ravi vellanky
About
Posts
29
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem with silverlight data grid
    R ravi vellanky

    I'm using a silverlight2 datagrid in my applcation. While loading it shows very well and after the selection of one row in the grid to change the values and then click on the update button it it works very well and showing the grid very well. But after the updation while showing the grid if we move the scroll bar up and down i'm missing the row. It shows an empty row there. Need help to show the row while scrolling grid view scroll bar. -ravi

    WPF help css announcement

  • Progress bar on loading a page
    R ravi vellanky

    Can you give me any sample application link on this progress bar?

    WPF question

  • Progress bar on loading a page
    R ravi vellanky

    Can you tell me how can i achieve this?

    WPF question

  • Progress bar on loading a page
    R ravi vellanky

    Hi, In my silverlight application I've many pages(1,2,3...), after logged in i'm showing default page. After that if i click on any page default loading (silverlight progress like rotating a default logo with continual increment of time) is going on. Next if i click on the any other page of same page that silverlight progress is not showing. My silverlight pages have huge data, so for loading the data it takes time to show any page without showing any progress. I need to show any progress bar on loading the data.... is it possible to show the progress bar in all pages while loading? Regards, Ravi Vellanki.

    WPF question

  • Delete button with Data grid
    R ravi vellanky

    Hi, I've a datagrid contains a list of items (Check boxes, link buttons and normal text) and a delete button above the datagrid. After check the check boxes (one or more), i have to delete those rows from the datagrid by clicking the delete button which is placed above the datagrid.. How to achieve this .......... Pls help me out....... Regards, Ravi Vellanki

    WPF css help tutorial

  • Problem with Silverlight application using WCF Service to get the data from database without LINQ
    R ravi vellanky

    Thanks for the reply Ebert, I returned list only from the wcf service. Is there any alternative way to get data from the database without WCF service? Ravi Vellanki, AP,India.

    WPF csharp wcf help database wpf

  • Problem with Silverlight application using WCF Service to get the data from database without LINQ
    R ravi vellanky

    Thanks Mark for the reply. Problem is while adding service reference to the silverlight application in ServiceReference.ClientConfig file it shows the end points properly. That means no problem with WCF Service. In the WCFTESTCLIENT also I tested, It works very well. But when I bind the service method in the pageloading event to a silverlight combobox control, It is showing the following error..... Unhandled Error in Silverlight 2 Application An exception occurred during the operation, making the result invalid. Check InnerException for exception details. at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary() at MNetMetricSystem.Metrics.GetAllDepartmentsCompletedEventArgs.get_Result() at MNetMetricSystem.OrganizationBaseLine.Met_GetAllDepartmentsCompleted(Object sender, GetAllDepartmentsCompletedEventArgs e) at MNetMetricSystem.Metrics.MNetMetricsServiceClient.OnGetAllDepartmentsCompleted(Object state)

    WPF csharp wcf help database wpf

  • Problem with Silverlight application using WCF Service to get the data from database without LINQ
    R ravi vellanky

    Hi I'm using a wcf service to get the data from the database and bind it silverlight control. And below is the code sample that i've written. Problem here is WCF service that i've created is on basichttpbinding. Silverlight supports only this binding I think. So I changed the end point in my WCF service from default (wsHTTPbining ) to basic. when i add the service reference to the silverlight application the following is the silverlight clientconfig I'm getting with the error that i got when i build the application. <configuration> <system.serviceModel> <bindings> <basicHttpBinding> <binding name="BasicHttpBinding_ITestWCF" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"> <security mode="None" /> </binding> </basicHttpBinding> </bindings> <client> <endpoint address="http://localhost:8731/TestWCFLib/basic" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ITestWCF" contract="testService.ITestWCF" name="BasicHttpBinding_ITestWCF" /> </client> </system.serviceModel> </configuration> Unhandled Error in Silverlight 2 Application An exception occurred during the operation, making the result invalid. Check InnerException for exception details. at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary() at MNetMetricSystem.testService.GetBugCountCompletedEventArgs.get_Result() at MNetMetricSystem.OrganizationBaseLine.obj_GetBugCountCompleted(Object sender, GetBugCountCompletedEventArgs e) at MNetMetricSystem.testService.TestWCFClient.OnGetBugCountCompleted(Object state) public partial class OrganizationBaseLine : UserControl 2 { 3 ServiceReference1.MNetMetricsServiceClient Metrics = new MNetMetricSystem.ServiceReference1.MNetMetricsServiceClient(); 4 public OrganizationBaseLine() 5 { 6 InitializeComponent(); 7 Loaded += new RoutedEventHandler(OrganizationBaseLine_Loaded); 8 } 9 10 void OrganizationBaseLine_Loaded(object sender, RoutedEventArgs e) 11 { 12 13 Metrics.GetAllDepartmentsCompleted += new EventHandler(Metrics_GetAllDepartmentsCompleted); 14 Metrics.GetAllDepartmen

    WPF csharp wcf help database wpf

  • How to display a chart in PDF using C#?
    R ravi vellanky

    hi, I've some table of content or data. I've to show the content as table and charts in PDF using C#. Is there any possibility to display charts in PDF using some third party Dlls. Pls let me know the solution. Thanks in advance.......... -Ravi Vellanki

    C# csharp tutorial question

  • Data Scrapping in Asp.net
    R ravi vellanky

    hi, how to get the data of particular website (eg:www.orkut.com) by giving credentials such as Login username and password of the above site and get all those data to our website. I mean how to get the other sites data to our site. I wanted to download the content of the other website(eg:orkut.com) to our website by giving credentials of other website from our website... Can any one help me out in this............ Regards, Ravi

    Web Development csharp asp-net com help tutorial

  • how to call a webmethod using windows scheduler in windows application?
    R ravi vellanky

    Hi, I programatically have to create a windows application in which one windows schedular is there which is for calling a webmethod in a webservice... how to create such program to call webmethod using windows schedular in C#.net. Pls help me in this... Advanced Thanks, Ravi Vellanki

    Windows Forms csharp help tutorial question

  • how to call a webmethod in a Webservice using windows scheduler in windows application?
    R ravi vellanky

    Hi, I programatically have to create a windows application in which one windows schedular is there which is for calling a webmethod in a webservice... how to create such program to call webmethod using windows schedular in C#.net. Pls help me in this... Advanced Thanks, Ravi Vellanki

    C# csharp help tutorial question

  • Mobile web Application in Asp.net
    R ravi vellanky

    I created a mobile web page which have two labels and two textboxes and a command button. I run this small application and got the result in browser as .aspx file. My question is how will it translate to WML? I've an Emulator accepts only either HTML or WML. but my resultant URL is in .aspx. How can i convert my custom page(ex:abc.aspx) into html or WML page to run in emulator? Can any one help me in this concept. Thanks & Regards, Ravi

    Web Development

  • Mobile web Application in Asp.net
    R ravi vellanky

    I created a mobile web page which have two labels and two textboxes and a command button. I run this small application and got the result in browser as .aspx file. My question is how will it translate to WML? I've an Emulator accepts only either HTML or WML. but my resultant URL is in .aspx. How can i convert my custom page(ex:abc.aspx) into html or WML page to run in emulator? Can any one help me in this concept. Thanks & Regards, Ravi

    Mobile

  • I'm novice to Mobile Web Application ,Help me out here......
    R ravi vellanky

    I created a mobile web page which have two labels and two textboxes and a command button. I run this small application and got the result in browser as .aspx file. My question is how will it translate to WML? I've an Emulator accepts only either HTML or WML. but my resultant URL is in .aspx. How can i convert my custom page(ex:abc.aspx) into html or WML page to run in emulator? Can any one help me in this concept. Thanks & Regards, Ravi

    Mobile

  • Sequential work flow with Database samples? I'm working with Sequential work flow activity.....
    R ravi vellanky

    I'm not able get the instance state based on the grid. Unload/TryUnload are not working properly. can you give a small sample on this?

    WCF and WF help database winforms tutorial question

  • Sequential work flow with Database samples? I'm working with Sequential work flow activity.....
    R ravi vellanky

    may i know how to check the status of the workflow instance? -Ravi

    WCF and WF help database winforms tutorial question

  • Sequential work flow with Database samples? I'm working with Sequential work flow activity.....
    R ravi vellanky

    thanks Calin after form1, work flow's one(Code Activity) of the activities completed. for form2 i 've to check the role which is management or employee using ifelse activity. i donno whether i've to use same work flow or to take one more work flow to define ifelse activity in the sequential.............. if i use the same work flow then how to check the state of the workflow in the form2. becoz i'm sending the parameter.add("Role","Management") in form2 for the same work flow. Can you give me some samples using Workflow with 2 or more forms with database. -Ravi

    WCF and WF help database winforms tutorial question

  • Help me Windows work flow foundation.............
    R ravi vellanky

    hi, I'm working on Windows work flow(Workflow1.cs) which is sequential workflow. I'm using the work flow(Workflow1.cs) in Windows forms. In first form i started workflow(Workflow1.cs)by creating an instance and started and sending mails in the codeacitivity of sequential work flow(Workflow1.cs). In the 2nd form i've to check the roles using the work flow activity (i used ifelse actity in the same Workflow(Workflow1.cs) by using the parameters.add("Role","Management") and started again. It's giving error. Because i already started the instance in the 1st form. How to execute the work flow which is already started. I mean to say is the 2nd state which is ifelse activity to be executed after the codeActivity. Can any one help me in this context? or Give me some samples on workflow with database (sqlserver 2005) contains 3 to 4 forms.....in the sample.. -Ravi

    WCF and WF help database winforms tutorial question

  • Sequential work flow with Database samples? I'm working with Sequential work flow activity.....
    R ravi vellanky

    hi, I'm working on Windows work flow(Workflow1.cs) which is sequential workflow. I'm using the work flow(Workflow1.cs) in Windows forms. In first form i started workflow(Workflow1.cs)by creating an instance and started and sending mails in the codeacitivity of sequential work flow(Workflow1.cs). In the 2nd form i've to check the roles using the work flow activity (i used ifelse actity in the same Workflow(Workflow1.cs) by using the parameters.add("Role","Management") and started again. It's giving error. Because i already started the instance in the 1st form. How to execute the work flow which is already started. I mean to say is the 2nd state which is ifelse activity to be executed after the codeActivity. Can any one help me in this context? or Give me some samples on workflow with database (sqlserver 2005) contains 3 to 4 forms.....in the sample.. -Ravi

    WCF and WF help database winforms tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups