-
Began Watching Create Service in c#
Hi I am trying to create a service in c#, if i click start in service it has to execute the run.bat file. if i click stop in service it … -
Replied To a Post in Create Service in c#
with the code you currently have, what happens? -
Began Watching In desperate need of help in c#
I have to create a program that accepts the number of tile as input from the keyboard, and returns the number of tiles to the main method. It has to … -
Replied To a Post in In desperate need of help in c#
The code pasted is too much. What is the issue, paste the part with the issue. -
Began Watching losing info after refresh page
at last i got the checkboxes to work and add to database but the only this i need advice on if i refresh the page the selected items disappear how … -
Replied To a Post in losing info after refresh page
what selected items? i dont understand the question. If you need to save info across refreshing you can use `$_SESSION` -
Began Watching Deleting Models not working in Laravel 5.2 Framework
my controller function public function destroy($id){ /* Deleting a product */ Product::destroy($id); // 1 way return redirect()->route('product.index'); } I tried using both the methods for deleting but it isn't deleting … -
Replied To a Post in Deleting Models not working in Laravel 5.2 Framework
Try Product::find($id)->delete(); -
Began Watching BE Final Year Project
Hello! I am Danish Shah. I am persuing computer engineering(final year). As i am in final year so me and my group members are developing a sponsored project named as … -
Replied To a Post in BE Final Year Project
You decide that. You take a property from the selected item eg weight or category. And search your database for items with the same property. So if you select a … -
Stopped Watching How can you pass command line arguments to the Node.js?
How can you pass command line arguments to the Node.js? -
Began Watching How can you pass command line arguments to the Node.js?
How can you pass command line arguments to the Node.js? -
Replied To a Post in How can you pass command line arguments to the Node.js?
Npm then your command -
Began Watching Hover state of menu links is offset
I've been inspecting this and going crazy trying to figure it out, but I can't find what's going on with this menu of mine. The links and hover state are … -
Replied To a Post in Hover state of menu links is offset
It worked normal for me. -
Replied To a Post in Windows 7 Microphone Not Releasing
I saw this post which might help. http://superuser.com/questions/335116/finding-out-which-app-is-using-the-webcam -
Replied To a Post in Win 7 laptop can't shut down properly
I think you need to click on the shutdown performance monitoring -
Began Watching Windows 7 Microphone Not Releasing
I use Skype frequently for voip. After I reboot, and for an indefinite time after, everything works fine. But eventually my microphone (Dell built-in) stops working. The party at the … -
Replied To a Post in Windows 7 Microphone Not Releasing
When that happens what do your sound settings in control panel show? Does it still recognize that the device is installed? -
Replied To a Post in what is the below code means (.=) in php?
Lol @almostbob -
Began Watching Win 7 laptop can't shut down properly
Hey guys, I'm not sure what the problem is and don't know what info you even need to figure this out, but my laptop is only able to properly shut … -
Replied To a Post in Win 7 laptop can't shut down properly
Im inclined to think it's a driver issue. One must have been installed that's not for your operating system. If you find it and uninstall it. It should solve your … -
Began Watching what is the below code means (.=) in php?
$capture_field_vals .= $text_field .", "; -
Replied To a Post in what is the below code means (.=) in php?
It adds the string on the right to the content of the variable on the left -
Began Watching Dealing with Inter-related Insert Statements
Hi all. Here is my problem. I'm a newbie to PHP programming. For my project I just need to run 3 Insert statements in a single button click. The concept … -
Replied To a Post in Dealing with Inter-related Insert Statements
So what probelm is your code having? -
Began Watching Is it possible to apply CSS to half of a character/word?
CSS to half of a character/word? -
Replied To a Post in Is it possible to apply CSS to half of a character/word?
use `<span>` tag with and id. Read about it. -
Gave Reputation to diafol in whole website view in single div
AH, ok I think toby may have got the idea. Instead of an iframe which has no idea of the dimensions of the data it's holding - so can't resize … -
Began Watching iframe height woes
Hey, I'm trying to (using bootstrap btw), have a page with a header and an iframe. I want the iframe to take up the remainder of the page's height and … -
Replied To a Post in iframe height woes
Define the iframes height in percentage -
Began Watching whole website view in single div
Hi, I am new to this concept. I have website in local and it has home,aboutus, testimonial and contact pages. In an index page(home page), I want to display whole … -
Replied To a Post in whole website view in single div
From my understanding i think what you need is an iframe. Using an iframe you can link to other parts of the site. So you would have the iframe in … -
Began Watching php and html using database
i have a doubt that is i have login form like user name and password and after that doing some selections the page show an body of email like this … -
Replied To a Post in php and html using database
I cant see any code. -
Gave Reputation to gusano79 in How to implement interface member
You're writing a class that implements an interface: > public class EWrapperImpl : EWrapper This means your `EWrapperImpl` class must have methods that match everything in `EWrapper`... > Error: TestCsharp.EWrapperImpl' … -
Began Watching PHP Notice: Undefined variable: email_message
For some reason my forms have stopped working and I cannot get themt o send any emails. I have checked the server logs and I can see on form submition … -
Replied To a Post in PHP Notice: Undefined variable: email_message
I think he is supposed to use `.=` because he is adding to the already existing value of `$email_message` If i had this problem, id check the form code first. … -
Began Watching liquid coroesel bootstrap
Hello, I am trying to create carousel that is liquid (with bootstrap): index.php <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Home</title> <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script src="js/jquery.min.js" type="text/javascript"></script> … -
Replied To a Post in liquid coroesel bootstrap
Try adding the class `img-responsive` to the images in the slideshow class. -
Began Watching Need help with $php
Please someone help. I want to put the $url which is created into $shorturl = to generate a custom url ($url actually outputs a http://something.com actual link) but don't know … -
Replied To a Post in Need help with $php
If i understand what your saying `$shorturl = $url` is what you should have on line 52. -
Began Watching delete record not working
Hello delete record not working if(isset($_POST['delete'])) { $ida = $_GET['delete']; $coupen = $_GET["code"]; $update_query = "delete from shortenedurls where id=".$ida; $query = mysqli_query($connection, $update_query); if($query) { header('Location: ../coupon.php?id='.$id.'&code='.$coupen); exit(); } … -
Replied To a Post in delete record not working
Try this $update_query = "delete from shortenedurls where id='$ida'"; -
Stopped Watching Help with a ElementHost Null Exception
Here's a good one for everyone. I have been working on a Screensaver program for some time now (some of you may even remember questions related to this). Anyway, one … -
Stopped Watching Help with a ElementHost Null Exception
Here's a good one for everyone. I have been working on a Screensaver program for some time now (some of you may even remember questions related to this). Anyway, one … -
Stopped Watching need help with c# screen scrape
I need help with .net c# screen scrape. I can't seem to find an example in c# that works. I have this one in VB that wors but feel like … -
Stopped Watching Count, store local, then display!
I found this https://github.com/inorganik/CountUp.js As my knowledge of javascript is very weak, i am asking for your help to store the counter result local, then display it on the user`s … -
Stopped Watching php include header is not working
hello my friends i have posted this article before but it stil didn't work so so i tried many time different way but i dont see the reason why my … -
Stopped Watching Linkedin Connection Issue
Im trying to import my linked in profile to fill my CV page. Its not working. Help please.
The End.