4,905 Posted Topics

Member Avatar for Reverend Jim

I cannot get BlueTooth to work on my laptop. I have a Dell Inspiron 1720 running Windows 7 Pro. When I got it back in 2008 the BlueTooth was working fine. I have re-installed Windows several times since then and have never had to use bluetooth. Today I got hearing …

Member Avatar for Reverend Jim
0
564
Member Avatar for Mafiamanandre

Nothing special required. Just make the startup form your login form. The login form would have a text control for the username and another for the password. For the password box, set the PasswordChar property to "\*" to hide the characters. To use roles you would have to have a …

Member Avatar for Reverend Jim
0
2K
Member Avatar for Argi

As far as I know, your headset will not show up as a device because it is already present as **microphone** and **speakers**. When you plug in the headphones, one cord goes into the microphone jack and the other into the headphone jack which just redirects the sound from the …

Member Avatar for gerbil
0
132
Member Avatar for PINOY420

It's flagging **dt** as the problem. It would help to see all code relating to **dt** including declaration/instantiation.

Member Avatar for Reverend Jim
0
95
Member Avatar for Yorkiebar14

I'm familiar with MS SQL, not MySql, but I'm still going to offer a suggestion. In MS Sql you have a separate file for the database, but the DBMS maintains information about the table in a system level database. It's possible the system table has gotten corrupted. That may mean …

Member Avatar for Reverend Jim
0
342
Member Avatar for <M/>

I disagree. The question was whether or not they can **share** the code snippets. I think it would be OK to share the code snippets as in **You can find an example of [Dynamic Control Creation (Event Handlers) on Daniweb](http://www.daniweb.com/software-development/vbnet/code/446753/dynamic-control-creation-event-handlers-)** That way the snippet is shared, the content stays unique …

Member Avatar for Reverend Jim
0
306
Member Avatar for Yorkiebar14

The only thing that comes to mind is that you are not actually using the current user's name. Try using Dim savePath As String = "%USERPROFILE%\Desktop\EpiPhone\029.csv"

Member Avatar for Jamblaster
0
791
Member Avatar for Wunderhoo

Any program that says you have over 1000 problems is most likely a scam. Even legitimate programs can over-inflate the threat by counting each cookie as a possible vector. Chances are you have some problems but not nearly as many as stated. Use what was suggested - Malwarebytes Antimalware.

Member Avatar for Wunderhoo
0
210
Member Avatar for selvaganapathy
Member Avatar for Reverend Jim
-1
716
Member Avatar for xxn5

I'm assuming that because your location is Delaware you have a working knowledge of English. Please take the time to post a clear question or you won't get an answer that is useful. If you can't take the time to do that then we can't be expected to take the …

Member Avatar for G_Waddell
-2
287
Member Avatar for CorpsMarshal

>please can anyone answer this question;paying off credit card debt You haven't asked a question, other than the implied one of "can someone please do my project for me?". Nobody here is going to do something that you should be doing for yourself. So far the only effort we have …

Member Avatar for Reverend Jim
0
400
Member Avatar for yellow_raine

If you run Task Manager and go to the Applications tab, select the line corresponding to the displayed text, right click and select **Go to process**. What is the executable? In the Processes tab you can do View -> Select columns, then choose **Command Line**. That will show the fully …

Member Avatar for BigPaw
0
620
Member Avatar for mbhanley
Member Avatar for rch1231
0
189
Member Avatar for diafol
Member Avatar for diafol
0
307
Member Avatar for xxn5

Can you be more specific? How do you want to animate the text? You get a better answer if you take the time to ask a clear question.

Member Avatar for Reverend Jim
-1
500
Member Avatar for Daneil

Please explain exactly what you are trying to do. Whatever your code is doing is not clear. I can tell that you want the picture to move but I need to know how you want it to move.

Member Avatar for EMMAGERALD
0
178
Member Avatar for robert.knighton.79
Member Avatar for mavtcr

I suggest you download MS SQL Express and SQL Management Studio (both are free). The first is the DBMS (database management system) and the second is the graphical interface for managing the databases (creating, modifying, etc.)

Member Avatar for Reverend Jim
0
269
Member Avatar for robert.knighton.79

You can read the entire file by Dim allLines() As String = System.IO.File.ReadAllLines(filename) Dim alltext As String = System.IO.File.ReadAllText(filename) The first line reads the file into an array (one line per entry) while the second reads the entire file into one string (embedded vbCrLf), which is apparently what you were …

Member Avatar for Reverend Jim
0
4K
Member Avatar for Deegirl

We also try to educate, as you might have noticed from the code snippet and tutorial portions of the forums.

Member Avatar for Deegirl
0
246
Member Avatar for kevin_richardo

And if you are asking for a key to activate a copy of Windows that you didn't legally obtain then you won't get that here.

Member Avatar for gerbil
1
541
Member Avatar for HoverportMedia
Member Avatar for jwenting
0
405
Member Avatar for Ketsuekiame
Member Avatar for ashdane.beckford

You have to ask a specific question and you have to ask it in the proper forum. I'm moving this to the python forum.

Member Avatar for Schol-R-LEA
0
113
Member Avatar for أبو_1

I can't give you a specific query without knowing the structure of your table but in general if you do something like SELECT COUNT(*) FROM mytable WHERE pkfieldname = value where **pkfieldname** is the name of your primary key field and **value** is the value of that field then the …

Member Avatar for KenSquare
0
717
Member Avatar for EXTRA_RICE

I'm not clear on whether your problem is with VB or SQL so I'll just give you the syntax for a SQL delete. DELETE FROM tablename WHERE condition Let's say you have a table named Accounts and you want to delete the account for the person whose last name is …

Member Avatar for Reverend Jim
0
153
Member Avatar for Deegirl

The answer depends on whether you are replacing what's in the file (or even if there is already a file) or adding to an already existing file. The easiest methods involve reading or writing all of the lines at once. For example, to read all lines of a text file …

Member Avatar for Deegirl
0
179
Member Avatar for Begginnerdev
Member Avatar for Mafiamanandre

If you can distinguish between whether a textbox is in column 1 or column 2 then you can save yourself a lot of coding. Let's assume that you have the textboxes arranged and named as follows: TextBox1 TextBox2 TextBox3 TextBox4 . . . TextBox29 TextBox30 txtSumCol1 txtSumCol2 Note that all …

Member Avatar for Reverend Jim
0
950
Member Avatar for Deegirl

The short answer is that you shouldn't save files to C:\. This is the root of the Windows system partition and is thus under UAC. If you really must (and you really shouldn't) then you can Right-click on **C:** Select **Properties** Select *Security** tab Click **Edit** in the **Permissions for …

