4,901 Posted Topics

Member Avatar for James_43
Member Avatar for Nutster
0
169
Member Avatar for Johncarlo_1

No one here is going to give you code. You won't learn anything unless you do the work yourself. Show us what you have so far and we cn offer suggestions.

Member Avatar for Reverend Jim
0
101
Member Avatar for janicemurby

What kind of messaging system are we talking about? If it's Skype, Microsoft removed that functionality when they bought the software.

Member Avatar for janicemurby
0
170
Member Avatar for meenasundar

It means that when you tried to do conn.Open() the database connection was already open. Because you declared `conn` globally it will retain its connection state between ececutions of your `sub`. In any case, your `sub` appears to serve no purpose other than setting the connection string. You declare and …

Member Avatar for AleMonteiro
-1
296
Member Avatar for leonesa
Member Avatar for joshl_1995

Have you actually made the site or are you just considering it? Personally, I would refuse. However, if you are trying to build a portfolio at the start of a career I can see why you might be considering it.

Member Avatar for jkon
0
719
Member Avatar for Psyclique

A TextBox displays only one item which is a string. You set the value by TextBox1.Text = "some string value" Or you can add to the existing text by TextBox1.AppendText("more text") A ListBox, however, displays a collection of items and you have to add items to that collection as in …

Member Avatar for Reverend Jim
0
287
Member Avatar for flipmode

Read the error message. It tells you exactly what you are doing wrong. That's the problem with 3rd party controls. In order to get help you have to attract the attention of someone else who also uses those controls. What special functionality do you get that you don't have with …

Member Avatar for Reverend Jim
0
237
Member Avatar for glao

