-
Began Watching Asus CM5571 no power up after RAM upgrade
Hello! I have an Asus Essentio CM5571 that works just fine, but after installing even just one 4GB DDR3 PC3-12800, (recommended by Crucial scan) only the power button lights up, … -
Replied To a Post in Asus CM5571 no power up after RAM upgrade
What is the part number for your Nanya memory? Here's a [Kingston KVR1333D3N9K2/8G](http://ec.kingston.com/ecom/configurator_new/partsinfo_disc.asp?root=us&LinkBack=lmhaomhlms&ktcpartno=KVR1333D3N9K2/8G) listing for your computer. It appears to be discontinued, but replaced by [Kingston KVR13N9S8K2/8](http://shop.kingston.com/partsinfo.aspx?ktcpartno=KVR13N9S8K2/8) Also, this [Corsair … -
Replied To a Post in Going back to the same form and updating info (C#)
Just noticed this is a duplicate post: [Using { get; private set; } to return data to original instance of a form](https://www.daniweb.com/software-development/csharp/threads/492725/using-get-private-set-to-return-data-to-original-instance-of-a-form) Please don't post the exact same question under … -
Replied To a Post in Going back to the same form and updating info (C#)
Btw, what @deceptikon means is that there shouldn't be any references to "invmain" in "additem". Also, I recommend that you use a more obvious naming strategy. If you do something … -
Replied To a Post in Going back to the same form and updating info (C#)
For passing back information (data) through the use of events, see the following tutorial: [How to pass data between two forms in C#](https://www.daniweb.com/software-development/csharp/tutorials/476685/how-to-pass-data-between-two-forms-in-c) -
Replied To a Post in "Stopped Working" during routine
I made some modifications to the code above, made "inputFileEncoding" and "outputFileEncoding" properties instead of parameters, added error handling/logging capabilities, and added more documentation. Need the following imports: `Imports System.IO` … -
Replied To a Post in "Stopped Working" during routine
After reading through some of your posts, I have some suggestions: Rather than doing this: Dim propertyNo As String = "1540" Dim propertyNo1 As String = String.Empty Dim strLength As … -
Replied To a Post in Character Identification
After looking over your post ["Stopped Working" during routine](https://www.daniweb.com/software-development/vbnet/threads/492271/stopped-working-during-routine) I did some testing on the file that you posted there "20150228.txt". It appears that the symbol that you happened to … -
Began Watching "Stopped Working" during routine
Group, You've helped me write a routine that merges and formats a text file when multiple files exist. The code is as follows: If fileCount = 3 Then RestranName = … -
Replied To a Post in "Stopped Working" during routine
It appears that you may be using the wrong encoding when reading and writing the files. [File.ReadAllText Method (String)](https://msdn.microsoft.com/en-us/library/ms143368(v=vs.110).aspx) *...This method attempts to automatically detect the encoding of a file … -
Replied To a Post in "Stopped Working" during routine
Please turn "Option Explicit" on in your VS. It's not a good idea to use variables without declaring them. In VS 2008/2010: Click "Tools" in menu bar Select "Options" Double-click … -
Began Watching Saving Multi-Dimensional Array
Hey everyone, Great forum. Glad there is so much help out there. I am currently working in VS2010, Visual Basic. I am working with a fairly large array: RawData(0 To … -
Replied To a Post in Saving Multi-Dimensional Array
[Maximum Capacity Specifications for SQL Server](https://msdn.microsoft.com/en-us/library/ms143432(v=sql.105).aspx) -
Replied To a Post in Saving Multi-Dimensional Array
[SQL Server 2008 R2 Data Types](https://technet.microsoft.com/en-us/library/ms172424(v=sql.105).aspx) **nvarchar(n):** *Variable-length Unicode data with a length of 1 to 4000 characters. Default length = 1. Storage size, in bytes, is two times the … -
Replied To a Post in Saving Multi-Dimensional Array
What is the "2 GB limit" that you mentioned? Also, how did you determine the size that your data would be (in the database)? **SQL Server Express:** [SQL Server 2008 … -
Replied To a Post in Saving Multi-Dimensional Array
How are you currently reading/"importing" the XML files? Perhaps you can post one or two of the XML files as well. -
Replied To a Post in Airport weighing system
@stultuske is correct. At this stage passenger name is unnecessary. I was thinking ahead. If you continue to build on this project, in future lessons, you may need to add … -
Replied To a Post in Airport weighing system
At a minimum, it should probably include passenger name, passenger weight, and luggage weight. Additionally, you might include address, phone number, and customer id. I don't know how many people … -
Replied To a Post in Big O notation
Also search for "data structures" or "data structures and algorithms". Here's a url that showed up: https://www.cs.auckland.ac.nz/~jmor159/PLDS210/searching.html -
Replied To a Post in Making a list of Folder Names from a Network Drive
When you say "handwritten", do you mean "hard coded"? If it contains a " - " after the number, read all directory names using one of the methods in System.IO.DirectoryInfo. … -
Replied To a Post in My printer keeps eating paper!!
Have you rebooted both the computer (that's connected to the printer and the one printing to the printer) and the printer? Btw, it isn't a good idea to pull paper … -
Replied To a Post in "Stopped Working" during routine
If your program fails, how can you re-run it if you delete the original files or overwrite them? -
Replied To a Post in Reading Data From Serial Port
If you need to append to a text file, there are many examples on the web of how to do it. Search the following using your favorite search engine: *vb.net … -
Replied To a Post in "Stopped Working" during routine
It sounds like the Windows message that occurs during long running tasks. This occurs because you are executing the long running task on the main thread. The long running operation … -
Began Watching Linq to XML
Hello, I am trying to query an xml table. Here's the basic structure: <Table> <GroupPermissions> <Group GroupName="Name"> <ModuleRestricitons> <Module1> <Button1 value="False" /> </Module1> </ModuleRestrictions> </Group> </GroupPermissions> </Table> The logic I … -
Replied To a Post in How to Insert Object Type and Load Xml file in ListView?
Check out XmlSerializer to see if it meets your needs. See [this post](https://www.daniweb.com/software-development/csharp/threads/491994/linq-to-xml) for how to use it. -
Replied To a Post in Linq to XML
The following is a continuation of my above post. To serialize the XML (write the XML to file), we will create a static class called "ClsXmlHelper" and add an instance … -
Replied To a Post in Linq to XML
I haven't used Linq, but if you know how to use Linq with a List, then you should be able to use the following--it uses XmlSerializer. I see a discrepancy … -
Replied To a Post in Passing a value from one datagridView to another DatagridView
If you're creating a new "child" form each time, it isn't necessary to use a property, data can be passed using a constructor. Public Class Form2 Private _studentId As Integer … -
Replied To a Post in IErrorInfo.GetDescription failed with E_FAIL(0x80004005).
"table" is a reserved word. I don't recommend using reserved words as column names, even if permitted by surrounding it with "[]". Check all of your column names to see … -
Replied To a Post in help with datagrid refresh please
What is contained in "reader.Start()"? -
Replied To a Post in Does my CPU has support for PAE, NX, and SSE2
You can use the following utility from Sysinternals: [CoreInfo](https://technet.microsoft.com/en-us/sysinternals/cc835722) *Dump information on system CPU and memory topology* **Resource:** [How To Check If Your Processor Supports PAE, NX And SSE2 For … -
Replied To a Post in can anybody help me pls
Start by breaking the problem down. 1. Define a structure named "Ticket"--How do you define a structure in C++? 2. How do you define data items for/in a structure? Define … -
Replied To a Post in C# question
Perhaps your teacher wanted you to write the code? -
Replied To a Post in VIDEO HARDWARE
Is this a laptop or desktop? What is the brand and model number? Are you getting a blue error screen? The following may be of use: [How to resolve automatic … -
Replied To a Post in VB.NET ERROR "parameter is not valid"
The documentation I saw says that longblob is stored as byte strings. Executescalar returns a single value.Look at this one http://www.dhirajranka.com/2011/05/image-to-database-and-from-database-to-picturebox-control-c/ -
Replied To a Post in Help needed to retrieve files
Note: In the 2nd for loop above, the "sudo" in front of "tune2fs -l" may not be necessary. Also in the "alternatively" section, if you have trouble running the commands, … -
Began Watching Help needed to retrieve files
I have a client who had hired a web developer to help him take his site to the next level. This developer moved 3 of his sites to a server … -
Replied To a Post in Help needed to retrieve files
I think that the following should work (in bash shell): To enter bash shell, type "bash" at the prompt: # bash Then enter the following on one line: for i … -
Replied To a Post in Help needed to retrieve files
If fdisk -l doesn't work, try: sudo fdisk -l -
Replied To a Post in Help needed to retrieve files
Looking at the [documentation for parted](http://www.gnu.org/software/parted/manual/html_chapter/parted_2.html), I don't see that "-l" is an option. The following article may be of use: [What's the best way to get info about currently … -
Replied To a Post in "cannot create a window handle" exception
It is important to either use "Using" statements and/or call the "Close" method for unmanaged code (such as COM objects). In short, if a "Close" method exists, use it. Is … -
Replied To a Post in Can't get debugger to work
What happens when you do the following? System.out.println(9/5); You get 1. 32 x 1 = 32. What you need to do is: System.out.println(9.0/5.0); You get 1.8. When debugging computations that … -
Replied To a Post in "cannot create a window handle" exception
Also what database software are you using/accessing? -
Replied To a Post in "cannot create a window handle" exception
What OS is your computer using? Win7? What are the page file settings for your computer? You're going to probably have to post some of the code--the part that fires … -
Replied To a Post in [HELP]Updating database Error [vb.net+ms access]
Yes. -
Replied To a Post in Why scripting should be done in scripting languages
Have you looked at: [File.ReadAllText](http://msdn.microsoft.com/en-us/library/system.io.file.readalltext(v=vs.110).aspx) and [File.WriteAllText](http://msdn.microsoft.com/en-us/library/system.io.file.writealltext(v=vs.110).aspx) -
Replied To a Post in [HELP]Updating database Error [vb.net+ms access]
[ListView.FocusedItem Property](http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.focuseditem(v=vs.110).aspx) *"...Use the SelectedItems or SelectedIndices properties to obtain the selected items in the ListView control, the FocusedItem property is not necessarily selected..."* -
Replied To a Post in How do I add a variable into an object?
You didn't attach the XML document. -
Replied To a Post in [HELP]Updating database Error [vb.net+ms access]
You might get more response if you post in the VB .NET forum. Use [parameterized queries](https://www.daniweb.com/software-development/vbnet/code/445801/use-parameterized-queries-to-avoid-sql-injection-attacks)
The End.