Member Avatar for Reverend Jim
0
394
Member Avatar for Mafiamanandre

You can use a similar technique as discussed in your other thread [here](http://www.daniweb.com/software-development/vbnet/threads/465197/sum-of-textbox-contents)

Member Avatar for Schol-R-LEA
0
159
Member Avatar for somjit{}
Member Avatar for Deegirl

You should do an explicit conversion to Double by CDbl(txtAssignment1.Text) but you had better be sure that the string is a valid numeric or you will get an error.

Member Avatar for Reverend Jim
0
279
Member Avatar for GrimJack

For something different try Ray Lynch. I recommend 1. Nothing Above My Shoulders But the Evening 1. No Blue Thing 1. Deep Breakfast

Member Avatar for ddanbe
0
460
Member Avatar for sonunclejalil
Member Avatar for tipdarath.phal
Member Avatar for Reverend Jim
0
156
Member Avatar for G_S

You can also download the free SQL management console which greatly eases management tasks like creating databases, setting permissions, etc. Once a database has been created in the GUI you can generate the SQL commands necessary to recreate the database if necessary.

Member Avatar for Reverend Jim
0
226
Member Avatar for SunRunner

This will be of no help to you at the moment, but perhaps it will down the road. I would suggest doing a fresh install of Windows in a dedicated partition (I split 60 gig for windows and the rest for files). Install and configure all of your usual applicatiions, …

Member Avatar for gerbil
0
987
Member Avatar for babyluxe03

Instead of having the unused controls hidden I think you'd be better off just creating them on the fly as needed. There is a code snippet for runtime creation of controls [here](http://www.daniweb.com/software-development/vbnet/code/423678/create-controls-at-run-time-with-events). Put the controls inside a Panel with `AutoScroll = True` and you will get scroll bars as needed.

Member Avatar for Reverend Jim
0
97
Member Avatar for aVar++

I agree with AD. Having said that, I fully believe that the US will take military action. There's too much money to be made to stay out. If it's not Syria then it will be Iran. Have you noticed the same weasel words being used by Obama that Bush used …

Member Avatar for HiHe
3
2K
Member Avatar for xXghostXx

An "escape" character is used when you need to tell the program that the next character needs special interpretation. For example, "\n" is generally interpreted as a newline character rather than as "\" and "n". In some cases, you need to tell the program what character (in my example it …

Member Avatar for Reverend Jim
0
121
Member Avatar for somjit{}

I've gotten too used to TextPad but if I could ever find CygnusEd (editor from my Amiga days) I'd switch in a heartbeat.

Member Avatar for somjit{}
0
263
Member Avatar for joester007

An easier way is with regular expressions. Dim rex As New System.Text.RegularExpressions.Regex("") Dim s As String = "It was the best of times. It was the worst of times." MsgBox(rex.Matches(s, "s").Count) which counts "s" or Dim rex As New System.Text.RegularExpressions.Regex("") Dim s As String = "It was the best of …

Member Avatar for joester007
0
250
Member Avatar for riudo

Here's an example that I wrote up that uses a listview. It should be easy to modify it to iterate through a ListBox Imports Microsoft.Office.Interop Imports System.Windows.Forms ' ' Name: ' ' ExcelExportListView ' ' Description: ' ' Sample code to show how to open and manipulate an Excel spreadsheet …

Member Avatar for riudo
0
1K
Member Avatar for ibpet11

Just replace **Debug.WriteLine...** with your own code Dim lines() As String = System.IO.File.ReadAllLines("d:\temp\test.txt") For i As Integer = 6 To UBound(lines) - 2 Debug.WriteLine(lines(i)) Next

Member Avatar for ibpet11
0
154
Member Avatar for theguitarist

I don't see the problem. I select several pieces of text either by click-dragging or double clicking. The pop-up appears once for each selected text. When I click **Quote** all of the text that was selected is properly inserted. It seems to be working as intended.

Member Avatar for theguitarist
0
248
Member Avatar for Benjamin_6

Before I retired from Manitoba Hydro, all of the programmers that were hired after around 1980 had either a Computer Science or (CS) Computer Engineering (CE) degree. Before 1980 there were a few community college graduates hired. Almost all of the network people came up through the ranks of electrical …

Member Avatar for Mike Askew
0
269
Member Avatar for Dani

At the risk of sounding like a complete suck-up, I rarely use other forum systems except for very specific questions (to a vendor, for example) and I have yet to see one that has anything I would like to see implemented here.

Member Avatar for Dani
0
157
Member Avatar for Dani
Member Avatar for bumbumpaw

If you are using MS SQL you can do SELECT column_name FROM information_schema.columns WHERE table_name = 'yourtablename' ORDER BY ordinal_position

Member Avatar for urtrivedi
0
207

The End.