473,908 Members | 5,094 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Latest Bytes Forum

Support forums for various IT topics. Programming languages, databases, systems, applications and more. Subscribe to a community, participate, ask, share your expertise and network.
 
0
8,865
thread by: tusharbabar | last post Aug 31 '23 by: tusharbabar
Hello friends, I am working on some tasks like reading data in an Excel file and store in a World file but in an Excel file I have mobile number data I tried to read and store it in World but got the wrong data minus in Excel number format like 9976457605 but when I read data I get data like 2147483647 format. We can do the task only using Java...
0
6,955
thread by: Rina0 | last post Aug 30 '23 by: Rina0
Hi everyone, I am trying to find the greatest common divisor (GCD) of two numbers in Python from here. I found a few different algorithms online, but I am not sure which one is the most efficient. Here is the code I have so far: def gcd(x, y): while y: x, y = y, x % y return x
2
20,226
thread by: YTAIGamer | last post Aug 29 '23 by: vipulguptaseo
I'm an experienced programmer, but new to AI. I'm trying to learn ML techniques by building a bot to play a video game. I'm documenting my process as I go. The game I'm focusing on 1st is TFT (TeamFightTactics) which is in the AutoBattler genre - Essentially, you try to build the strongest army, but there are millions of choices & pros/cons to...
11
13,809
heiro1
thread by: heiro1 | last post Aug 28 '23 by: ChristianHansen
Hi Guys! So, I am using the modulus and a rand as part of a function I am writing. Now, I understand that: rand() % 6 + 1; gives me a random number between one and six in this situation. However, I also know that rand(); gives me a random value from 0 - 32767 and srand; changes the sequence but I thought...
0
6,206
thread by: CraigA | last post Aug 26 '23 by: CraigA
Hi I want to use VCG Library (http://www.vcglib.net/index.html) in my C++ OpenGL code in Linux. According to the installation instructions for VCGLib one simply clones the repository and includes the header files. There are numerous header sub-directories and *.h files. One of the header files (dirent.h) #includes <windows.h>. I have...
2
22,124
thread by: dragrid | last post Aug 26 '23 by: Hegli
Hi All , I would like to in one query from the same table of say first names count all the occurrences of the various first names in a column called thecount and create another column called percentage that give the percentage of the count of an individual of the sum of all the counts of first names so all fname sara is 10% say select count(*) as...
0
5,806
thread by: kcodez | last post Aug 25 '23 by: kcodez
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it can inspire everyone. !(http://rzoxndoq0.hd-bkt.clouddn.com/claw.png) ### Creativity & Design 《Toy Claw》is an online version of the popular...
1
15,971
thread by: DGrund | last post Aug 25 '23 by: danp129
When I start the program, it asks me for a server. That is the only thing, I think, that is keeping me from starting the program. What in the world are they referring to when they say "server"? I am running it on my little old desktop. Server type: Database Engine I specified dave-dt-i7\sqlexpress, and some other things, but every time, I...
5
18,330
meomap0z1
thread by: meomap0z1 | last post Aug 25 '23 by: danp129
I have this table of data. Now I wanna hide the data of the "Password" column. How can I do that?. Many thanks
2
18,585
thread by: lainenickl | last post Aug 24 '23 by: AdmontYanko
I created a template that has Facebook, Twitter and LinkedIn share butotns (which share an event page). It works correctly however when I test it, however, when I do the HTML validation I get the following errors: line 582 column 171 - Warning: unescaped & or unknown entity "&url" line 585 column 62 - Warning: unescaped & or unknown entity...
0
5,771
BarryA
thread by: BarryA | last post Aug 24 '23 by: BarryA
I'm relatively new to Python and I'm trying to create a CSV file from data within my program. I've read a bit about the csv module, but I'm not entirely sure about the best approach to create a CSV file and populate it with data. Could someone guide me through the process and provide a code example? Let's say I have a list of dictionaries...
0
5,198
Gnny
thread by: Gnny | last post Aug 23 '23 by: Gnny
I successfully submitted the iPad package using appuploader, but I couldn’t find the build version in the app. What’s the problem? Uploading the iPad successfully, why is the build version empty ,Error Messages: Could not start delivery: all transports failed diagnostics
1
13,581
thread by: Arshali12 | last post Aug 22 '23 by: Rina0
$array1 = array( 'ADAIR', 'ADAM', 'ADAMINA', 'ADDISON', 'ADDY', 'ADELLE', 'ADEN', 'ADOLPH', 'ADRIANNA'
0
3,950
thread by: Arshali12 | last post Aug 22 '23 by: Arshali12
I am trying to write a Python program to find the greatest common divisor of two numbers in Python. I have been following the algorithm described here, but I am having trouble getting it to work. def gcd(a, b): while b != 0: a, b = b, a % b return a When I run this code, I am getting an error: Traceback (most recent call...
0
13,299
BarryA
thread by: BarryA | last post Aug 21 '23 by: BarryA
I'm facing an issue while developing a full-stack JavaScript application that involves asynchronous data fetching. I'm using technologies like Node.js for the backend and React for the front end. The problem arises when I try to fetch data from the backend API asynchronously and update the UI using React components. The data seems to be returning...
1
13,418
thread by: JohnDinzeo | last post Aug 19 '23 by: joelwright
I have about 6 years of graphic design and CGI experience now. And about 2 months of serious programming experience(C/C++ only). I am very comfortable with programming in C++ as it was something I had learnt back in High School. Now I want to move to creating a simple image editing software like Photoshop. A lot simpler obviously. Maybe more in...
1
16,601
thread by: SidLatthe | last post Aug 18 '23 by: Rina0
What is the difference between functional testing and non-functional testing in software development?
1
21,968
thread by: Rina0 | last post Aug 18 '23 by: iteducation92
Hello, I am currently preparing for SQL interviews and came across a fantastic resource that provides a list of SQL query interview questions. While going through the questions, I stumbled upon a few that are quite challenging, and I'm struggling to come up with the most efficient SQL queries to solve them. I was hoping some of you with more...
1
12,088
thread by: CRAZImat | last post Aug 17 '23 by: NeoPa
Received the following error when clicking the command button to send the form in XLS format to recipients: "The expression On Click you entered as the event property setting produced the following error: User-defined type not defined. * The expression may not result in the name of a macro, the name of a user-defined function, or . * There...
1
19,664
thread by: Luk3r | last post Aug 17 '23 by: 88myr1xbet
All, As I head through a major refresh I realized it was way too cumbersome to manually remove decommissioned domain controllers from the 'Name Servers' tab inside of DNS forward and reverse lookup zones. I came up with the below script to automate the removal of these records. I hope this helps others in the future. All you need to do is...
8
36,678
thread by: rssd | last post Aug 15 '23 by: EggyUen
can somebody help me. I'm trying to read some excel files but i'm always getting this error No type library matching "Microsoft Excel" found at D:\Genes_datasets\exp.pl line 4 Win32::OLE(0.16): GetOleTypeLibObject() Not a Win32::OLE::TypeLib object at C:/Perl/site/lib/Win32/OLE/Const.pm line 45. Died at D:\Genes_datasets\exp.pl line 6. i...
2
20,890
thread by: BobBerner28 | last post Aug 14 '23 by: cactusdata
Hi, This is my first post and need help with an unexpected problem. I am an experienced C language programmer but don't have much experience with VB6.0, please excuse me. I will try to describe the problem in detail and as short as possible. We bought a chinese thermal printer 55 mm paper width. I need to print barcode labels for marking and...
1
19,104
thread by: mukashingiro1 | last post Aug 13 '23 by: MerlinTheGreat
how to get date time picker control in visual basic 6.0
1
16,711
thread by: eilaw | last post Aug 8 '23 by: NeoPa
i have form with a subform, in the main form i want to lock a specific combo box after entering/choosing data. I have tried locking it in on current but i locks all my record and i can't enter a new record. please help
1
20,566
thread by: concettolabs | last post Aug 8 '23 by: vipulguptaseo
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool that can be used to create mobile, web, and desktop applications that can be used to automate tasks, improve efficiency, and increase productivity. However, in order to get the most out of PowerApps,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.