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
S

sr159

@sr159
About
Posts
61
Topics
39
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to find which DIV is selected and get selected DIV element values in jquery Pin
    S sr159

    hi, i have google autocomplete suggestion in textbox and added jquery autocmplete suggestion to google pac-container div. If i select the jquery suggestions from div, i am able to fire in $(document).on("click", function (e) { ] but i need to get selected element value. below is my div.

    LondonUnited Kingdom

    London BridgeBengaluru, Karnataka, India

    LonavalaMaharashtra, India

    Longitude GroupLavelle Road, D Souza Layout, Bengaluru, Karnataka, India

    LondenpetKrishnagiri, Tamil Nadu, India

    830 LONG DRIVE, ABERDEEN, MARYLAND, UNITED STATES, 21001 2370.628906-4569.779785

    830 LONG DRIVE, ABERDEEN, MARYLAND, UNITED STATES, 21001 2371.930664-4571.367188

    1 AVENUE DELAFOSSE PROLONGEE 01 BP 2185, ABIDJAN, COTE D'IVOIRE, 2185 320.179077-241.665054

    9910 AVALON ROAD NW, ALBUQUERQUE, NEW MEXICO, UNITED STATES, 87121 2105.522949

    Web Development javascript docker tutorial

  • How to find which DIV is selected and get selected DIV element values in jquery
    S sr159

    hi, i have google autocomplete suggestion in textbox and added jquery autocmplete suggestion to google pac-container div. If i select the jquery suggestions from div, i am able to fire in $(document).on("click", function (e) { ] but i need to get selected element value. below is my div.

    LondonUnited Kingdom

    London BridgeBengaluru, Karnataka, India

    LonavalaMaharashtra, India

    Longitude GroupLavelle Road, D Souza Layout, Bengaluru, Karnataka, India

    LondenpetKrishnagiri, Tamil Nadu, India

    830 LONG DRIVE, ABERDEEN, MARYLAND, UNITED STATES, 21001 2370.628906-4569.779785

    830 LONG DRIVE, ABERDEEN, MARYLAND, UNITED STATES, 21001 2371.930664-4571.367188

    1 AVENUE DELAFOSSE PROLONGEE 01 BP 2185, ABIDJAN, COTE D'IVOIRE, 2185 320.179077-241.665054

    9910 AVALON ROAD NW, ALBUQUERQUE, NEW MEXICO, UNITED STATES, 87121 2105.522949

    .NET (Core and Framework) javascript docker tutorial

  • How to get google place predictions with latitude, longitude and address based on Textbox entry in c#
    S sr159

    Hi, I want to get google place predictions with latitude, longitude and address based on Textbox entry in c# server side. I tried in client side using var places = new google.maps.places.Autocomplete(document.getElementById('txtPlaces')); But i want to achieve in Server side C#. How to achieve this. If anybody knows, please reply me. Thanks in advance.

    C# csharp sysadmin tutorial

  • Is it possible to add Custom Suggestions to google.maps.places.Autocomplete
    S sr159

    Hi, Is it possible to add Custom Suggestions to the google.maps.places.Autocomplete suggestion. Below code i used to get the google suggestion list based on text entry on textbox but i need to add additional suggestion from database based on same text entry and add those suggestions to this google suggestion list DIV. google.maps.event.addDomListener(window, 'load', function () { var places = new google.maps.places.Autocomplete(document.getElementById('txtPlaces')); Hide Copy Code google.maps.event.addListener(places, 'place_changed', function () { var place = places.getPlace(); var address = place.formatted_address; var latitude = place.geometry.location.lat(); var longitude = place.geometry.location.lng(); }); }); how to achieve this. If anybody knows, please reply me. Thanks in advance.

    Web Development database tutorial

  • Is it possible to add Custom Suggestions to google.maps.places.Autocomplete
    S sr159

    Hi, Is it possible to add Custom Suggestions to the google.maps.places.Autocomplete suggestion. Below code i used to get the google suggestion list based on text entry on textbox but i need to add additional suggestion from database based on same text entry and add those suggestions to this google suggestion list DIV. google.maps.event.addDomListener(window, 'load', function () { var places = new google.maps.places.Autocomplete(document.getElementById('txtPlaces')); google.maps.event.addListener(places, 'place_changed', function () { var place = places.getPlace(); var address = place.formatted_address; var latitude = place.geometry.location.lat(); var longitude = place.geometry.location.lng(); }); }); how to achieve this. If anybody knows, please reply me. Thanks in advance.

    .NET (Core and Framework) database tutorial

  • How to get full address, latitude and longitute based on location in c#.net
    S sr159

    Hi, I want to pass location as a parameter to google map api and i need to get Full Address,latitude and longitude based on that location in c#. Based on location, how to get multiple suggestion values (address) and save those suggestion list values to database. If anybody knows please reply me. Thanks in advance

    .NET (Core and Framework) csharp database json tutorial

  • how to join all three query results to one in mysql
    S sr159

    hi i have written 3 different select query in mysql based on yesterday,today, tommorow dates to get the birthday details as follows select concat(name,', ',title) as 'Yesterday 30-04-2014' from personal_details where DOB=curdate() - interval 1 day select concat(name,', ',title) as 'Today 01-05-2014' from personal_details where DOB=DATE(NOW()) select concat(name,', ',title) as 'Tommorow 02-05-2014' from personal_details where DOB=curdate() + interval 1 day how to join all 3 query results to one, i need to show as below Yesterday Today Tomorrow aaaa gggg nnnnn bbbb hhhhh mmmm dddd jjjjj eeee ffff How to achieve this, i am not able to do. If i tried with join there it wont match any condition and will not work because in each query result i will get unique values. I tried with another query by putting as below select a.* from (select CASE DOB WHEN (curdate() - interval 1 day) THEN concat(name,', ',title) ELSE '' END AS 'Yesterday', CASE DOB WHEN (DATE(NOW())) THEN concat(name,', ',title) ELSE '' END AS 'Today',CASE DOB WHEN (curdate() + interval 1 day) THEN concat(name,', ',title) ELSE '' END AS 'Tomorrow' from personal_details ) as a where a.Yesterday IS NOT NULL and a.Today IS NOT NULL and a.Tomorrow IS NOT NULL It is showing the result like in all the three column some rows will be null I dont want null values in any column. i want output as above. How to achieve this. If anybody knows please reply me. Thanks in advance.

    .NET (Core and Framework) database mysql regex tutorial

  • how to join all three query results to one in mysql
    S sr159

    if i use UNION i will get one column result. I should get 3 column but without null values. How to achieve this

    Database database mysql regex tutorial

  • how to join all three query results to one in mysql
    S sr159

    hi i have written 3 different select query in mysql based on yesterday,today, tommorow dates to get the birthday details as follows select concat(name,', ',title) as 'Yesterday 30-04-2014' from personal_details where DOB=curdate() - interval 1 day select concat(name,', ',title) as 'Today 01-05-2014' from personal_details where DOB=DATE(NOW()) select concat(name,', ',title) as 'Tommorow 02-05-2014' from personal_details where DOB=curdate() + interval 1 day how to join all 3 query results to one, i need to show as below Yesterday Today Tomorrow aaaa gggg nnnnn bbbb hhhhh mmmm dddd jjjjj eeee ffff How to achieve this, i am not able to do. If i tried with join there it wont match any condition and will not work because in each query result i will get unique values. I tried with another query by putting as below select a.* from (select CASE DOB WHEN (curdate() - interval 1 day) THEN concat(name,', ',title) ELSE '' END AS 'Yesterday', CASE DOB WHEN (DATE(NOW())) THEN concat(name,', ',title) ELSE '' END AS 'Today',CASE DOB WHEN (curdate() + interval 1 day) THEN concat(name,', ',title) ELSE '' END AS 'Tomorrow' from personal_details ) as a where a.Yesterday IS NOT NULL and a.Today IS NOT NULL and a.Tomorrow IS NOT NULL It is showing the result like in all the three column some rows will be null I dont want null values in any column. i want out as above. How to achieve this. If anybody knows please reply me. Thanks in advance.

    Database database mysql regex tutorial

  • Unable to start program http://localhost:1837/default.aspx using VS 2008 in Windows XP IE 8
    S sr159

    HI I am using Visual Studio 2008 to develop web application in Windows XP Internet explorer-8. If i run first time i wont get any error. In 2nd time i will get Unable to start program http://localhost:1837/default.aspx after that every time it is coming like that. I am not able to get debug point. How to solve this issue. If anybody knows, please reply me. thanks in advance.

    ASP.NET visual-studio help csharp debugging tutorial

  • Unable to start program http://localhost:1837/default.aspx using VS 2008 in Windows XP IE 8
    S sr159

    HI I am using Visual Studio 2008 to develop web application in Windows XP Internet explorer-8. If i run first time i wont get any error. In 2nd time i will get Unable to start program http://localhost:1837/default.aspx after that every time it is coming like that. I am not able to get debug point. How to solve this issue. If anybody knows, please reply me. thanks in advance.

    .NET (Core and Framework) visual-studio help csharp debugging tutorial

  • How to disable No of copies in Print Dialog in C#.net Windows Application
    S sr159

    Hi I created crystal report and generated print receipt. While giving print i want to disable No of copies in Print Dialog. If anybody knows, please reply me. Thanks in advance.

    .NET (Core and Framework) csharp tutorial

  • How to write a formula to insert image or tick mark in place of data value in crystal report in C#/Asp.net
    S sr159

    Hi I have created a crystal report using Visual Studio 2005 C#/Asp.net, i have output like good average poor. I need to replace those with images or tick (right) mark using formula fields like if{Read}="Good" then "some image / tick mark" else if {Read}="Average" then "some image / tick mark" else "some image / tick mark". If anybody knows, please reply me. Thanks in advance

    .NET (Core and Framework) csharp asp-net visual-studio tutorial

  • How to insert same record multiple times in Mysql using single query and not using for loop.
    S sr159

    by using for loop i can but is there any possibility to write a single Mysql query to insert 50 or more records. In Sybase they are using GO command like insert into tablename(columnname) values('abc') go 50 it wil insert 50 records.

    Database database mysql tutorial

  • How to insert same record multiple times in Mysql using single query and not using for loop.
    S sr159

    in Sybase some people sujjesting to go for GO command like insert into tablename(columnname) values('abc') go 50 it wil insert 50 records like this is there any chance to write Mysql query to insert 50 records using Go command like that, i tried but it is not working

    Database database mysql tutorial

  • How to insert same record multiple times in Mysql using single query and not using for loop.
    S sr159

    Hi I created one web form and i need to insert all same record more than 10 times using Mysql query. How to insert same record multiple times in Mysql using single query and not using for loop. If anybody knows, please reply me. one more thing in Sybase some people sujjesting to go for GO command like insert into tablename(columnname) values('abc') go 50 it wil insert 50 records like this is there any chance to write Mysql query to insert 50 records using Go command like that, i tried but it is not working Thanking you,

    Database database mysql tutorial

  • How to disable or enable the html li of UI menu or child menu based on user level condition in ASP.net.
    S sr159

    Hi

    I am using following html code to display menu.
    <ul id="coolMenu">
    <li><a href="#">Master</a>
    <ul class="noJS">
    <li><a href="a.aspx">Category</a></li>
    <li><a href="b.aspx">Subjects</a></li>
    <li><a href="c.aspx">Book Register</a></li>
    <li><a href="d.aspx">Staff Profile</a></li>
    </ul>
    </li>
    <li>
    <a href="#">Transaction</a>
    <ul class="noJS">
    <li><a href="Issues.aspx">Issues</a></li>
    </ul>
    </li>
    <li><a href="#">Reports</a>
    <ul class="noJS">
    <li><a href="e.aspx">Bookswise Report</a></li>
    <li><a href="f.aspx">Stock Report</a></li>
    </ul>
    </li>
    <li><a href="#">Utilities</a>
    <ul class="noJS">
    <li><a href="SignUp.aspx">User SignUp</a></li>
    </ul>
    </li>
    <li><a href="Logout.aspx">Logout</a></li>
    </ul>

    But i want to disable or enable the menu or child menu based on user level condition. How to do this. If anybody knows, please reply me. for ex: if user 2 means i have disable master & Utilities, if user is 1 means i have to enable all menus

    .NET (Core and Framework) csharp html asp-net design tutorial

  • How to fit Crystal Report within scrollbar and should not exceed masterpage
    S sr159

    Hi I placed crystal report within scroll bar but it is exceeding outside master page and not fit to scroll bar. How to fit Crystal Report within scrollbar, so that i can scroll and will be fit to that. So it should not exceed the masterpage. If anybody knows please reply.

    .NET (Core and Framework) tutorial

  • How to open Perl files / Perl Module files in Design Layout
    S sr159

    Hi I have a folder called OTRS Ticketing system which is developed using Perl. I need to open the perl files in design mode so that i can make any changes in design layout . I can use toolbox controls like dropdown, textbox, Datagrid etc. Is there any Perl IDE for opening & changing design layout. I downloaded Editplus, Komodo but all are one we can view code and make changes in code. But not able to see as design view. How to do this. Any suggestion for Perl development tool which we can use for opening perl files in design mode. Anybody knows, please reply. Thanks in advance.

    Linux, Apache, MySQL, PHP perl visual-studio design tutorial

  • How to open Perl files / Perl Module files in Design Layout
    S sr159

    Hi I have a folder called OTRS Ticketing system which is developed using Perl. I need to open the perl files in design mode so that i can make any changes in design layout . Is there any Perl IDE for opening & changing design layout. I downloaded Editplus, Komodo but all are one we can view code and make changes in code. But not able to see as design view. How to do this. Any suggestion for Perl development tool which we can use for opening perl files in design mode. Anybody knows, please reply. Thanks in advance.

    .NET (Core and Framework) perl visual-studio design tutorial
  • Login

  • Don't have an account? Register

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