Search:

Type: Posts; User: HarshShah

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    6,200

    Carousel clickable image in xamarin forms.

    Hello Everyone,

    I want to create a Carousel view like when I press the right side arrow after that left side arrow will be shown before that left side arrow will be disabled and slide the image...
  2. Re: Delete a file on android device with web page

    No, that's not possible you can find out the other way to do this otherwise you can delete the file specifically.
  3. Replies
    3
    Views
    6,679

    Re: Xaml in Xamarin Forms

    No, I can't found the solution.
  4. VS 2015 Re: How to Use rest Api to post this Json data to SQLserver database

    First create one database and then create one table into it.

    use tempdb

    CREATE TABLE dbo.SystemRecord(
    RecordedDateTime datetime2(0) NOT NULL,
    RecordedDateTimeLocal ...
  5. Replies
    2
    Views
    3,324

    How to stop background music?

    I have an asp.net application where music plays automatically when the page loads (see code below). One of the options on the page, when clicked, will open a new page in a new window. In that window...
  6. Re: Edit Database Table Values via WPF Datagrid - Visual Basic

    Hii Saved,

    I know this is an old post but I had this very same problem and could not find an answer for it anywhere.

    Then by trying something out I found the answer!

    It would seem that when...
  7. Replies
    6
    Views
    4,081

    Same navbar on multiple pages.

    I have Index.html , about.html contact.html using bootstrap

    I have created a navbar on Index.html but I want the same navbar on all the pages.

    Do i have to copy the same code on every page or...
  8. Replies
    2
    Views
    4,425

    Re: Winform Control in WPF

    Hii Hannibal Smith,

    Please refer to this link...
    https://www.c-sharpcorner.com/uploadfile/mahesh/using-windows-forms-controls-in-wpf/...
  9. Re: Value 'Image' cannot be converted to type 'Control'

    Using this code you can set visibility to hidden.


    <DataTemplate x:Key="_HistoryDetails">
    <Grid x:Name="SingleUpload" Background="Transparent" VerticalAlignment="Stretch"...
  10. Re: Coding for webpages for when screen size changes?

    Yes, you can do it with CSS using @media query.

    Like this...


    <!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
  11. Replies
    4
    Views
    2,356

    How to add 2 columns in the textarea?

    Hello,

    How can I add 2 columns to the textarea below?


    <div class="col-md-7">

    <div class="form-group container-fluid">
    <textarea class="form-control"...
  12. Replies
    2
    Views
    4,078

    Re: MVVM (Model-View-ViewModel) Example ?

    Hii Hannibal smith,

    Please refer to this link...

    https://www.c-sharpcorner.com/UploadFile/raj1979/simple-mvvm-pattern-in-wpf/
    ...
  13. Replies
    2
    Views
    2,345

    Re: Paypal Commerce???

    Hii Blakemckenna,

    There is no charge to set up a PayPal business account but there are fees associated with many of the business account features.

    Please check this site here give you a full...
  14. Replies
    3
    Views
    3,286

    How to Covert List values to Enum?

    How can i convert this??

    List lstDays = new List { "Monday", "Tuesday ", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" };

    Need Enum like

    enum lstDays
    {
    Monday,
    Tuesday,
  15. Re: Trying to display message in without refreshing page?

    Hii,

    You can do it through AJAX.


    <script>
    $(document).ready(function(){
    $("#contact-form").on("submit", function(e){
    e.preventDefault();
    dataString =...
  16. Re: Entire example of Paypal Shopping Cart on a website

    Hii Blakemckenna,

    Please refer this video might it should be helpfull to you.
    https://www.youtube.com/watch?v=iVzQEf0IEYE
  17. Replies
    3
    Views
    6,679

    Xaml in Xamarin Forms

    How do I make my label to display symbols like percentage (%). PS: I'm using code behind, I'm not much familiar with data binding.
  18. Replies
    5
    Views
    2,288

    Re: Regex Date Validation

    HTML


    <form>
    <p>Enter date</p>
    <input type="text" id="test1" value="22.05.2013 11:23:22"/>

    </form>

    JS
  19. Replies
    2
    Views
    1,800

    Re: Import from another page

    With your scenario, I would solve by using localStorage.

    On page1:


    window.onload = function() {
    var getInput = prompt("Hey type something here: ");
    ...
  20. Re: Trying to get a larger image to show in new window?

    Hii blakemckenna,

    Try like this...

    JS


    function swipe() {
    var largeImage = document.getElementById('largeImage');
    largeImage.style.display = 'block';
  21. How to return arrays from a function using ref keyword?

    How can I return arrays from a function using ref keyword?

    I Appreciate your suggestions!!
  22. Replies
    3
    Views
    2,608

    Re: Trying to make a simple photo gallery?

    Hii Blakemckenna,

    Try this one...


    <!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
  23. Replies
    2
    Views
    3,722

    Re: Play Multiple Songs Using Control

    Hello,

    Try this code this can be work.

    JS


    jQuery(function($) {
    var supportsAudio = !!document.createElement('audio').canPlayType;
    if(supportsAudio) {
  24. Replies
    1
    Views
    2,445

    Re: JQuery functions not working?

    Hii blakemckenna,

    Please refer this site for fadeIn and slideUp function.

    http://mrbool.com/how-to-apply-fade-and-slide-effect-with-jquery/26789...
  25. Re: How do you make a horizontal scrolling photo gallery in Javascript?

    Hello,

    This code can working try it...

    HTML


    <span class='arrow-left'>left</span>
    <span class='arrow-right'>right</span>
    <div class='row offer-pg-cont'>
  26. Re: How do I set the data source for BlazorTable to a DataTable

    Hii Brain Henry,

    You should convert first DataSource in BindingSource,


    BindingSource bs = (BindingSource)dgrid.DataSource;
    DataTable tCxC = (DataTable) bs.DataSource;

    With the data of...
  27. Replies
    1
    Views
    2,599

    How to use multiple submit button?

    Hello Everyone,

    how to create three submit buttons like Save, Save For Later, Save and Publish.
  28. Re: How can I eliminate the extra space after a tag?

    Hello,

    HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example:

    <form style="margin-bottom:0;" action=...>

    You can also use a...
  29. Replies
    1
    Views
    2,499

    HTML div class="drag"

    Hello Everyone,

    How to disable drag and drop after 6 drags in HTML using draggable.
  30. Re: How to display a list as comma separated value in DataGrid column

    Hello Kutlesh,

    Add a property to the class that returns the subject comma-separated using string.Join. Bind the property to the grid.

    Check below for using string.Join:


    List<string> val =...
  31. Re: Need help understanding MVVM model WPF DataGrid

    Hello Mrwad,

    Check this link for the basic understanding of how the MVVM model can work
    ...
  32. Replies
    2
    Views
    4,611

    Message box in ASP.NET

    Hello guys
    Please help me

    In Windows Form, I used this message box but i need to convert this message box to web asp.net , message as below :

    MessageBox.Show(null, "The error Is" +...
  33. Re: Using PNG image as cursor in WPF

    Hii Kram,

    I got some sites to create cursor using png image.

    Please check the below links......
  34. How to insert radio button in dropdown menu??

    Hello Everyone,

    My question is how can I insert radio button in dropdown menu.

    Please suggest me!!
  35. Replies
    0
    Views
    3,222

    Custom cursor in WPF?

    Hello,
    I am working on WPF application and I want to create a custom cursor for image how can i do that??
    If anyone knows please Suggest me.
  36. Replies
    5
    Views
    1,919

    Re: No preview of videos?

    Hii,

    If you want to show a poster of image within the video so just try this...

    <video width="320" height="240" poster="path of your image" controls>
    <source src="movie.mp4"...
  37. Re: Embedding an Instagram Carousel into your Website?

    Hii blakemckenna,
    For embedding an instagram carousel website you need to add plugins into your website for looking good.
    You can refer below link for more information......
  38. Re: How to display the result of this code into a table ?

    Hii Max45,

    If you want to display the results of a query in a table, I recommend Ado.net.

    Try this code...


    <asp:GridView ID="GridView1" runat="server"></asp:GridView>
    string constr =...
  39. Replies
    1
    Views
    1,570

    Re: displaying by username

    Hello Markob,

    Try this code...


    <?php
    if (isset($_GET["page"])) { $page = $_GET["page"]; } else { $page=1; };
    $start_from = ($page-1) * $results_per_page;
    $sql = "SELECT * FROM...
  40. Replies
    0
    Views
    2,064

    How to get value from dropdown list??

    I want to get a value from a drop-down menu (#city) and put it in onchange attribute of another drop-down menu (#type).

    I'm try this but it can't work.


    <div>
    <label for="city">City<label>...
Results 1 to 40 of 59
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width