-
Began Watching switch case
hiya all i am doing a program here on switch case, have a fair idea on switch case but the lecturer now decides to teach us it the program goes … -
Replied To a Post in switch case
(Play the Jeopary theme).... "What is an Integer?" In short, your result is less than 1 so in integers, what will the answer be? -
Began Watching Win10 Start Menu and Cortana aren’t working
Hello, guys. When I ran my PC running Windows 10, there was an error saying Windows 10’s ‘Start Menu and Cortana aren’t working’. Besides, before that, All of my files … -
Replied To a Post in Win10 Start Menu and Cortana aren’t working
There are now so many priors on this error (the one about the Start) that I worry when you read a new post about it. http://www.tenforums.com/general-discussion/8823-critical-error-start-menu-cortana-arent-working-wll-try-fi.html found it could be … -
Gave Reputation to jwenting in Why daniweb attracts only newbies with no interest to stay in programming
Main problem is that there's no penalty for dumping your homework assignments here verbatim. On StackOverflow if you do that the entire thread gets removed, and your account gets locked … -
Began Watching Suggestion in Multi Line Text Box
Hi, Does anyone know how to have a dropdown appear when typing in a multi line text box? I want it to work in the same way it does in … -
Replied To a Post in Suggestion in Multi Line Text Box
This sounds like you want a richedit with some Intellisense? Try https://www.google.com/search?hl=en&as_q=richedit+with+intellisense -
Replied To a Post in c++win32 - how can i get the X caret on richedit?
Sorry about that. I was guessing you are on a win32/64 app. Let's hear a little more detail. The user32.dll should work but of course not on non-windows. -
Began Watching Live Broadcasting
I work as a tech for a School District. One of our schools is doing a live broadcast three times a week. Over CABLE to classroom TVs. Can anyone give … -
Replied To a Post in Live Broadcasting
Small world. I've done some commercial designs in analog, digital CCTV and well, more. But to solve this we need to know more about the existing "plant". For example how … -
Began Watching file reading and variable isolation with slicing
Given Problem: A professor at Hardtack University has an unusual method of grading. The students may or may not all take the same number of tests. The individual tests are … -
Replied To a Post in file reading and variable isolation with slicing
Your approach will only work with 3 lines. You need to step back and work on it with a new design. Think of writing it as if it was one … -
Began Watching c++win32 - how can i get the X caret on richedit?
i'm trying getting the richedit caret positions. seems that i can't use the caret functions. LONG firstCharIndex(HWND hwnd) { POINT pt; pt.x=0; pt.y=0; LONG n = SendMessage(hwnd, EM_CHARFROMPOS, 0, (LPARAM)&pt); … -
Replied To a Post in c++win32 - how can i get the X caret on richedit?
My thought on researching this one. I recall that's in User32.dll so this: https://www.google.com/search?hl=en&as_q=GetCaretPos&as_epq=User32+dll MSDN only had the C# call (which is what I code too much in.) https://msdn.microsoft.com/en-us/library/windows/desktop/ms648402%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396 -
Began Watching PC won't communicate with NAS over interposed switch
Hi guys! I have the following problem: I cannot get my PC (Win10) to communicate with other devices in my network (most importantly with the NAS) Here's my setup: http://i.imgur.com/zkpvzT9.jpg?1 … -
Replied To a Post in PC won't communicate with NAS over interposed switch
For this to work, the modem would have to be one of those with a built in router. So the usual gaffe for this setup is as isomerase noted when … -
Began Watching What's wrong with the website?
What's going on? I can neither find the home page nor the forum directory. And when I went to log in, there was no option for logging in with my … -
Replied To a Post in What's wrong with the website?
https://www.daniweb.com/community-center/daniweb-community-feedback/threads/500635/cant-loggon-on-when-posting-using-daniweb-creddentials confirms the legacy login still works. How did you post without logging in? -
Gave Reputation to overwraith in Why daniweb attracts only newbies with no interest to stay in programming
Perhaps there should be a feature where you can't downvote someone when your account is only n days/months old? -
Gave Reputation to JacobBrown in window 10 is good or not?
Donot upgrade, how I regretted having my computer upgraded to win 10. I have all my files gone from the disc. -
Gave Reputation to pascalwinkler in MySQL InnoDB data recovery
To fix this do the following please or in case it isn’t enough for your mysql database restoration, then I would advise you to learn helpful threads dedicated to solving … -
Began Watching Why daniweb attracts only newbies with no interest to stay in programming
The full title: "Why daniweb attracts only newbies with no interest to stay in programming and what can be done to keep the others as well ? " Over few … -
Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming
It's a good question. I think it gets hits about getting help with coding but then the newest of the new type in their homework without even trying. Some will … -
Replied To a Post in String Agents in Chrome ?
Did you try http://www.useragentstring.com/pages/useragentstring.php -
Began Watching String Agents in Chrome ?
Could someone please help me where I can find a large recent list of; Emulated Devices User String Agents for Chrome, I can't find it in my searches. -
Replied To a Post in String Agents in Chrome ?
Isn't there only 5? I may be wrong. Try https://developer.chrome.com/multidevice/user-agent As for Emulated Devices, https://developers.google.com/web/tools/chrome-devtools/iterate/device-mode/?hl=en broaches how to emulate devices. You mashed two concepts into one from what I see … -
Began Watching Need help regarding Video Content Promotion
I was thinking to promote our companies brand using video content. I need suggestion that if i use creative commans music and narrate video by myself. Is this approach could … -
Replied To a Post in Need help regarding Video Content Promotion
This is the old make or buy question. If you can't afford those companies then that's another angle. If you can make your own and your company likes the work, … -
Began Watching What should be the license of the theme?
I am working on a project where I should create wordpress theme based on given mockups. My contract says all the code will be property of company I am working … -
Replied To a Post in What should be the license of the theme?
Since it's many authors the company's name is usually what goes there. -
Gave Reputation to diafol in Unable to display correct current date
WHat form are you talking about? There is no form, just a few divs. You are using deprecated mysql_* functions - use PDO/mysqli. This way of coding is going to … -
Gave Reputation to Taywin in Hash Table Interpreter
Maybe this [link](http://algs4.cs.princeton.edu/34hash/) could help you understand a hash table better :) It also contains algorithm to solve collision as well. -
Began Watching Hash Table Interpreter
I am off to a rough start with this program, I have attempted with my best effort, but I am still lost on what I am supposed to do. The … -
Replied To a Post in Hash Table Interpreter
I worry that this is to complete a paid challenge at https://www.freelancer.com/projects/C-Programming/Build-hash-table-using-chaining/ The code, variable names are too close a match. There are now a dozen entries too similar at … -
Began Watching Delphi how to encode wav to mp3
I have been working on a program for recording voice conversations as a mini project. I have the recording working 100%, my problem is that I have no idea how … -
Replied To a Post in Delphi how to encode wav to mp3
That's a good question. But part of what many can't wrap their head around is that MP3 encoding was not intended to be free. Shocker? Fraunhofer and how someone stole … -
Began Watching Simple One - TimeSpan.ToString() Formatting
Howdy I have a timespan that contain in excess of 24 hours. For the example lets use a value of 1 day 6 hours and 32 minutes. I would like … -
Replied To a Post in Simple One - TimeSpan.ToString() Formatting
The thing is, TimeSpan for 24 and over hour discussions are pretty well down. I used [this link](https://www.google.com/search?q=timespan+that+contain+in+excess+of+24+hours&ie=utf-8&oe=utf-8) to find the priors. -
Began Watching Chrome - find which action cause tab to close
Hi, I want to distinguish whether the tab closed by clicking X or by another action (clicking a link, or a button which close the current tab). In Firefox - … -
Replied To a Post in Chrome - find which action cause tab to close
This is not a direct answer but how I would find out what event did it. As you know Chrome responds to "events" so I would have to monitor such … -
Replied To a Post in Motherboard Fan Power
As to the trick I linked to a product that seemed to do this. If you claim the motherboard already does this, why the question? -
Replied To a Post in Need Help Starting This Program!
Dr. Stephen Perkins also handed out his email address for those that can't call. -
Began Watching Need Help Starting This Program!
I really need help creating this program, i am not very good at coding and you all would be a blessing to help me. Thanks in advance! Assignment Create an … -
Replied To a Post in Need Help Starting This Program!
I wonder if you are taking Dr. Stephen Perkins class on this. He says you can call him during office hours if needed. -
Began Watching Motherboard Fan Power
I just bought the ASUS X99-PRO / USB 3.1 motherboard. I put it into a Corsair 800D case, that has 7 fans. I need to split the fan connectors to … -
Replied To a Post in Motherboard Fan Power
You guessed correctly. My setups have been 1 fan per motherboard fan connection. Beyond that I wire them to the PSU power. But let's guess you want the fans to … -
Began Watching programes
write a program for ascii no.from tushar -
Replied To a Post in programes
I'd try again as https://en.wikipedia.org/wiki/Tushar didn't seem to help me understand why it would be from tushar. -
Began Watching cannot save MS Project (MPP) 2010 file stored in Sharepoint over VPN
Hi, we have an issue where we edit the project file which is stored in a sharepoint document library and then when we try to save it comes up saying … -
Replied To a Post in cannot save MS Project (MPP) 2010 file stored in Sharepoint over VPN
Remember this bug has been kicking around for [years.](https://www.google.com/#q=saving+project+files+over+vpn) Microsoft seems to think it's OK for systems to work 99% of the time (some say less.) There is a small …
The End.