-
Replied To a Post in systemC
I don't see enough code so this is at a high level. Now that you know to put the code you want to run in form.load, put a timer on … -
Replied To a Post in Loop Images 3 Images wide in PHP
That's still a portion of the code. As noted, move your rotation code over to the client in JavaScript and pull/change as you wish. In a later reply you change … -
Replied To a Post in Loop Images 3 Images wide in PHP
Since you didn't reveal all the code, then my reply will be just about as incomplete. On the client side keep track of which set and request the next when … -
Replied To a Post in First Look USA: The Most Secure Hard Drive Ever Made?
Nice idea. But. Just try to travel in the NSA (USA?) with that. https://www.theregister.co.uk/2017/03/20/appeals_court_contempt_passwords/ It's worse than you can imagine today. You forget that code and you're in jail. -
Began Watching First Look USA: The Most Secure Hard Drive Ever Made?
I've had my hands on what is being described as the 'most secure hard drive ever made' for a while now. Such are the advantages of being a well known … -
Gave Reputation to diafol in Syntax Error
Ok build string first and then base64 it: $str = 'date='. date_format($res['date'], 'Y-m-d') . ' and vou_no=' . $res['vou_no']; You had unbalanced brackets again. I've inserted spaces between the "and". … -
Gave Reputation to diafol in Syntax Error
Ok build string first and then base64 it: $str = 'date='. date_format($res['date'], 'Y-m-d') . ' and vou_no=' . $res['vou_no']; You had unbalanced brackets again. I've inserted spaces between the "and". … -
Replied To a Post in Loop Images 3 Images wide in PHP
I need some clarification here. PHP is usually server side so to loop images you usually have some HTML and JavaScript to display this on the web browser. That is, … -
Began Watching Loop Images 3 Images wide in PHP
I have a code that is working to show images and description. But I am trying to get it to loop through 3 pictures wide, then loop again. and display … -
Replied To a Post in How to generate data matrix 2d bar code for c#
Actually it was all too simple the last time I did simple barcodes. I did not need any library. I needed a BARCODE FONT. After I installed the BARCODE FONT … -
Began Watching How to generate data matrix 2d bar code for c#
I work in windows form in visual studio 2015 using c# Language And I need to generate data matrix to name and phone and address So that how to do … -
Replied To a Post in systemC
Here's a basic item you learn as you write more VB code. If you want code that runs when the app or form loads, use form.load()'s handler. -
Replied To a Post in JSP
You would have to define best. For example if your income depends on PHP, then that would be best. If your company site is in asp.net then you would think … -
Began Watching JSP
Hi, pls i wanna know between jsp, php, and asp.net, which is the best for web app designing. Am thinking on going for one. -
Replied To a Post in ball tracking in model of soccer pitch using python and opencv,,,,,Help!!!!
This would not be your first rodeo. That is, if this is your first attempt at tracking you are in for a rough ride. Before we start, be aware of … -
Began Watching ball tracking in model of soccer pitch using python and opencv,,,,,Help!!!!
Hello guys, hope you all fine,, I have a problem when coding using python and opencv. My project is to track the ball in model soccer pitch using raspberry pi … -
Gave Reputation to diafol in Syntax Error
Sorry but that is totally mashed up. >I want to pass two parameters. But `base64_encode()` only takes one parameter: http://php.net/manual/en/function.base64-encode.php Your quotes are all over the place; you include `.&` … -
Replied To a Post in how to solve invalid keystore format error in android studio 2.2
I took a look at your question used https://www.google.com/search?q=Failed+to+read+key+palash+from+store to see if there were priors. Good news is there are but the bad part is to solve it was not … -
Began Watching how to solve invalid keystore format error in android studio 2.2
**how to solve invalid keystore error in android studio here is error report-----------------------> here is error report--------> error:Error:java.lang.RuntimeException: com.android.ide.common.signing.KeytoolException: Failed to read key palash from store "D:\MyApplication3.idea\workspace.xml": Invalid keystore format … -
Replied To a Post in custom Attribute Based Access Control | Angular & Rails
I think this is one of those problems that you have to solve. That is, you want this and it's a rather niche solution. So you may have to make … -
Replied To a Post in systemC
Just a tip. If you use the Aforge kit, their forum is at http://www.aforgenet.com/forum/ -
Replied To a Post in determine file type
Start by explaining how your topic meshes with your table and what you want to do. That is, you can't write an app if you don't know what you want … -
Began Watching determine file type
**my table contains both urls(http://) and email addresses. Using PHP, I want to take different actions depending on the current record and dont have a clue. any advice? thanks** -
Replied To a Post in Outlook 2011 recieves but does not send
https://www.google.com/search?q=Outlook+2011+receives+but+does+not+send+GMAIL finds many causes. However you have to admit that today changes happen without us touching the computer. Look through the priors and let's hear what error message there is … -
Began Watching Outlook 2011 recieves but does not send
Up until 5 days ago Outlook 2011 on my iMac was working fine -but now it recieves emails but I cannot send them - all it does is save them … -
Replied To a Post in Unique Name per computer when sharing ?
Up at the top you wrote what you wanted sharing to do and it failed that spec. About not adding a guest account, that's OK since it's a built in … -
Replied To a Post in Unique Name per computer when sharing ?
The tutorial notes how guest is special. In Windows speak it's a way to allow a connection without an account. There are many ways to configure access but many failed … -
Replied To a Post in Unique Name per computer when sharing ?
That's OK. The article is not limited to what I think you want to do but does dive into the settings, screens I would have to be conversant as well … -
Replied To a Post in Unique Name per computer when sharing ?
The article also noted if we wanted control over which users do what, we remove the guest from the access list. I fear you have to go over the tutorial … -
Gave Reputation to diafol in How To Check Whether An Html Element Or Plain Text Exists On A Page Or Not
>I don't understand all that DOM stuffs. ALthought, heard of it before. https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Introduction If you.re doing any web work. This is the foundation. If you don.t get this, then you … -
Gave Reputation to diafol in Recommend Me Some Tutorials
Hashing for what purposes? Logins? If so see my tutorial (link supplied many times). -
Gave Reputation to diafol in Recommend Me Some Tutorials
Hashing for what purposes? Logins? If so see my tutorial (link supplied many times). -
Replied To a Post in Unique Name per computer when sharing ?
You have many questions. 1. Users are that in Windows10/8 etc (non-server) that are used to log into Windows, correct ? Not entirely. Since we are on a non-server Windows … -
Replied To a Post in Display Current Year in TextBox in C#
You put the textbox on your form then some code like [https://msdn.microsoft.com/en-us/library/system.datetime.year(v=vs.110).aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-1](https://msdn.microsoft.com/en-us/library/system.datetime.year(v=vs.110).aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-1) So after you get the current date and time. `textbox.text = moment.Year; If you find moment.Year returns an … -
Began Watching Display Current Year in TextBox in C#
I want to display only the current year in a textbox. How can i achieve that. Please help me. For Example i want to display 2017 in text i.e Current … -
Gave Reputation to diafol in Unable to play laravel video tutorial
Only 120 solved from 616 threads. If dw is that bad, why keep coming back? Or perhaps there needs to me more consideration and press solved more often. -
Replied To a Post in Python [Errno -9996] Invalid output device (no default output device)
Just a thought. Review where you got this code from. Was it running on some Apple like yours? They may have it on some PC so your choice of devices … -
Replied To a Post in custom Attribute Based Access Control | Angular & Rails
Maybe it's like a custom bit of hardware. That is, to do this you need that. I can't guess why you must not use GEMS and Packages but if that's … -
Replied To a Post in custom Attribute Based Access Control | Angular & Rails
Be sure to keep an eye for others asking similar/same questions like at http://stackoverflow.com/questions/43568141/custom-attribute-based-access-control-angular-rails -
Began Watching custom Attribute Based Access Control | Angular & Rails
I am implementing **Attribute Based Access Control** in angular typescript application with rails server. I've searched for different solutions like followings but could not manage to implement cause of unclear … -
Replied To a Post in Unique Name per computer when sharing ?
Not mundane at all. OSes, file systems, ownership, rights have a long history. My background goes from no file system OSes like what we had on old computers like GE-210 … -
Replied To a Post in Unique Name per computer when sharing ?
That's a two or more part question. To make the connection unique per PC the current implemention is, and this is keeping it simple, "Who are you and do you … -
Replied To a Post in Unique Name per computer when sharing ?
As to the question about using what Windows sharing offers, yes you are sharing a folder on its own but your requirements blow up what Windows does. That is, you … -
Replied To a Post in jtable
I think you'll have to explain this in detail. Here, Netbeans is the IDE where I edit code. https://en.wikipedia.org/wiki/NetBeans So your topic is about updating which coupled with your question … -
Began Watching jtable
how to update Jtable by editing its cell with netbean. someone help please -
Replied To a Post in Python [Errno -9996] Invalid output device (no default output device)
I can't know you were coding and running this on an Apple Mac. Alter my link to reflect that change in detail. As I don't have an Apple Mac but … -
Replied To a Post in Unable to play laravel video tutorial
Here it's right under your post at the top. > It's Gold in color and the biggest button ever. It's a beautiful button and you won't have to pay for … -
Replied To a Post in Python [Errno -9996] Invalid output device (no default output device)
As a test try working apps first before you write new code. I can see this happen if say a Pi was connected to a monitor. Most monitors don't have … -
Replied To a Post in Python [Errno -9996] Invalid output device (no default output device)
Let's watch http://stackoverflow.com/questions/43563596/python-oserror-errno-9996-invalid-output-device-no-default-output-device too. -
Began Watching Python [Errno -9996] Invalid output device (no default output device)
I'm currently working on multithreading with PyAudio and Pygame, but when I try to run the audio, I get an error saying "OSError: [Errno -9996] Invalid output device (no default …
The End.