-
Began Watching [C#] Resizing DrawingGroup?
Hi, I am dealing with the shape drawing functions in C# and I am trying to resize DrawingGroup after drawing some shapes on it. Here is my code: DrawingGroup drawingGroup … -
Replied To a Post in [C#] Resizing DrawingGroup?
First there are prior discussions on that so I'll keep it short. When you resize you redraw the contents. Most examples have a handler that does this for the object. … -
Began Watching Generating Square Wave from Fourier Series by Using C++ (Visual studio 2013
**Task** Your task is to write a program that will draw graphs and output them as a full colour image in the .ppm file format and display them using a … -
Replied To a Post in Generating Square Wave from Fourier Series by Using C++ (Visual studio 2013
"Do provide evidence of having done some work yourself if posting questions from school or work assignments" https://www.daniweb.com/community/rules -
Gave Reputation to plus65Naomi in Lansa
Aw man... I have done some simple codings tho... But since i am hired to do lansa, I'd like to advance more -
Replied To a Post in Lansa
Naomi, I've been around the block on such systems before. It's not free. Some of the webinars might be free but tell what's up here. That is, there's always folk … -
Replied To a Post in Archiving small amounts of data--what's good? What about M-disc?
For me, it's evolution. I used punch cards at first (hey, they are still readable.) Then 8 inch floppy, some tapes then 5 1/4, 3.5 and now USB drives, sticks … -
Began Watching Lansa
Does anyone knows any Lansa Programming? -
Replied To a Post in Lansa
Did you complete the Webinars? http://www.lansa.com/events/ -
Began Watching Why Is My New Laptop So Slow And CPU So High?
Hello Daniweb Community, I've finally gotten around to doing it but can someone for the love of god please help me and give me help with fixing my slow ass … -
Replied To a Post in Why Is My New Laptop So Slow And CPU So High?
I see a LOT of updates at hp.com for this for W10. http://support.hp.com/us-en/drivers/selfservice/HP-15-Notebook-PC-series/7771410/model/8525054 hopefully gets you there but I see 10 or more items to install. Did you do that? -
Began Watching Archiving small amounts of data--what's good? What about M-disc?
Currently have relatively small amount of data to archive. Any opinions? Has anyone used M-disc? All suggestions welcome Want a technology that will still be around in at least 50 … -
Replied To a Post in Archiving small amounts of data--what's good? What about M-disc?
For now, the reigning king of archive is the printed word. At about 1 million words you can find [works that have been around for 50 and more years.](https://en.wikipedia.org/wiki/List_of_longest_novels) I'm … -
Began Watching need help to find what is missing
it gives me a arithmeticException on this line System.out.println("\nTotal = " + dSum + " - Average " + (dSum/divider) ); import java.util.*; public class Lab1A{ public static void main(String … -
Replied To a Post in need help to find what is missing
So line 70. What if divider is zero? Did you print each variable to see if that happened? -
Began Watching Create sequence diagram from use case in Rational Rose
Hi all i need a help to develop[e sequance diagram in Rational Rose or Visual Paradigm ,have use case ready.If this this is the wright place to discuss it,please let … -
Replied To a Post in Create sequence diagram from use case in Rational Rose
Skip down to "How to draw sequence diagrams" at http://www.agilemodeling.com/artifacts/sequenceDiagram.htm I think they spell it out quite well and for me pencil and paper are my first cuts at the … -
Began Watching VB ID3 Tag source
For the VB Studio 2010 software I developed, I'd like to include source code, a class maybe, written in VB (not c++) that allows me to get (and change) ID3 … -
Replied To a Post in VB ID3 Tag source
I see more tag writers at http://id3.org/Implementations For some this may mean too many choices. PS. Sorry if you want source code. You can peruse the list at the link … -
Began Watching Mips assembly program (return how many times substring appears)
Write a MIPS assembly program that reads an input file(OR that reads input text separated by endlines(\n)) and returns how many times a user specified string appears. Let me know … -
Replied To a Post in Mips assembly program (return how many times substring appears)
Hmm. I see 5 bids at https://www.freelancer.com/projects/assembly/Mips-assembly-program-read-input/ for this as of now. Looking for a discount? -
Replied To a Post in Microsoft virtual wifi - NO DHCP
@m. I have 2 Windows tablets here. A 10 and 8.1. But you are not telling all such as I'm new to Windows and not sure about how to configure … -
Replied To a Post in Microsoft virtual wifi - NO DHCP
@m. Sorry but if you can't fix that then time to replace it. I've used the Virtual Router for too many years so it's one of my go to solutions. -
Began Watching Microsoft virtual wifi - NO DHCP
Hi all, i'm creating virtual wifi using the microsoft virtual wifi, the problem is i need to specify my ip on my tablet manually, is there anyway i can fix … -
Replied To a Post in Microsoft virtual wifi - NO DHCP
While I'm unsure what you are doing, did you try the free Virtual Router from say this [link](https://virtualrouter.codeplex.com/)? I've used it before and it did what I needed. -
Gave Reputation to Suzie999 in Anyone Else Seeing DaniWeb Activity Dropping?
> I noticed that once today. The right hand side with "Related Articles" was missing. Hungry server? That's exactly what it was that made it look odd, I never even … -
Began Watching .exe has stopped working.
I'm having trouble determining what in my code is causing the message "Program.exe has stopped working." It displays the results properly, otherwise. Any suggestions? #include <iostream> using namespace std; int … -
Replied To a Post in .exe has stopped working.
I put that code on an online IDE and the code section starting at line 30 seems to be troublesome. I suggest you rewrite it to use your array and … -
Gave Reputation to Suzie999 in Anyone Else Seeing DaniWeb Activity Dropping?
Here is an image of this topic as I see it on my PC. http://postimg.org/image/x98hk6vvl/ Notice anything? It's a mobile phone image in the middle of my screen. I don't … -
Gave Reputation to rubberman in Will replacing/updating boot drive kill my system's raid0?
Sometimes a raid array has so much data that backups are not feasible, which is why I suggested disconnecting the RAID before the update. RAID0 however, is basically a mirrored … -
Began Watching Will replacing/updating boot drive kill my system's raid0?
Hi folks! Need urgent help please! I'm looking to replace my regular windows 7 boot HDD with a faster SSD and upgrading to windows 10. I also have three other … -
Replied To a Post in Will replacing/updating boot drive kill my system's raid0?
Wait, wait, don't tell me. Did you just reveal that you don't have a backup of those drives? It appears that is the first order of business. -
Gave Reputation to Gribouillis in Reverse Alphabetical Order
Isn't it an example of UUOC ? It seems to me that `sort -r -o newfile file` should work. -
Replied To a Post in Reverse Alphabetical Order
@MarkQ97 If I want to sort a file I can do this with a pipe. cat file | sort -r > newfile The sort flags are picked as you wish … -
Began Watching navigating through records on visual basic 2015 using previous and next
I am trying to work the next and previous button to read or navigate throughrecords, please help me to correct this, I'm stuck here: Private Sub Button7_Click(sender As Object, e … -
Replied To a Post in navigating through records on visual basic 2015 using previous and next
The way I read your code is that k is 1 and i is 2 on every click of the button. If you meant to increment a number, why Dim? … -
Gave Reputation to Reverend Jim in Anyone Else Seeing DaniWeb Activity Dropping?
I'm not sure if that was sarcasm or not. In the early days of personal computers the "next big thing" was "user friendly" software. Most software companies accomplished this merely … -
Began Watching Reverse Alphabetical Order
How do I sort a text file which has been listed already by size order, then take that list and put it into reverse alphabetical order? -
Replied To a Post in Reverse Alphabetical Order
How about [sort -r](http://alvinalexander.com/unix/edu/examples/sort.shtml) -
Began Watching Is there any Remote Desktop relay/proxy software for Linux?
I have had a look online but can't seem to find what I want. I can find RDP clients for Linux but that is not what I want. I am … -
Replied To a Post in Is there any Remote Desktop relay/proxy software for Linux?
Frankly this sounds like you've confused RDP and routing. I'm going to dismiss 99% of what you wrote and just write you are asking how to route using your linux … -
Began Watching assembly language
hi, I have to do a task and i have to write an assembly lanuage program to read in a series of pairs of numbers and for each pair output … -
Replied To a Post in assembly language
While I do and did write too much assembly language long ago, I've always had to tell those that I want help from what CPU this is for. In the … -
Replied To a Post in Any online video recorder no need Java to run?
@Nick_10. Say do you run Windows 10. It's built in! Watch https://www.youtube.com/watch?v=idyTmk8krKU Or just press the Windows Key + G then click record. No coding, just does it. -
Began Watching Return to main menu after selecting an option - C++
How can I return to the main menu in this simple C++ program? Thanks in advance. #include <iostream> using namespace std; int main() cout << "Main Menu" << endl; cout … -
Replied To a Post in Return to main menu after selecting an option - C++
How about a [while loop](http://www.tutorialspoint.com/cprogramming/c_while_loop.htm) starting at line 7? -
Replied To a Post in Any online video recorder no need Java to run?
@Nick_10 I read the top 3 hits and it looks not abstract to me. That is, I do write code so everything looks ready to craft your new solution. This … -
Began Watching Any online video recorder no need Java to run?
Now that Java cannot be compatible with browsers like Google and FireFox, so many tools working fine before now cannot be launched normally. I used to take Screenr to record … -
Replied To a Post in Any online video recorder no need Java to run?
This made me [research like this](https://www.google.com/#q=recording+in+html5+and+javascript). -
Began Watching return the address from a function
What are some good reasons for returning an address from a function?
The End.