Search:

Type: Posts; User: Sherin

Page 1 of 2 1 2

Search: Search took 0.17 seconds.

  1. Re: What are the states of Android App lifecycle ?

    The 7 lifecycle states of the android app lifecycle.

    onCreate:- called when activity is first created.
    onStart:- called when activity is becoming visible to the user.
    onResume:- called when...
  2. Replies
    3
    Views
    2,643

    Re: how can i centere block eliminate using css1?

    To center block element with CSS1 This is done by setting the properties margin-left and margin-right to auto and width to some explicit value:


    Here is an example

    <html>
    <head>
    <style...
  3. Replies
    3
    Views
    44,883

    Re: Simple rpn calculator

    Please try this code, Too Simple RPN, calculator.



    if(calcStack.size() > 2 )
    {
    cout << "Error: too many operands" << endl;
    return 1;
    }
    else...
  4. Replies
    2
    Views
    16,576

    Re: How to Use WMI Class in C#

    Please follow these steps, To How to Use WMI Class in C#.
    Step 1:Open WBEMTest as noted above.
    Step 2:Click Connect.
    Step 3:Ensure the Namespace is set to “root\cimv2” and click Connect.
    Step...
  5. Replies
    9
    Views
    23,193

    Re: Convert Website into App

    Please follow these steps, To Convert the Website into App.

    Step 1: Enter the name of your business
    Pick the appropriate category and an appealing color scheme

    Step 2: Add exciting features...
  6. Replies
    7
    Views
    8,768

    Re: Application Performance in jquery html

    Please try this code, To Application Performance in jquery HTML.



    $('#item').css ('color', '#123456');
    $('#item').html ('hello');
    $('#item').css ('background-color', '#ffffff');

    ...
  7. Replies
    3
    Views
    14,835

    Re: css/javascript - Webpage Menubar

    Hello,@tr333
    Please try this code, To How to create menubar using the CSS and Javascript.



    <!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">...
  8. Replies
    2
    Views
    12,657

    Re: [JAVASCRIPT] - Calculating Pi

    Please try this code, To how to calculate PI using javascript.



    <html>
    <head>
    <title>Pi</title>
    <script type="text/javascript">
    mess = "";
    Base = Math.pow(10, 11);
  9. Replies
    1
    Views
    11,458

    Re: [JQuery] Slideshow

    Please try this code, To slideshow using Jquery.



    <!DOCTYPE html>
    <html>
    <head>
    <script src="https://code.jquery.com/jquery-1.9.1.js"></script>
    <meta charset="utf-8">
    <meta...
  10. Replies
    1
    Views
    8,019

    Re: [CSS2] Horizontal Navigation Bar

    Please try this code, To Horizontal Navigation Bar



    <!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
    body {margin: 0;}
  11. Replies
    2
    Views
    12,481

    Re: Count character Occurrences in a string

    Hello, @karenInstructor
    Please try this code, To Count character Occurrences in a string



    using System;

    public class GFG {

    // Method that return count of the given
  12. Replies
    2
    Views
    1,480

    Re: Speech to Text question

    Hello, @DonaldJamesParker
    Please try this code, To Speech to Text question.

    Here is a quick sample that shows one of the simplest .NET windows forms app to use a dictation grammar that I could...
  13. Replies
    2
    Views
    11,457

    Re: [JQuery] TabControl

    Hello,@dday9
    Please try this code, To TabControl.



    <div id="tabs">
    <ul>
    <li><a href="#tabs-1">J-Query Tab-1</a></li>
    <li><a href="#tabs-2">J-Query Tab-2</a></li>
    <li><a...
  14. Replies
    5
    Views
    1,666

    Re: LINQ join table with parameter

    Please try this query, To LINQ join table with parameter


    var partialResult = (from c in db.Customers
    join o in db.Orders

    on c.customer_id equals...
  15. Replies
    10
    Views
    5,258

    5.0 Re: DBNull to Textbox Value

    Hello,@arvinddx
    Please try this code, To DBNull to Textbox Value



    CREATE TABLE dbo.doc_exz (column_a INT, column_b INT);
    GO
    INSERT INTO dbo.doc_exz (column_a) VALUES (7);
    GO
    ALTER TABLE...
  16. Replies
    10
    Views
    7,620

    Re: Selecting First element with IQueryable

    Hello, @Lenn86
    Please try this code, To Selecting First element with IQueryable


    public static TSource First<TSource> (this System.Linq.IQueryable<TSource> source);


    I hope this code will be...
  17. Re: separatly treat checkbox in two different html table

    Hello,@ERUM
    Please try this code, To separatly treat checkbox in two different html table


    $('#select_all1').bind('click', function() {
    var checkedState = this.checked;
    $('#table1...
  18. Replies
    9
    Views
    1,837

    Re: Update a field in multiple tables

    Hello,@kebo
    Please try this query, To Update a field in multiple tables



    Select 'UPDATE ' + TABLE_NAME + ' SET CreatedDateTime = ''<<New Value>>'' '
    From INFORMATION_SCHEMA.COLUMNS
    WHERE...
  19. Re: Loading data to Datagrid via Model-View-ViewModel (MVVM)

    Hello,
    Please follow these steps, To Loading data to Datagrid via Model-View-ViewModel (MVVM)
    Step 1: you created a window, its view model, and connected them via DataContext.


    View.MainWindow...
  20. Re: Animated Window Effects with "Toast" Popup Demo

    Hello, @jmcilhinney
    Please try this code, To Animated Window Effects with "Toast" Popup Demo



    @using Syncfusion.EJ2
    @using Syncfusion.EJ2.Notifications;
    @using Syncfusion.EJ2.DropDowns;...
  21. Replies
    4
    Views
    5,740

    Re: Async in ViewModel - best practices

    Hello, @Luckey
    Please follow this information, To Async in ViewModel - best practices

    You should only use Task.Run if you have CPU-bound or blocking work that you want to move off the UI thread....
  22. Replies
    2
    Views
    7,392

    Re: [Help needed] WPF Toolkit AutoCompleteBox

    Hello,@kmlj
    Please follow this information, To WPF Toolkit AutoCompleteBox

    Not all the toolkit controls are included in the "main" namespace.
    Let me explain how are the toolkit dlls are built...
  23. Thread: Refresh Grid

    by Sherin
    Replies
    4
    Views
    17,701

    Re: Refresh Grid

    Hello,@JigaByte
    Please try this code,To Refresh Grid


    <button id="Add">Add</button>&nbsp;
    <button id="Remove">Remove</button><br />
    <div id="Grid"></div>
    <script...
  24. Re: How to duplicate a column in the same table (SQLite)

    Hello, @Spybot
    Please try this query, To How to duplicate a column in the same table (SQLite)


    SELECT DataId, COUNT(*) c FROM DataTab GROUP BY DataId HAVING c > 1;

    I hope this query useful to...
  25. Re: Calculating remaining days between two dates

    Hello,@fafa2020

    Please try this code, To Calculating remaining days between two dates

    Assuming the StartingDate and EndingDate are of type DateTime.



    (EndingDate - StartingDate).TotalDays
  26. Replies
    2
    Views
    10,024

    Re: installing JQuery/JQuery UI

    It is library conflict error.you can add to these library on head section.

    <head>
    <link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
    rel = "stylesheet">...
  27. Thread: Mysql pivot how

    by Sherin
    Replies
    2
    Views
    1,183

    Re: Mysql pivot how

    pivot data is the process of aggregating or moving rows of data into columns

    You can try this query:


    CREATE TABLE Exams (
    pkey int(11) NOT NULL auto_increment,
    name...
  28. Replies
    2
    Views
    1,469

    Re: Window object in external javascript?

    Thank you for the reply.
    Actually error was generated because of something else and it's been resolved.
  29. Replies
    2
    Views
    1,469

    Window object in external javascript?

    Can I pass Window object in external javascript?
  30. Re: how to display image in html table uisng jquery

    Try this query

    function(response) {
    var trHTML = '';
    $.each(response, function (i, item) {
    var img1 = '<a href="' + item.url1 + '"><img src="' + item.url1 +...
  31. Replies
    6
    Views
    12,431

    Re: Making an Accordion Control?

    You try this query of making an accordian:

    <script>
    var acc = document.getElementsByClassName("accordion");
    var i;

    for (i = 0; i < acc.length; i++) {
    acc[i].addEventListener("click",...
  32. Replies
    6
    Views
    12,431

    Re: Making an Accordion Control?

    You try this query of making an accordian:

    <script>
    var acc = document.getElementsByClassName("accordion");
    var i;

    for (i = 0; i < acc.length; i++) {
    acc[i].addEventListener("click",...
  33. Replies
    2
    Views
    994

    Re: What is jQuery.holdReady() in jQuery?

    jquery.holdReady(hold)
    Description:Holds or releases the execution of ready event
    when argument pass in holdReady by default value is hold when its datatype is boolean and its value true or false
    ...
  34. Thread: HTML 4 & HTMl 5

    by Sherin
    Replies
    4
    Views
    7,828

    Re: HTML 4 & HTMl 5

    HTML 4 and HTML 5
    The html 5 syntax is simple to compare than the html 4 . The html 5 is different new tag introduced in current version whereas i not in the html 4.Html 5 the added to the...
  35. Replies
    17
    Views
    5,289

    Re: How To Use Between Is Select Statement

    Try this query :


    select OrderDateTime from [table-name] where OrderDateTime between '2019-11-12' and '2019-11-22'
  36. Replies
    2
    Views
    1,697

    Re: What is jQuery.noConflict() in jQuery?

    Do refer these sites :
    1) https://api.jquery.com/jQuery.noConflict/
    2) https://www.geeksforgeeks.org/jquery-noconflict-with-examples/
  37. What's the difference between the directory and menu lists and the unordered list?

    What's the difference between the directory and menu lists and the unordered list?
  38. Replies
    2
    Views
    4,607

    Re: which language is best for front end?

    Can't say about best but JavaScript is appropriate when it comes to frontend development.
  39. Replies
    9
    Views
    12,286

    Re: Resize a Label's height to fit text

    label.AutoSize = False
    label.Width = CInt("pass your text here")
  40. Re: What is the difference between undefined and null in JavaScript?

    undefined means a variable has been declared but has not yet been assigned a value and null is an assignment value which can be assigned to a variable as a representation of no value.


    var test;...
Results 1 to 40 of 59
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width