-
Began Watching Problem with working vb app not install on user pc
I am a profession (retired) visual basic programm and have devleoped an stock market application, which work just fine on my pc. Basicall, it reads file for yahoo and creates … -
Replied To a Post in VB6 sample code
As an aside, do you mind if I ask how happen to be working in VB6? Is this a legacy application? -
Began Watching VB6 sample code
Hi Guys, I am using Visual-Basic-6 The below code works fine to attach a single file into mail. objMail.attachments.Add ("C:\Zim Suite\Requests\" + Text1 + "-" + Text2 + "-" + … -
Replied To a Post in How to calculate average in visual basic code ? (matrix)
What exactly are you taking the average of - the rows, the columns, or all of the values together? -
Began Watching How to calculate average in visual basic code ? (matrix)
Hello! *I need help * I need to calculate average of the elements of the matrix in **vb.net ** 5 2 1 2 5 5 2 -2 1 5 -1 … -
Gave Reputation to vendetta_1 in What movie have you seen lately?
I was pleasantly surprised by the movie venom -
Replied To a Post in <How to solve this problem?>
The [msqli_multiquery()](https://www.php.net/manual/en/mysqli.multi-query.php) function returns a boolean value, but you seem to be expecting a query dataset ([mysqli_result](https://www.php.net/manual/en/class.mysqli-result.php)). To get the first query's dataset, you would use [mysqli_next_result()](https://www.php.net/manual/en/mysqli.next-result.php) followed by either … -
Began Watching <How to solve this problem?>
 <?php // This page is for editing a user record. // This page is accessed through view_users.php. $page_title = 'Edit a User'; include ('includes/header.html'); echo '<h1>Edit a User</h1>'; // … -
Gave Reputation to Youssef Faisal in C++ Code for simple age calculator
#include <iostream> using namespace std; int main() { int day , month, year , day_c,month_c,year_c,dd=0,md=0,yd=0; cout << "please enter your birthday date : day/month/year \n"; cin >> day; cin >> … -
Replied To a Post in How can I plot the monthly average temperature in Python?
I'll be honest with you, I know very little about statistical analysis and plotting, though I did help someone in this forum with a related plotting issue before. I did … -
Replied To a Post in How can I plot the monthly average temperature in Python?
Sorry to keep serial posting, but I also noticed the following line: 'storedquery_id': 'fmi::observations::weather::monthly::simple', Presumably, there is a form of this parameter which can specify a daily query rather than … -
Replied To a Post in I want to know how to rotate this two dimensional array clockwise 90 degree
The code doesn't do what you think it does. It generates a 3x3 array and then populates it with random values. Frankly, it isn't very good code in general, but … -
Began Watching I want to know how to rotate this two dimensional array clockwise 90 degree
Hello. I found this code on google and I didn't manage to find a way to get another output of 90 degree clockwise rotated array. Could you please help me? … -
Replied To a Post in How can I plot the monthly average temperature in Python?
I've done some more experiments, and one of the things I've learned is that FMI only has records for the first day of each month, for some reason. This code … -
Replied To a Post in How can I plot the monthly average temperature in Python?
I'll post the code I've been working on myself, but I am not sure if it really is going where you want it to. One thing I want to ask … -
Replied To a Post in How can I plot the monthly average temperature in Python?
Please ignore the last comment in the previous post, I misunderstood what the `pest()` function is actually doing. -
Replied To a Post in How can I plot the monthly average temperature in Python?
To elaborate on what I was saying earlier, I have tried running the code, and came up with problems. I was able to get the un-pickled list converted to a … -
Replied To a Post in How can I plot the monthly average temperature in Python?
I'm afraid not, no. -
Replied To a Post in How can I plot the monthly average temperature in Python?
I'm still stuck on handling the `DataFrame` you are reading in. As I understand it, `pd.read_pickle()` returns a list: [{(64.93503, 25.3392): {'rrmon': ('31.2', '1960-01-01T00:00:00Z'), 'tmon': ('-11.6', '1960-01-01T00:00:00Z')}, (65.03371, 25.47957): {'rrmon': … -
Replied To a Post in How can I plot the monthly average temperature in Python?
Is the function `pest()` in a different source file, or the same one, and in either case, where does it get called? I did copy the source code (into two … -
Began Watching How can I plot the monthly average temperature in Python?
Hello, I wrote this code in order to obtain a series of monthly weather observations at Helsinki for a period from 1960 to 2020 and then I saved the data … -
Replied To a Post in How to restrict input?
If you don't mind me asking, how are you running this? I am assuming that you are in a course on assembly language (or at the very least trying to … -
Began Watching How to restrict input?
Hello, could anyone help me how can I make so the user could only enter numbers between 0...9 and letters a...f (A...F) on input? I have a code like this … -
Replied To a Post in how to define variable as numeric
I am no expert on either PHP or MySQL, but I am fairly certain that that won't work, at least as you describe it. You would have to do a … -
Began Watching how to define variable as numeric
> Hi, please advise how to resolve. I want to print the receiptno on a receipt and it prints "receiptno". I don't know how to define "receiptno" to use the … -
Replied To a Post in Create buttons on kivy automatically with different names using python
I would recommend copying and pasting the code in the forum using the Code Block (`</>`) button, rather than posting a screen shot. I get that in this case you … -
Began Watching Create buttons on kivy automatically with different names using python
I'm trying to create buttons with a for, but I want every button to have a different name, so I can later differenciate them and use them easily. As you … -
Gave Reputation to Junjie_1 in Save form to image
For Module: Private Declare Function BitBlt Lib "gdi32" _ (ByVal hDestDC As Long, ByVal X As Long, ByVal Y As Long, _ ByVal nWidth As Long, ByVal nHeight As Long, … -
Replied To a Post in Guys i really need help with this assignment as im really out of ideas
To speed things along, I'll save the OP the trouble of posting the code here: #include <stdio.h> int main() { // Displaying menu for customers printf("\n%115s", "GEBU BAKERY SHOP"); printf("\n%121s", … -
Replied To a Post in Guys i really need help with this assignment as im really out of ideas
If I might be blunt: what *idiot* taught you to use `goto` like that? The `goto` statement and labels do have some legitimate uses. These are not those. It is … -
Began Watching Guys i really need help with this assignment as im really out of ideas
Good day everyone. My assignment is to create a point of sale system for a bakery shop. I have done all the coding up to the part when i have … -
Replied To a Post in *My pygame window is black until i close it at the end
We'd really need to see more of the code than you've posted, with the code for rendering and refreshing the window. As things stand, we don't even know what windowing … -
Began Watching *My pygame window is black until i close it at the end
so i already posted three months ago and only reviwed my coded recently , still dotn know what is wrong . the code is quite simple however something keeps going … -
Replied To a Post in ARM Assembly Input number and character. Output Number and character
Which assembler are you using, and which specific platform (e.g., Raspberry Pi, Apple M1, etc.) is this to run on? While the use of the C library routines makes this … -
Began Watching ARM Assembly Input number and character. Output Number and character
I cannot get the character to input and it does not output. .equ READERROR, 0 @Used to check for scanf read error. .global main @ Have to use main because … -
Replied To a Post in I have issue adding a sorting function, please guide?
Has the course (or any previous ones) discussed sorting algorithms, yet? Given the vagueness of the instructions, something very simple such as Bubble Sort or Gnome Sort should be sufficient, … -
Began Watching I have issue adding a sorting function, please guide?
1. Write a program that would print the information (name, year of joining, salary, address) of employees by creating a class named 'Employee'. 2. Create a function in the Employee … -
Replied To a Post in arrays and strings in c
>what does dest[i]=src[i] mean (Note that I corrected your original, incorect line of `dest[I] = to src[]`, which is syntactically wrong and semantically nonsense.) It copies the current `i` element … -
Began Watching arrays and strings in c
can someone explain to me this code and what the output should look like?, is there going to be two strings? and what does dest[I]=to src[] mean, is string bar … -
Replied To a Post in Fork() system call prime numbers
Dumping an assignment to a post without at least saying that is what you are doing isn't the most polite way to start a conversation, especially if you don't show … -
Began Watching Fork() system call prime numbers
Write a C or C++ program that outputs prime numbers. This program should work as follows: The user will run the program and will enter a number on the command … -
Replied To a Post in I am getting an error like : no match for 'operator >>'.
To elaborate on RProffitt's answer: the error message is saying that you are trying to read the whole array `phy` rather than a specific (indexed) element of `phy`. The error … -
Began Watching I am getting an error like : no match for 'operator >>'.
#include<iostream> #include<conio.h> using namespace std; struct marks{ int phy[10]; int math[10]; int chem[10]; }; int main(){ struct marks m[20]; int i,n; cout<<"Enter the number of students : " << endl; … -
Replied To a Post in ascendingorder14
Dumping an assignment to a post without at least saying that is what you are doing isn't the most polite way to start a conversation, especially if you don't show … -
Began Watching ascendingorder14
Write a program for the below mentioned question. Create three variables : a,b & c In the code, assign them some random integer values. Print the three numbers in ascending … -
Replied To a Post in why the exception
Actually, I suspect that the opposite is the problem: the object was declared, but never initialized, and thus has a value of `Nothing`. -
Began Watching why the exception
This code causes an exception: dim box as new mult() box.show <-------- cannot access a disposed object -
Replied To a Post in Why would a script work for the developer, but not for the client?
One more possibility (of many) that comes to my mind is that the environment of the cloud server differs from that of the development system, and that there is either … -
Began Watching Why would a script work for the developer, but not for the client?
I just hired a developer in India to write an API upload script for my cloud server. He just finished it and it works fine for him, but I've tried … -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
I did notice that editing the URL only set it to "about:blank", but that doesn't seem to be what you actually were referring to.
The End.