You get different results for two reasons. For one thing, one example has the test at the top of the loop and the other has the test at the bottom (guaranteeing at least one loop execution). Also, translating `while (A and B)` to the (effective) opposite (in one case you …

Member Avatar for glao
0
188
Member Avatar for mbehnaam

Or perhaps he is harkening back to the days of the dongle which was an external device resembling a flash drive but which contained custom circuitry with a unique ID.

Member Avatar for rubberman
0
835
Member Avatar for sashiksu

I'm using MS-SQL rather than MYSQL. Perhaps this code snippet will give you some idea. ' ' Name: ' ' DBImageStoreRetrieve ' ' Description: ' ' Demonstrate how to store, retrieve and display an image file to/from a database ' with both SQLDB and OLEDB. ' ' Usage: ' ' …

Member Avatar for Reverend Jim
0
662
Member Avatar for anonstu3

What is your level of expertise? If you are at a beginner level then I suggest you start with something simpler. If you have the chops for this project and are just stuck then I suggest you post the code you are having trouble with so that we have something …

Member Avatar for Brandon Hatch
0
212
Member Avatar for Tashia_1

What type of database are you connecting to? What does your table look like? What code have you written so far?

Member Avatar for Tashia_1
0
667
Member Avatar for Sphinx'LostNose

The only thing I've ever used `dism` for is to reduce the space used by my current Windows OS and the command and options I use aren't displayed when you type `dism /?`. The command I use is DISM /online /Cleanup-Image /SpSuperseded This is what you would run after installing …

Member Avatar for rproffitt
0
422
Member Avatar for Khw09

To save you from the "gotcha" (thoughtfully provided by Microsoft), the `Next` method of the random number class can be called with parameters `MinValue` and `MaxValue` as in rnd.Next(0,20) The gotcha is that that some brain dead programmer at Microsoft decided that the `MinValue` is inclusive and `MaxValue` is exclusive …

Member Avatar for rproffitt
0
418
Member Avatar for sashiksu

You could try a `Finally` clause which is executed whether or not an error occurs. Try con.Open . . 'don't do the con.Close here Catch ex As Exception MsgBox(ex.Message) 'don't do the con.Close here either Finally If con.State = ConnectionState.Open Then con.Close() End If End Try

Member Avatar for sashiksu
0
2K
Member Avatar for Kurumi_1
Member Avatar for Reverend Jim
0
176
Member Avatar for Reverend Jim

In [this post](http://computers.toptenreviews.com/gaming/digital-storm/digital-storm-vanquish-3-review.html) the link shows as broken and when I click on it I get taken to the [Daniweb Broken Link page](https://www.daniweb.com/posts/bad_link/2199201?uri=http%3A%2F%2Fcomputers.toptenreviews.com%2Fgaming%2Fdigital-storm%2Fdigital-storm-vanquish-3-review.html). However, when I copy the link text and paste it into my browser address bar it takes me to the correct page.

Member Avatar for Reverend Jim
0
311
Member Avatar for gann1

I used to work on an old AGC/SCADA mainframe (circa 1980) and everything was on large (18" square) boards with edge connectors. The connections would eventually oxidize and become intermittent. Also, some of the chip connections on the boards would suffer the same problem. The solution was to periodically take …

Member Avatar for Reverend Jim
0
329
Member Avatar for Reverend Jim

My number two son is looking to replace his old(ish) Alienware laptop with a new gaming desktop. He is leaning toward another Alienware (although desktop this time rather than notebook). Does anyone have any recommendations that aren't in the super-ultimate-deluxe-megabucks category? His reason for going to a desktop system is …

Member Avatar for Reverend Jim
0
659
Member Avatar for Reo_1

One suggestion is to distribute the package in a password protected zip file. If the package is installed rather than portable then it shouldn't be easy to manually copy from machine to machine.

Member Avatar for rproffitt
0
321
Member Avatar for rafia t

I did this a while back as an exercise in vb.net. If that's your language then perhaps I can help you through it (but show some effort first).

Member Avatar for Reverend Jim
0
256
Member Avatar for Papa_Don

I use [CutePDF Writer](http://www.cutepdf.com/products/cutepdf/writer.asp). It's a free virtual printer. Print any file to CutePDF and the output is a PDF.

Member Avatar for Sblogger
0
2K
Member Avatar for Prashanth K M

That's not how a combo box works. You could provide a textbox and an ADD button to do that though.

Member Avatar for Santanu.Das
0
191
Member Avatar for Simple man
Member Avatar for Reverend Jim
0
292
Member Avatar for maliganya
Member Avatar for Reverend Jim
0
96
Member Avatar for pezzinae

It's never a good idea to use spaces in field names. If you do then you have to use delimiters around the field name. If possible you should rename the field and code something like sql = "select * from material where IDDOS ='" & TextBox10.Text & "' AND MATERIAL_ACEPTABLE …

Member Avatar for pezzinae
0
591
Member Avatar for mindy053

>i need to print the matching words What you need to do is 1. Show a little courtesy by asking for help instead of wording it like you are demanding that we do it for you. 2. Show that you have gone to the effort of trying to do this …

Member Avatar for Reverend Jim
-1
240
Member Avatar for cambalinho

Microsoft has an article on that [here](https://social.msdn.microsoft.com/Forums/en-US/df0248cb-612f-4e2f-9665-11c68c401458/this-is-how-to-call-win32-api-calls-in-vbscript-and-jscript-sample-windows-api-functions?forum=scripting).

Member Avatar for cambalinho
0
1K
Member Avatar for Parth_3

I don't use data tables but I think it should be `ds.Tables` not `ds.Table`. Also you have a typo in `da.Fill(ds, "EmMasater")`.

Member Avatar for Reverend Jim
0
192
Member Avatar for sinkill9099

I can't offer any suggestions as to implementation but you may want to have a look at [Deshaker](http://www.guthspot.se/video/deshaker.htm) which is a free plugin for [VirtualDub](http://www.virtualdub.org/) which is also free.

Member Avatar for sinkill9099
0
275
Member Avatar for Sanjaykp1973
Member Avatar for KevinAdam
Member Avatar for Reverend Jim
0
311
Member Avatar for Parth_3

You can do it with a simple query. For example UPDATE myTable SET numHours = numHours + 1 WHERE empid = 23 If you need more details on how to execute the query please provide more details such as type of database, table and field info, connection type. I don't …

Member Avatar for Reverend Jim
0
90
Member Avatar for Inder_1

Best for what? Security? Speed of bug fixes? Rendering speed? This question can usually be answered for specific apps (image manipulation, sound editing, etc.) but is generally pointless for more broad software (OS, browser) unless the question is qualified as in "best for...". You might as well ask what is …

Member Avatar for ddanbe
-1
132
Member Avatar for The Dude

“I always said that if I wasn’t studying psychopaths in prison, I’d do it at the stock exchange.” – Robert Hare, creator of the Hare Psychopathy Checklist

Member Avatar for maydhyam
1
6K
Member Avatar for divinity02

First of all there is a problem with your variable naming. You use `avemark` to contain your total and `totalmarks` to contain your average. You should have totalmarks = mark1 + mark2 + mark3; avemark = totalmarks / 3.0; You are comparing `passmark` to `50` but you only ever assign …

Member Avatar for divinity02
0
163
Member Avatar for Sneaky Pete

>Can anybody give me a solution to do this? Sounds like homework and nobody is going to do it for you. However, if you show us what you have so far we couuld offer help. What parts are you having problems with? Do you have your algorithm (pseudo-code) written out?

Member Avatar for Raul Perez
0
474
Member Avatar for ztdep
Member Avatar for Dani
0
303
Member Avatar for TonyTGI

Since there is already a program with those features the answer is obviously yes. Whether or not you can write it depends on your level of expertise.

Member Avatar for Mr.M
0
502
Member Avatar for andybe
Member Avatar for Reverend Jim
0
109
Member Avatar for Mr.M

You said you were using `BackgroundWork` but it looks to me that you are spawning a separate process. If you actually do it with a `BackGroundWorker` then you can tell when it is finished by the `RunWorkerCompleted` event.

Member Avatar for Reverend Jim
0
3K
Member Avatar for Juli_1
Member Avatar for Reverend Jim
0
407
Member Avatar for GustavoWoltmann

I'll refer you to [9 Tips for Longer Laptop Battery Life](http://www.pcmag.com/article2/0,2817,2458636,00.asp)

Member Avatar for ztdep
0
216
Member Avatar for rproffitt
Member Avatar for ogsirus

It would appear the code doesn't sort at all. Can you please explain what you mean by >But then it gets a bit messy as it can sort out numerous array based on the original.

Member Avatar for Reverend Jim
0
181
Member Avatar for Joshua_14

>Enter 10 student grades and print the total number of passing and failing grades entered Since you can't be bothered to even ask politely then I'll just answer impolitely with "do your own bloody homework."

Member Avatar for David W
0
214
Member Avatar for Yash969680

The common complaint from users. "It's just what I asked for but not what I wanted."

Member Avatar for Reverend Jim
0
483
Member Avatar for carlcsolis

Sure. Just write each paragraph as a separate line in the save file. Your loop would be For Each tbx As TextBox In Me.Controls.OfType(Of TextBox)() `output tbx.Text Next with the reverse on form load. You'd need to do some checking such as checkng if the temp save file exists before …

Member Avatar for Reverend Jim
0
219
Member Avatar for Itz Mhe

If you don't even make an attempt to do it yourself then you won't learn anything. If you are unwilling to learn then why should we go to the effort of trying to teach you?

Member Avatar for Reverend Jim
-1
139

The End.