-
Began Watching can anyone help me to make an app
can anyone help me to make an app -
Replied To a Post in Help with homing missile I have one part working
While I have some other thoughts about how to improve this code, my immediate thought regarding the left/right and up/down movements of the missile is something like so: if (y.Left … -
Began Watching Help with homing missile I have one part working
Making a scrolling space shooting video game in C# where the player will fight one on one with their opponent. I was able to figure out how to make the … -
Replied To a Post in How do I convert a SQLITE day number to a date string
The date format in question appears to be from MS Excel, which uses 1899-12-30 for the Date Zero; Excel in turn seems to have taken this from Lotus 1-2-3, back … -
Began Watching How do I convert a SQLITE day number to a date string
I have a SQLite database that for some insane reason stores dates as the number of days since 1899-12-31. I want to create a view that will display the date … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
> i never used git on a developer base :( wouldnt know how to use it OK, fair enough. It wouldn't necessarily have to be Git, but if you don't … -
Replied To a Post in how to paste program
Ideally, you don't use a thirty year old compiler and IDE in the first place, especially since it won't work on any modern version of Windows (without resorting to something … -
Began Watching how to paste program
how to paste program in turbo c++ ? -
Replied To a Post in How to convert c++ code to assembly language
You mean the compiler? Which one do you need - [GCC](https://gcc.gnu.org/), [Visual C++](https://visualstudio.microsoft.com/vs/features/cplusplus/), [LLVM/Clang](https://clang.llvm.org/), some other one? There are several, but the three I mentioned are the most common ones. … -
Began Watching How to convert c++ code to assembly language
Please share the converter of c++ into assembly language. -
Replied To a Post in Create Several Frames From A List Populated By A Txt
This may be presumptuous of me, but would you like me to set up a public repo for your code on my Github account? That may make sharing the code … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Cuuld you please give me the current version of `json_dumps.txt`? It looks as if you've changed it somewhat. I know I've harped on this a lot already, but this is … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Does this do anything, and if so, what? Do you get any errors when you try it? To help more, I'd have to see how this fits into the rest … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
OK, this is odd. When I use the new `Confs/json_dumps.txt` file, it runs fine on my end. I don't know why it isn't working for you. Have you checked to … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Could you post the current version of `Confs/json_dumps.txt`, please? -
Replied To a Post in Solve this problem in C++
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 Solve this problem in C++
Write a class template that inputs the index of the array and displays the value in the specified index -
Replied To a Post in Create Several Frames From A List Populated By A Txt
I've fixed several issues with my earlier code, and have a version that behaves more or less as I think you want it to. Let me know if this is … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
OK, this change may be a step too far, but I've simplified (or at least I see it as simpler) the banner section for the first tab. I've made a … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
I also added this function which replaces the earlier `packComparisonData()`. def packTabs(tab_set, test_file): """Destructures a list of lines into a collection fo TabEntry objects, each of which containing a list … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Oddly enough, I have continued experimenting on this, and expanded on the earlier work by replacing the ad-hoc data structure used previousl.y with a set of classes (including two types … -
Replied To a Post in Getting error message Exception: Attempt to assign property .... on null
It isn't that `$winner_list_temp` is `null`; it is that while it is declared as an `array`, you haven't populate that array yet. It is the `lottery_draw_id` member of `$winner_list_temp[$i_key]` that … -
Began Watching Getting error message Exception: Attempt to assign property .... on null
When I run below code, I am getting this error: Severity: error --> Exception: Attempt to assign property "lottery_draw_id" on null C:\xampp\htdocs\lsnew\application\controllers\Admin.php 396 winner_list_temp is declared but how come it … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
OK, I am still looking into this, and while I haven't really made much progress, one thing that strikes me is that you could use a comprehensive data structure to … -
Replied To a Post in How can I create an automatic numerical progression in HTML ...?
To the best of my knowledge, there's no way to do that purely in HTML and CSS - HTML is a markup language, while CSS defines the styling of said … -
Began Watching How can I create an automatic numerical progression in HTML ...?
HI!! How can I create an automatic numerical progression from 0 to 500,000 in html? The code I was given is this: <p><span style="font-family: Calibri, sans-serif;"><span style="text-shadow: rgba(255, 255, 255, … -
Replied To a Post in Can anyone help me.
These two lines if (strcmp (day,"Monday")|| (day, "Tuesday")|| (day, "Wednesday")|| (day, "Thursday")|| (day,"Friday")) and else if (strcmp (day, "Saturday")|| (day,"Sunday")) are both wrong. They should read if (strcmp (day,"Monday")|| strcmp … -
Began Watching Can anyone help me.
When ever run this program, I can't get the total price right and I tried it so many times but failed. Can anyone help me where or how to fix … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
OK, so I have some changes to the code, but they are still rather kludgey. I can keep working on it, but I think it should do what you want … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
So it is basically a program to test JSON queries? Or is there something more to it? -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Even seeing it run, I'm still not certain what the program is for. Could you elaborate on what it is meant to be used for, please? -
Replied To a Post in Create Several Frames From A List Populated By A Txt
OK, thank you for those. I'll have to go over this to see what I can recommend. -
Replied To a Post in Create Several Frames From A List Populated By A Txt
OK, I have the whole program now, but there's still a problem. There are five different files which it reads from, three of which are PNG images. * img/run.png * … -
Gave Reputation to NagarjunaMazza in sorting linked list
Satya Chowdary My logic is the bests one . I sorted the list by radix sort . #include <stdio.h> #include <stdlib.h> #include <time.h> typedef unsigned int Mylucky8; #define TRIES 10000 … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
OK, that helps, though now I guess I would need an example of the input to `gera_forms()` in order to test the whole function. Sorry to keep hassling you about … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
> Can you explain what root does? im not getting it :( tabmain1 the the root i guess, its tabControl = ttk.Notebook(tabmain1) Well, `root` is a commonly used name for … -
Replied To a Post in Convert semi diode to c#
I believe this would be more readable as: # class description SemiDiode +ForwardV {get; set; }: Double +ReverseV (get; set; }: Double +BreakdownV {get, set; }: Double +SemiDiode() # default … -
Began Watching Convert semi diode to c#
1.2 Convert the following classes to valid C# classes: SemiDiode + ForwardV {get; set; }: Double +ReverseV (get; set; }: Double +BreakdownV {get, set; }: Double + Semi Diode) + … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Hmmn, unfortunately, I can't find a copy of the library `xpto.makeReport` you are using for writing the report forms to, so I can't test the program as a whole. However, … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Usually, with a class you would have the class in a separate file from the rest of the code, and `import` the class so you can use it. But that's … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
> this doesnt work still get error tab1 is missing You would access it with `tab[1]` rather than `tab1`. In my experience, most of the cases where you want to … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
I dont know iif it helps any, but this is the class (and a brief test program) I had initially come up with when I misconstrued your question; you may … -
Replied To a Post in .py page just for variables
Overall, in Python (and nearly every other language) you generally want to use global variables as little as possible, and share variables between functions and methods by passing them as … -
Replied To a Post in Software system
Why yes, yes I can. However, this sounds an awful lot like a homework assignment or, more likely, a test question. -
Began Watching Software system
Can you give some sample of a title of a software system? -
Replied To a Post in Please I need help with this project
It seems like a reasonably straightforward homework assignment. What are you stuck on? -
Began Watching Please I need help with this project
Define a class Pairs with two integer data members, f and s, where f represents the first value in the ordered pair and s represents the second value in an … -
Replied To a Post in .py page just for variables
> can i put my vars in a txt like this: var1=something1 var2=something2 > and access them from python? Would it be acceptable to use a Python file with these … -
Began Watching .py page just for variables
Im new to python , trying to update my self from the time of ASP Classic. In that time i use to have a page for vars that i included … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
Would a list of tab objects be suitable? Given the `tabN` format. using a list instead seems an obvious improvement (since you would be able to iterate through the list …
The End.