-
Replied To a Post in help for coding
>You are going to build a simulator for a Bakery Business No. **You** are going to build it. @james - that's "Mad" world. -
Edited Dynamic allocation Of 2D arrays
add to source, compile and run. very brief example usage (basically just the calling syntax) included in the commentstwo functions; the first dynamically allocates a 2D array with a user- … -
Replied To a Post in Evaluate my code please!!
Start with the axiom "computer code is for humans to read and only incidentally for computers to execute" and have another look at your code. 1. it is poorly formatted … -
Replied To a Post in how to add more questions on notepad++
The reason you are finding it difficult is because this is a dog's breakfast of a piece of code. That is not the way to write a program that runs … -
Edited undefined index username and password
hi... this is my index page... include("config.php"); session_start(); if($_SERVER["REQUEST_METHOD"] == "POST") { // username and password sent from form $myusername=addslashes($_POST['username']); $mypassword=addslashes($_POST['password']); $myusername = stripslashes($myusername); $mypassword = stripslashes($mypassword); $sql="SELECT id FROM … -
Edited vbScript Implementation of FolderWatch
An often underused control from vb.Net is the FolderWatch control. But sometimes you need to throw something together that doesn't need a fancy GUI. Or perhaps the task seems too … -
Created vbScript Implementation of FolderWatch
An often underused control from vb.Net is the FolderWatch control. But sometimes you need to throw something together that doesn't need a fancy GUI. Or perhaps the task seems too … -
Replied To a Post in Bar code
Do you have a question? -
Replied To a Post in Jokes
A few years ago Lewis Black did some schtick about how Michael Jackson had become his own punch line. Trump is there now. Unfortunately with Trump as the punch line, … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Created Code formatting display bug?
I just posted a code snippet [here](https://www.daniweb.com/programming/code/515601/vbscript-implementation-of-quicksort) and noticed a couple of problems. 1. No matter how I try to fix it, the frst line refuses to display properly indented. … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Edited vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Created vbScript Implementation of QuickSort
Over the years I've seen a lot of discussion (and several implementations) of the Quicksort algorithm. Most of what I have seen, unfortunately, lacks sufficient commenting as well as meaningful … -
Replied To a Post in Anyone know where bungle4 wireless profile comes from?
It's deleted netsh wlan delete profile name=bungle4 I take daily images so if anything stops working I can always go back. -
Replied To a Post in Tortoise and hare problem?
Are we supposed to guess what kind of problem you are having? -
Replied To a Post in To output an "X" pattern on the screen
Start with pseudo-code. If you were trying to tell someone how to draw the x, what would you say? If you can't figure out the general case (length=n) then start … -
Replied To a Post in Churches Projects
You won't find anyone here to write it for you. If you want help with problem areas then you can post your questions but you have to show proof of … -
Edited vb6 listview,
hi sir, i want to ask and learn also, i have listview(listtransaction) and i want to get the daily or monthly income and put it into the label ,how? i … -
Replied To a Post in vb6 listview,
Show us the code you have so far. ANd please remember to post programming questions in the programming section. -
Replied To a Post in HP ProBook Error
How is the error being reported? -
Replied To a Post in Anyone know where bungle4 wireless profile comes from?
When I click on the wireless tool in the taskbar I see 8 hotspots including my own (mynet) . I do NOT see bungle4. And I only have netsh profiles … -
Created Anyone know where bungle4 wireless profile comes from?
Does anyone know the function and origin of the wireless profile, bungle4? I've been cleaning up my numerous vbScript files and when I tidied, then tested Metered.vbs, it produced the … -
Replied To a Post in Algorithm
You haven't said what class this is for. I presume the class is not associated with any particular language. If that were the case, there would be no choice. The … -
Edited Removing duplicates from INNER JOIN of two tables
OK.. I'm trying to write a query which combines data from two tables. (I'm pretty novice at SQL Queries, so bear with me!) However, I want to exclude duplicate data … -
Undeleted a Post in Trouble with a Python Numerology Program (using Python Lists)
Take out the blank at the beginning of alph and ignore all characters not in alph. -
Deleted a Post in Trouble with a Python Numerology Program (using Python Lists)
Take out the blank at the beginning of alph and ignore all characters not in alph. -
Replied To a Post in Trouble with a Python Numerology Program (using Python Lists)
Take out the blank at the beginning of alph and ignore all characters not in alph. -
Replied To a Post in Arduino
Nobody can help you with the little info you have provided. Can you post the code you are running? -
Edited This is for my baby thesis. How to add a Category with database
Private Sub btn_addc_Click() On Error Resume Next If Me.txtAddc.Text = "" Then MsgBox "Please fill up", vbInformation, "ADD CATEGORY" Exit Sub End If If Me.btn_addc.Caption = "ADD" Then If rs.State … -
Replied To a Post in Export ListView to Excel Spreadsheet
I no longer have MS Office installed so I can't test an example to post. Anyone else? -
Replied To a Post in Please i required a program in pascal language as i am starter showing res
Please read [this thread](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question) for suggestions on how to post meaningful questions. If you'd read the [Posting Rules](https://www.daniweb.com/welcome/rules) you would know that you won't get someone here to write your … -
Edited C-strings
I've been assigned in my class to do this exact same problem: <snip> I'm wondering on how to get started. Any help would be appreciated. I know how to use … -
Replied To a Post in Android remote for pc
We have seen many users asking for suggestions for a thesis topic or comp sci project or whatever. First of all, we do not know your skill level so we … -
Replied To a Post in whats .org 100h?
And your point is? -
Replied To a Post in Converting from 32-bt to 64-bit in C
From a purely non-technical point it seems to me that the problem is you don't know what constitutes "correct" output. >The first issue is that on both the 32-bit and … -
Replied To a Post in Will a true AI have a net positive or negative impact on society?
>far-fetched? With today's technology, yes. In 20 years? Who knows. By the way, have you ever read [Colossus](https://en.wikipedia.org/wiki/Colossus_(novel)) by D. F. Jones? It was the first book of the Colossus … -
Replied To a Post in Will a true AI have a net positive or negative impact on society?
By the way, you are correct that exponential curves always eventually plateau but the question should be more "where does that plateau occur?" Or perhaps the curve is not, in … -
Replied To a Post in Converting from 32-bt to 64-bit in C
I can't say anything useful without knowing the declared types of the variables in the missing include files. The variable names are terse and cryptic (ky, kky, etc.) and the … -
Replied To a Post in Will a true AI have a net positive or negative impact on society?
>microchips are currently limited by the physical laws of heat dissipation rather than manufacturering or material limitations I think we still have a long way to go re heat dissipation. … -
Edited total+=sum(k) TypeError: unsupported operand type(s) for +:'int' and'str'
class subjectGradeBook(object): def __init__(self): self.grades={} def addStudents(self,name): self.grades[name]={} def reportGrade(self,name,subject,grade): k=self.grades[name] gradeList=k.setdefault(subject,[]) gradeList.append(grade) def averageGrade(self,name): k=self.grades[name] total,count=0,0 for grades in k.values(): total+=sum(k) count+=len(k) return total/count book = subjectGradeBook() book.addStudents('AlbertEinstein') book.reportGrade('AlbertEinstein', … -
Replied To a Post in Need help writing text file into listview with 8 columns
I suggest you isolate your database read/write code in separate modules. That will make it easier to transition from one data source to another. The only code you would have … -
Edited Will a true AI have a net positive or negative impact on society?
I've been listening to various debates on the potential impact of AI and the two sides seem to boil their arguments down to 1. AI is dangerous because it will … -
Created Will a true AI have a net positive or negative impact on society?
I've been listening to various debates on the potential impact of AI and the two sides seem to boil their arguments down to 1. AI is dangerous because it will …
The End.