-
Replied To a Post in run.exe is absent on my windows
There is no `run.exe` file in Windows. -
Replied To a Post in Bad Grammar
The best technical writing teacher I ever knew was [Ron Blicq](http://www.ieeeghn.org/wiki/index.php/Oral-History:Ron_Blicq). I was lucky to be able to take two courses from him: Technically Write and Administrattively Write. The first … -
Replied To a Post in Auto complete text box
I can't advise because I don't know what your custom source is. If you are using Access instead of MS SQL just use OleDb instead of SqlClient. -
Gave Reputation to Marialyn in Library system
Please I need a codes for library system,could anyone can will with this? -
Marked Solved Status for Syntax error (missing operator) in query expression 'Name'.
Does anyone know this error : Syntax error (missing operator) in query expression '***Budy Soleman***' **<--( this is content of textbox.text)** This is my code in VB.net with ms-access Private … -
Replied To a Post in Silencing Users
Almost as annoying are users who ask questions that are easily answered via search. -
Replied To a Post in project
If you have no idea how to get started then you should either * Pay more attention in class * Get a vb.net book (I suggest a Microsoft Step By … -
Replied To a Post in Auto complete text box
Or using Linq you could do Dim con As New SqlConnection("Server=.\SQLEXPRESS;Database=PUBS;Trusted_Connection=yes;") Dim dat As New DataTable Dim daa As New SqlDataAdapter("SELECT au_lname FROM authors", con) con.Open() daa.Fill(dat) con.Close() txtSample.AutoCompleteCustomSource.AddRange((From row … -
Replied To a Post in Auto complete text box
Iterate through the dataset and add the values to the source collection as in Dim con As New SqlConnection("Server=.\SQLEXPRESS;Database=PUBS;Trusted_Connection=yes;") Dim cmd As New SqlCommand("SELECT au_lname FROM authors", con) con.Open() Dim … -
Replied To a Post in Auto complete text box
Here is an example Dim srce As New AutoCompleteStringCollection() srce.AddRange({"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}) txtSample.AutoCompleteMode = AutoCompleteMode.Suggest txtSample.AutoCompleteSource = AutoCompleteSource.CustomSource txtSample.AutoCompleteCustomSource = srce -
Edited Grouping Data
I am calling data from my database but the result is not what I want. Below is my code: Select distinct concat(ImporterDistributor.name, '/', ID.name) as [Distributor_Importer], case when Product_Delivery.Product=1 then … -
Replied To a Post in Saving Multi-Dimensional Array
See [here](http://sqlmag.com/sql-server-2012/sql-server-2012-express-editions) for more details. The maximum database size for the free edition is 10 gig, not 2 gig. -
Replied To a Post in Syntax error (missing operator) in query expression 'Name'.
There's no way of telling without seeing the query string. Replace Dim CMD As New OleDb.OleDbCommand(simpan, CONN) with Debug.WriteLine(simpan) Dim CMD As New OleDb.OleDbCommand(simpan, CONN) and post the output here. … -
Replied To a Post in Displaying values of a table that falls BETWEEN specific dates
My choice would be to create a new table with an actual Date field and doing a copy/convert, then manually checking the fields to make sure the dates were properly … -
Replied To a Post in Displaying values of a table that falls BETWEEN specific dates
Why not just SELECT * FROM Consultation WHERE Con_Consult_Date BETWEEN '01-01-2013' AND '31-12-2013' -
Replied To a Post in So. Does anyone have any good programming/computing jokes?
If you asked me to guess your profession I would have to say engineer. I never knew one who **didn't** write code like that. -
Replied To a Post in Can You Help Me In My Project (Visual Studio 2013)
Are you asking us to write the code for you? If so, that's not what we do. -
Replied To a Post in Word Documents Becoming "Read Only" Mid-Session
Do you have any system in place to prevent multiple users from changing a document at the same time? -
Replied To a Post in So. Does anyone have any good programming/computing jokes?
I *worked* with a few programming jokes, but to be fair, they probably thought the same of me. -
Replied To a Post in Dice
A few suggestions off the top. * You don't need a double to store a digit from 1-6. Use a Byte. * Use an ImageList to preload the dice images. … -
Replied To a Post in Dice
Do you have a question? -
Edited Help in assigning database value to array value
Hello, Code Masters, Here I am again today going to seek help and guidance from you. I have here a manually assigned values to arrays 0 - 19 now my … -
Replied To a Post in Saving Multi-Dimensional Array
Not as far as I'm concerned. There is no point in duplicating effort so if a good tutorial is available then, by all means, post a link to it. -
Replied To a Post in Saving Multi-Dimensional Array
There are several examples of database code in the [Code Snippets](https://www.daniweb.com/software-development/vbnet/code/_/58) section and I can answer most questions unless you get complicated. If you are willing to put in the … -
Replied To a Post in Saving Multi-Dimensional Array
Do not use Access. For that much data you are much better off using SQL. If you want to go Microsoft then I suggest MS-SQL. I believe you can have … -
Replied To a Post in So why is Databases under Web Development?
Can someone please remind me - how do I filter based on one or more tags? If I click on a tag I can get a list of tagged articles, … -
Replied To a Post in Windows 10 New Icons
Don't get me wrong. I wasn't defending Microsoft. I was just pointing out some interesting numbers. When I have to get somewhere in a hurry I am much less concerned … -
Replied To a Post in "Stopped Working" during routine
I can't run this locally because you supplied only the code that runs the form. I am not going to create all the controls manually and guess as to their … -
Replied To a Post in Hare Psychopathy Checklist
**A Cautionary Note:** The Psychopathy Checklist is a complex clinical tool for professional use... **Do not use these symptoms to diagnose yourself or others**. A diagnosis requires explicit training and … -
Edited Ascii to hex using VB
Dear sir, I am getting some port input in ASCII form, and wanted to convert it in HEX form, I have used following code '\\\\\\\\\\\\\\\\\\\\\\\\\////////////////////////////////////////// For A = 1 To … -
Replied To a Post in There is an elephant on the loo!
>That makes Greece with 144% of GDP, Belgium with 97%, and the USA with 72% look harmless. In my mind that's like being thankful you only have Ebola instead of … -
Replied To a Post in Windows 10 New Icons
Well, I just read an analysis of security holes in 2014 and according to the figures, the most holes were found in Mac IOS, next was Linux and in third … -
Created RIP Leonard Nimoy
He lived long and prospered. -
Replied To a Post in Random Facts
It's one thing to have an official state bird or tree, however, Tennessee's James Van Huss has decided to go one step further by introducing a bill to make the … -
Replied To a Post in Running a Macro in a Shared File
Maybe check the security settings under Tools -> Macro -> Security At least that's where it is under Excel 2003 the version I have). -
Replied To a Post in Running a Macro in a Shared File
Ah. I see. I'm not familiar with that feature. -
Gave Reputation to XP78USER in Hare Psychopathy Checklist
500 is an impossible answer to this thread -
Replied To a Post in There is an elephant on the loo!
Mmmmm. Crunchy frog. Watch out for the fresh spring surprise though. -
Replied To a Post in Windows 10 New Icons
Microsoft has made many changes from Windows 7 to Windows 10. They redesigned the start menu (and made it worse) after having removed it in Windows 8. They've, yet again, … -
Replied To a Post in Running a Macro in a Shared File
I don't know what you mean by a "shared" document. -
Replied To a Post in Running a Macro in a Shared File
>I tried to test it as a shared file What do you mean by that? -
Replied To a Post in Efficiency of a Select Case
My advice is learn to walk before you learn to run. Get your code working simply before you complicate it with classes and overrides. -
Replied To a Post in Making a list of Folder Names from a Network Drive
You could iterate through the folder names and look for one starting with "1504 -". -
Replied To a Post in need help regarding one app
So you want us to find the code for you? Or do you want suggestions for websites which will teach you to code? If the former then you can use … -
Replied To a Post in Efficiency of a Select Case
I think your code would be a lot clearer, less prone to typos and easier to modify if you used intermediate variables. For example DailyRate = arrDailyRates(cboBoard.SelectedIndex) Select Case cboBoard.SelectedIndex … -
Replied To a Post in Coin toss program
What have you got so far? -
Replied To a Post in Write TXT File
As Archie Bunker would say, like two sheeps that pass in the night ;-P -
Replied To a Post in Write TXT File
>That doesnt really explain how to No kidding. Microsoft would explain a beach by describing (in great detail) every grain of sand and every possible activity that can be done … -
Gave Reputation to Santanu.Das in DateTimePicker hour Format
Agreed with Teme64. You can try it. -
Replied To a Post in Changing g plus thumbnail
I'm not seeing it and I looked really really hard. Try clearing your cache.
The End.