April 16th, 2013 09:48 AM
Can you hard code the polynomials or is it supposed to take those as input? If you can hardcode then create an N dimensional array of all integers (with a reasonable limit):
(0,0,0)
(0,0,1)...
March 22nd, 2013 04:45 PM
What are the min/max "words" in the AuthorSearchDict key fields (i.e. FirstName, MiddleName, LastName, etc. etc.) Maybe 2, 3 or 4? Take your input string and create sequential "names" from the...
March 21st, 2013 10:19 AM
What are the events you are using to sense data? I would suggest creating some sort of log and have many possible events write to that log to see if 1) any one of them stops & 2) find the one that...
February 28th, 2013 10:04 AM
February 26th, 2013 09:10 PM
Create intermediate forms and open/close them in a timed sequence
February 16th, 2013 01:23 PM
This is kind of tacky too but try:
Try
InitializeDatabase()
Catch
' nothing
End
Maybe you won't get the error.
February 13th, 2013 03:00 PM
Here's a shot. Your program will read the XML file from the file share (z) when it loads. As with any program, you will control when it saves it's data to the file share. The program will also need...
January 30th, 2013 08:23 AM
Here are some chunks of stuff I've used before:
Dim oExcel, oBook, oSheet As Object
oExcel = CreateObject("Excel.Application")
oBook = oExcel.workbooks.add
...
January 22nd, 2013 11:35 AM
Get a compiler (say Visual Studios). Make up a project (say the least coins exercise). Give 'er a run. Ping here if you get stuck.
January 22nd, 2013 11:31 AM
I couldn't find an alternating row feature in the Tablix but you can use an expression to set the background for each row. If you truely want alternating then you will probably have to pass some sort...
January 22nd, 2013 11:17 AM
it is an advanced high school
January 20th, 2013 11:48 AM
use the same events, have the routine resize the image gradually, say 10% at a time where "time" is up to you.
January 15th, 2013 11:29 AM
December 11th, 2012 03:57 PM
You are receiving a compile error, not a runtime error. The error has to do with the fact that karateDataSet has not been included in your Form1 class. I don't work with code when building forms so...
December 11th, 2012 03:24 PM
You can Add columns to the DGV programatically. That way you can dictate the HeaderText, DefaultCellStyle, etc. The important thing, when you are adding a column, is to set the DataPropertyName. This...
December 10th, 2012 01:28 PM
Assign the value of the InputBox to a string. Check the string to see if it IsNumeric.