-
Began Watching I need some help with C error
codeblocks-ld-exe-cannot-find-lbgi-error-message -
Replied To a Post in Select every 5 numbers random
Let's alter the deal: With your last reply it appears you want: - Given an array of values which have groups of 5, randomly select an index value of N … -
Replied To a Post in Reading CSV file using C++
Maybe this is easier than it sounds. The CSV lines don't split over a CR/LF (see https://en.wikipedia.org/wiki/Comma-separated_values ) so for this assignment there appears to be no need to parse … -
Began Watching Reading CSV file using C++
Create a c++ program that reads a CSV file and prints the rows at even positions. For example, if the CSV file has 10 rows, print rows 2, 4,6, 8 … -
Replied To a Post in Select every 5 numbers random
With your last reply it appears you want: - Given an array of N values, randomly select an index value of N-5 and return 5 values from the array starting … -
Replied To a Post in Select every 5 numbers random
I've written so many random pickers in the past but here, these sentences mean different things. 1. I would like that my program selects every 5 numbers randomly. 2. I … -
Replied To a Post in how to convert python to vb.net
Duplicate of https://www.daniweb.com/programming/threads/535148/how-to-convert-to-vb-net#post2278290 1. Please continue at your first post and as noted, the formatting means we can't read this. In Python, format matters. 2. What is a TV checker? -
Began Watching how to convert python to vb.net
import threading,time,sys try: import requests except: print("Please install requests module!") sys.exit() path=input("File (example: file.m3u) => ") out=path+"_out.txt" try: with open(path, 'r') as file_in: lines = file_in.read().splitlines() except: print("File error or … -
Replied To a Post in Booth's algorithm
Would you mind if I reduce your duplicate postings? -
Began Watching Booth's algorithm
Multiply (-17) and (-5) using Booth's algorithm -
Replied To a Post in Select every 5 numbers random
Still unclear. If the first random number is the last entry of the array, what's the rule to pick the next? Also, "scope creep." Once we get our first set … -
Replied To a Post in Select every 5 numbers random
I'd like to help but I don't understand what you meant by "every" in this line: > I would like that my program selects **every** 5 numbers randomly. To me … -
Began Watching Select every 5 numbers random
I have an array list that looks like this. 8.1,6.5,4.4,3.2,1,8.9,5,1.4,0.1,1,8.7,6.2,4.3,3.2,3 I would like that my program selects every 5 numbers randomly. for example to select 8.1,6.5,4.4,3.2,1,8.7,6.2,4.3,3.2,3 as you can see … -
Replied To a Post in Strange (Pun2) RPC Problem. (With Error msg that doesn't show up on google
Seems not only can there be what issue in the first link but you can add the same component twice and get the same error. Remember I'm not there to … -
Gave Reputation to Ed_279 in Unique444: Need to change a script to access Adobe picture.
I changed the position of the header(...) lines to be above file_get_contents(...) and I think fixed the use of the file name (filename=".$file) but the image is the same. I … -
Replied To a Post in Strange (Pun2) RPC Problem. (With Error msg that doesn't show up on google
I received a message with your comment text but it's not in the forum. Can you link to your question in the Photon forum? What I read here and there … -
Replied To a Post in Strange (Pun2) RPC Problem. (With Error msg that doesn't show up on google
This looks similar to https://forum.photonengine.com/discussion/14626/rpc-problem-with-photonviews Even if it's not, you should ask in that forum as it's more likely to have fellow developers there. -
Began Watching Strange (Pun2) RPC Problem. (With Error msg that doesn't show up on google
Hi all, I'm getting a strange error every time I try to send a score update using an rpc using Photon Unity Networking (And Unity3d). Here is the Error. RPC … -
Replied To a Post in Hi everyone, I'm william66876
Odd, are you also Balakrishnak? I found some spambot report with that name as well. -
Began Watching Hi everyone, I'm william66876
I am a network Engineer professional. -
Gave Reputation to Reverend Jim in how to convert to vb.net?
Keep in mind that indentation in Python is critical to understanding the program flow. The way this code was posted (without indentation) renders it useless. -
Replied To a Post in How can I change a .php file so that I see images
What is in the script "listscores.php"? -
Began Watching How can I change a .php file so that I see images
I run the bridge game on a Monday evening and just recently I brought in a card dealer so the computer can select the cards and deal them into 4 … -
Replied To a Post in Which antivirus do you use the most?
What comes with W10. But I don't use torrents, cracked apps or such. -
Began Watching Which antivirus do you use the most?
Which antivirus do you use the most? -
Replied To a Post in how to convert to vb.net?
Rather than me trying to reverse engineer, my question is: What does this do? -
Began Watching how to convert to vb.net?
import threading,time,sys try: import requests except: print("Please install requests module!") sys.exit() path=input("File (example: file.m3u) => ") out=path+"_out.txt" try: with open(path, 'r') as file_in: lines = file_in.read().splitlines() except: print("File error or … -
Gave Reputation to JamesCherrill in General Information
What exactly is the point of this? How many people are going to do a clean install of WIndows 10 on a 32 bit machine in 2021? To quote Microsoft: … -
Replied To a Post in General Information
Keeping in mind that folk I encounter are mostly into PCs and more, even then over half of them don't care to look at what you wrote about. Instead they … -
Began Watching General Information
Check these things on the PC where you want to install Windows 10: 64-bit or 32-bit processor (CPU). You'll create either the 64-bit or 32-bit version of Windows 10 that's … -
Replied To a Post in Visual basic code for online bookstore
Per topic: This may be a first. I've yet to find an online store where the code or backend was in Visual Basic. After you get this working you may … -
Began Watching Visual basic code for online bookstore
These are the topics relevant to my field of study -
Replied To a Post in Reentrancy is not allowed: function 'Lcd_Cmd' called from two thread
Another observation. Look at the array recive[]. Now let's say a character arrives in this array. How does recive[0] get cleared? Seems like future trouble from my reading. -
Replied To a Post in Reentrancy is not allowed: function 'Lcd_Cmd' called from two thread
It's been years since I've been on the MicroChip PIC but it appears your code call to Lcd_cmd() is the issue. This is very similar to the discussion at https://forum.mikroe.com/viewtopic.php?t=24108 … -
Began Watching Reentrancy is not allowed: function 'Lcd_Cmd' called from two thread
Hi, i wanted to see if someone can help me, im new on this so i dont understand very good, any way, im trying to make a pic that show … -
Replied To a Post in Can i have free robux in roblox app?
No. All the free robux systems I see are scams. Want to get scammed? Install free robux apps. -
Began Watching Can i have free robux in roblox app?
can i have free robux in roblox app? -
Replied To a Post in ms sql database connect asp.net api
Still no mention of what you tried and what language in use. "Through the Internet" also means the server's admin would reveal the connection details, tell you which port to … -
Gave Reputation to Husoski in How to draw Circle in C Using Grahpic
Try changing line 1 to: #include <graphics.h> In C, it's conventional to use ".h" as a suffix for a C header file; and that is the name of the Borland … -
Replied To a Post in Complex Number In C++
Which compiler is this? Why I ask is that iostream is a header file that contains functions for input/output operations ( cin and cout ). -
Began Watching Complex Number In C++
class Complex { private: int a,b; public: set_data(int,int); show_data() { std:: cout<<"\na="<<a<<"\n"<<"b="<<b; } }; Complex::set_data(int x,int y) { a=x;b=y; } main() { Complex c1; c1.set_data(3,4); c1.show_data(); } Error: error: 'cout' … -
Replied To a Post in Reasons that would deam graphics design vital in the daily life
Let's step back a moment here. The use of graphics in daily life could be signs: 1. The STOP sign. 2. Poison signs. 3. Other danger signs. Such as "Cliffs … -
Began Watching Reasons that would deam graphics design vital in the daily life
Art and design -
Replied To a Post in ms sql database connect asp.net api
The question here is unclear. No mention of what you tried and in what language. -
Began Watching ms sql database connect asp.net api
I want connect microsoft sql server database using servername,username,password,port number and service name to asp.net api 2019. This code segment I'm using SqlConnection con = new SqlConnection(@"server=10.d.13.2q0; database=sdssdsd; Integrated Security=False; … -
Replied To a Post in convert pseudo to python code
Those are instructions rather than pseudo code. Check out this free tutorial at https://www.cosc.canterbury.ac.nz/tim.bell/dt/Tutorial_Pseudocode.pdf -
Began Watching convert pseudo to python code
for(#iterations) solve non linear solution get new flux klinkages solve LD and Lq solve new Id and Iq if (abs(Id_new - Id_old) < 0.01) break else put in the new … -
Replied To a Post in How to draw Circle in C Using Grahpic
Line 4 looks to be an issue. See what they used at https://www.geeksforgeeks.org/draw-circle-c-graphics/ -
Gave Reputation to Dani in Exact replica android app of a WebSite
Yes, I don't remember what it's called, but there is a way to directly convert a website into an app. Ignore me when it comes to this. However, I think … -
Replied To a Post in How to draw Circle in C Using Grahpic
Tell a big more. Which compiler, OS and what else we would need to know to duplicate this issue.
The End.