-
Replied To a Post in Name Tags/Badges
Good question. It appears "data" extends to the printed data so name tags with full name may be a problem. That is, if the employee wants to share, it would … -
Began Watching Name Tags/Badges
Hi I am talking GDPR and Data Protection Act 2018. Can an organisation in the UK have its sales staff wearing name tags/badges with the employees' full name displayed on … -
Replied To a Post in What is wrong with this JS code?
Looks like one circle to me. If you want 3 circles you have some drawcircle() function and for the myCircle() call drawcircle() 3 times with what variables you see fit … -
Replied To a Post in How to read the second line in text file
What use "for" in this simple case? From https://www.pythonforbeginners.com/files/reading-and-writing-files-in-python Maybe it's just 3 lines of code. Example: file = open(“testfile.txt”, “r”) print file.readline(2): file.close() -
Began Watching How to read the second line in text file
Hi How to read the second line in text file(MyData,txt) #MyData.txt line1 line2 line3 line4 line5 #read the second line f = open ("MyData.txt","r") for line in f: if line … -
Replied To a Post in What is wrong with this JS code?
Start with tutorials. Here's one that draws a circle. https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_canvas_arc PS. Added with edit. From what I see in your code you define a function but never call it. So … -
Began Watching What is wrong with this JS code?
Am trying to draw three circles on the page but nothing shows up, anyone can tell me what is wrong here? <body> <canvas id="myCircle(3)" width="60" height="60"> Your browser does not … -
Gave Reputation to cambalinho in C++: how can i create nested loops?
thank you so much for all to all -
Gave Reputation to Adhocdegra in discuss about project
@Hazma_23, "i want to write code in data structure using c++." *This statement is straight forward enough. Data Structures Using C++, 2nd Ed., (945 Pages) By D.S. Malik, Department of … -
Replied To a Post in Can anyone recommend a free Android emulator for Windows 10
You have the bona fide official emulator now. I wish it was easier. -
Replied To a Post in Can anyone recommend a free Android emulator for Windows 10
Sorry that I don't have a tutorial on this one. While I do work on Android apps in AS and use the emulator I did have to be patient as … -
Replied To a Post in Can anyone recommend a free Android emulator for Windows 10
I use the Android Developer system and only had to setup the emulator one time using some menu in Android Studio. Once you get it setup in AS you should … -
Replied To a Post in Can anyone recommend a free Android emulator for Windows 10
It does here. I seem to install this about 4 times a year and each time I get an emulator. Maybe you need a clue on how to start it. … -
Replied To a Post in Can anyone recommend a free Android emulator for Windows 10
I don't know if this will work for you. It's rather large and has more than just the emulator. I use the emulator in Android Studio. Maybe someone has it … -
Began Watching Can anyone recommend a free Android emulator for Windows 10
My wife got a VeryfitPro fitness monitor for Christmas. I have the app loaded on my Android (6) phone and was hoping to install a companion app on my Windows … -
Replied To a Post in IPS MCS questions ?
This appears at first to be a question about Citrix MCS (Machine Creation Service.) For an overview I read https://www.citrix.com/content/dam/citrix/en_us/documents/reference-material/citrix-virtual-apps-and-desktops-machine-creation-service-deployment-on-oracle-cloud-infrastructure-bare-metal-instances-with-microsoft-hyper-v.pdf I've had encounters with Citrix on and off over the … -
Began Watching IPS MCS questions ?
Hello, Is there anybody that can answer to my questions on IPS MCS items? I want to learn all its items settings for a forum. And I want to know … -
Replied To a Post in Can directx 12 GPU be used on motherboard supporting up to directx 11
It's more a maybe. Since you didn't supply which OS I can't give you a fully positive signal. Just in case you could glean some other tidbits read https://www.cnet.com/forums/post/3ef4c495-10ec-4348-8dc1-1322367b0f7f/ where … -
Gave Reputation to lewisclark019 in SEO "experts" scams
SEO scammers typically target small businesses that have sparse resources as they offer little-to-no threat when they discover that they have been taken advantage of differnt ways. -
Replied To a Post in Can directx 12 GPU be used on motherboard supporting up to directx 11
That's not how it works. The OS and the GPU sets the maximum version of DirectX. To prove this I wrote about some old iron from 2009 which was a … -
Began Watching Can directx 12 GPU be used on motherboard supporting up to directx 11
Hello, I want to buy a new graphic card GTX 1060 6gb which is directx 12 and my motherboard supports up to directx 11. I would like to know if … -
Replied To a Post in How big are Windows 10 updates?
@Reverend Jim, Windows 10 deliverery optimization has changed again. May want to check it out. Here's the screen where it shares among the local area network PCs.  Not that … -
Replied To a Post in discuss about project
@hamza. While you may have an idea of your design, what you posted has many missing parts. For example you lead with "code in a data structure" which sounds odd … -
Began Watching discuss about project
i want to write code in data structure using c++. my topic is online voting system. -
Undeleted a Post in C++: how can i create nested loops?
Now it's starting to sound like an assignment. Can we see what book, class this is? Usually the preceding chapters build up to this sort of assignment. Forget loops for … -
Deleted a Post in C++: how can i create nested loops?
Now it's starting to sound like an assignment. Can we see what book, class this is? Usually the preceding chapters build up to this sort of assignment. Forget loops for … -
Replied To a Post in C++: how can i create nested loops?
Now it's starting to sound like an assignment. Can we see what book, class this is? Usually the preceding chapters build up to this sort of assignment. Forget loops for … -
Replied To a Post in C++: how can i create nested loops?
That explaination doesn't work for me either. Nested loops are over in the tutorial at https://www.tutorialspoint.com/cplusplus/cpp_nested_loops.htm which covers 3 or more nested loop designs. -
Began Watching C++: how can i create nested loops?
the question seems simple, but isn't. think that i have the functions list and it's parameters and the variables on vectors(inclued it's types.. it's a structure). now see these string(yes … -
Replied To a Post in C++: how create the read function?
Never worry about asking questions. I don't want to get into what are bad questions. -
Replied To a Post in C++: how create the read function?
This could be a side effect of your other changes. Such as different .h files? Why not run the code in some debugger so you can trace the code. OR … -
Replied To a Post in C++: how create the read function?
"Luke, follow the code." As I read your code it looks to me that there are two input calls being made. Your code appears to do exactly what you wrote. -
Replied To a Post in C++: how create the read function?
What I'm reading is line 11 gets something, line 12 gets something. That's two "get something"s. -
Began Watching C++: how create the read function?
i create the read(...) function for read to variables. but i need too the read()(without arguments) for press enter before continue\exit. void read() { //wait if the enter key is … -
Replied To a Post in GNU compiler: how can i compiler using command lines?
"if I use my own..." This means you either shouldn't do that or dive into how yours differs from the working version. -
Replied To a Post in GNU compiler: how can i compiler using command lines?
I'm ignoring the code dumps. I'll share how I research how to command line compile using a Google search. 1. https://www.google.com/search?client=firefox-b-1-ab&q=compiling+from+the+command+line+%22Code+Blocks%22 2. That's pretty close. I think this link is … -
Began Watching GNU compiler: how can i compiler using command lines?
i'm trying using the GNU compiler with command lines( using the ShellExecuteEx()). when i do: string FileName1="C:\\Program Files\\mingw-w64\\x86_64-7.2.0-win32-seh-rt_v5-rev1\\mingw64\\bin\\x86_64-w64-mingw32-g++.exe"; run(FileName1,"-c \"C:\\Users\\Cambalinho\\Documents\\CB\\testfolder\\bin\\Debug\\test2.cpp\""); the object file is created. these line creates the exe: … -
Replied To a Post in Need Assembly help with reversing string
While I did write in x86 PC BIOS assembly it was long ago. This is just me sharing my thoughts on your issue. First I'd change line 8 to be … -
Began Watching Need Assembly help with reversing string
I have to get from user up to 8 letter to string, and print the string in reverse. There is my code : STA SEGMENT STACK DB 100H DUP (0) … -
Replied To a Post in Asp.net Security Controls
Looking at your tagline about dot.net training is this some form of shilling? You've done such questions before and why not reveal your company next? -
Began Watching Asp.net Security Controls
What are the asp.net Security Controls? -
Replied To a Post in Not getting e-mail notification
Just me chiming in here. On that other forum I moderate, alert emails have been hit or miss for a lot of members. The ones that don't have issues are … -
Began Watching Not getting e-mail notification
Recently I realized that I not receive any email notification from DaniWeb. When I check on the User Settings, I saw this alert message > We have been having problems … -
Gave Reputation to Reverend Jim in CASE WHEN THEN error
As I recall from my old SQL days, the syntax is not WHEN fld='value' THEN var='other value' it's SELECT fld1, fld2, CASE WHEN fld2='val1' THEN 'new val1' WHEN fld2='val2' THEN … -
Replied To a Post in CASE WHEN THEN error
I'd consider rewriting this. Use the code format you see at https://www.w3schools.com/sql/func_mysql_case.asp -
Began Watching CASE WHEN THEN error
Hello i am getting an error on a CASE WHEN THEN syntax on my mySql SELECT DISTINCT u.uid,c.c_id,u.name,u.profile_pic,u.username,u.email,c.time FROM conversation c, users u, conversation_reply r CASE WHEN c.user_one = '99' … -
Gave Reputation to Dani in How many Static Init can I have?
OK, you've convinced me to search the database. A handful of 90+!! A bigger handful of 80+. Then it steadily goes down from there. -
-
Replied To a Post in Themes to an asp.net application
You seem to have done it again. What? Posited a question with good priors. Here's a google about your question. https://www.google.com/search?client=firefox-b-1&q=apply+Themes+to+an+asp.net+application -
Began Watching Themes to an asp.net application
How can we apply Themes to an asp.net application?
The End.