Posts
 
Reputation
Joined
Last Seen
Ranked #156
Strength to Increase Rep
+12
Strength to Decrease Rep
-3
98% Quality Score
Upvotes Received
146
Posts with Upvotes
130
Upvoting Members
82
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
42 Commented Posts
~523.33K People Reached
PC Specs
Intel Core i7 2600k Sandy Bridge Asus P8Z68-V Pro Gen3 Socket 1155 2 x EVGA GTX 760ti 2GB 16gb Corsair…
Favorite Tags
Member Avatar for samaru
Member Avatar for arsharma159

You are going to need a database backend for your application. You will need to do the following: 1)Compose a list of things you need to store and keep track of. a)Inventory b)Customers c)Ect... 2)Tear down the storage items to their most simple (atomic) state to create your tables. a)Lookup …

Member Avatar for kali_4
0
1K
Member Avatar for Quinncunx

You could try a different method and define a structure..... Dim stud(24) As Students Dim tmpStud As Students Structure Students Dim StudentName As String Dim CumulativeScores As Double End Structure For i = 0 To stud.Count - 2 If stud(i).CumulativeScores > stud(i + 1).CumulativeScores Then tmpStud = stud(i + 1) …

Member Avatar for randysoft1
0
3K
Member Avatar for Nebil

Are you sure the path is correct? You can verify it by doing this: If File.Exists("C:\Users\Abdueie\Desktop\BMS\Bridge Asset Management\Bridge Asset Management\bin\Debug\Adigrat.accdb") Then MsgBox("It is there!") Else MsgBox("Path May Be Wrong!")

Member Avatar for YASHNIT
2
8K
Member Avatar for dilse4sk

You will need a seperate table for the customer. Something Like ::Table Name: Cust_info:: ::Column 1:cust_id:: ::Column 2:cust_name:: ::Column 3:cust_charges:: ::Column 4:cust_payed::

Member Avatar for geetha_3
0
834
Member Avatar for Saanvi

Below you will find a very brute force way or measuring this: Private Function CountChar(ByVal c As Char, ByVal sSource As String, ByVal bCaseSensitive As Boolean) As Integer Try If Not bCaseSensitive Then sSource = sSource.ToLower c = Char.ToLower(c) End If Dim istart As Integer = InStr(sSource, c) Dim istop …

Member Avatar for xrjf
0
508
Member Avatar for Learner010

There a couple methods you can use: [PrintForm](http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.powerpacks.printing.printform(v=vs.80).aspx) and [PrintDocument](http://msdn.microsoft.com/en-us/library/system.drawing.printing.printdocument.aspx) Printform sends an image of the active form to the printer. (Simple output) PrintDocument sends the output to the printer, but you have to specify the output. PrintDocument sounds like what you are wanting.

Member Avatar for munawer_1
0
3K
Member Avatar for Begginnerdev

Hello Daniweb, and thank you for taking the time to read this post. I have a question of efficiency. I am wondering, what is the most efficient way to print from a listview. The listview's values are loaded from a database, and I would like to print from that listview. …

Member Avatar for Ivan_14
0
6K
Member Avatar for karlcunanan

You can use [Microsoft's Alternative](http://msdn.microsoft.com/en-us/library/ms252073.aspx) to Crystal Reports. You can also try [this](http://www.fyireporting.com/index.html), although it is one I have not tried personally.

Member Avatar for psychi_beavis
0
3K
Member Avatar for jemartalaban_1

You can make use of the [PrintForm class](http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.powerpacks.printing.printform(v=vs.80).aspx) from the Power Packs. For example: Public Class Form2 Public WriteOnly Property _PrintForm As Boolean Set(value As Boolean) If value = True Then Dim pf As New PrintForm pf.Form = Me pf.PrintAction = PrintToPrinter pf.Print() End If End Set End Property End …

Member Avatar for tmccmt
0
8K
Member Avatar for Begginnerdev

Here is a small extention of the Panel class that allows you to 'collapse' it. So far, the user can place a control on the parent form and perform a collapse/expantion by: 'Where cpNew is a Collapsible Panel If Not cpNew.PanelCollapsed Then cpNew.Collapse() 'or If cpNew.PanelCollapsed Then cpNew.Expand() I will …

Member Avatar for parjor
0
2K
Member Avatar for altjen
Member Avatar for zelrick

Have you tried making use of [IsNumeric](https://msdn.microsoft.com/en-us/library/6cd3f6w1%28v=vs.90%29.aspx)? For example: For Each row As DataRow In dts.Tables("[Sheet1$]").Rows If IsNumeric(row(0)) Then If row(0).ToString.StartsWith("98") Then Dim cell1, cell3 As String Dim col1, col2, col3, col4 As String col1 = String.Empty col2 = String.Empty col3 = String.Empty col4 = String.Empty cell1 = row(0).ToString cell3 …

Member Avatar for Begginnerdev
0
913
Member Avatar for John_91

Without seeing your data we can not answer the question effectively. One method would be to write queriest to select the data you wish to receive based on a date field. For Example: 'For 2014-2015 "SELECT * FROM MyTable WHERE MyDateCol BETWEEN '01/01/2014 01:01:01' AND '12/31/2014 23:59:59'" 'For 2015-2016 "SELECT …

Member Avatar for Begginnerdev
0
198
Member Avatar for hwoarang69

Try wrapping your div in an [UpdatePanel](https://msdn.microsoft.com/en-us/library/system.web.ui.updatepanel%28v=vs.110%29.aspx). This will allow you to update only that part of the page without calling a full postback.

Member Avatar for Begginnerdev
0
221
Member Avatar for altjen

This will be a simple File.Move: IO.File.Move("SourceFilePath", "DestinationFilePath")

Member Avatar for Begginnerdev
0
101
Member Avatar for John_91

Your question is quite a bit incomplete. Please provide us with the following information so that we can help you find a solution! =) What control are you displaying your data in? Are you wanting to format this data a certain way? Have you attempted this thus far? Even with …

Member Avatar for Begginnerdev
0
109
Member Avatar for Mr.M

This is a shell function called [SHFileOperation](https://msdn.microsoft.com/en-us/library/windows/desktop/bb762164%28v=vs.85%29.aspx). [Here](http://www.pinvoke.net/default.aspx/shell32.SHFileOperation) is an article that you might want to read over.

Member Avatar for Mr.M
0
256
Member Avatar for Papa_Don

A SELECT CASE would look something like: Select Case Mid(txtLine, 18, 1) Case "G", "T", "C", "W" 'Do this stuff only for those Case Else 'Do some stuff End Select [Here](http://www.dotnetperls.com/select-case-vbnet) is an article that might help you get a little better understanding.

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

In the NewWindow event of the browser control, you can use the following code: e.Cancel = True WebBrowser1.Navigate(New URI(DirectCast(sender, WebBrowser).StatusText)) This will force the active web browser to navigate to the clicked item.

Member Avatar for Begginnerdev
0
140
Member Avatar for John_88

Just an additional note: if using OleDB then your queries will need to have '?' instead of a paramter name. For example: cmd.CommandText="INSERT INTO tblMyTable (someString,someDate,someNumber) VALUES (?,?,?)" cmd.Parameters.AddWithValue("@someString",MyStringValue) cmd.Parameters.AddWithValue("@someDate",MyDateValue) cmd.Parameters.AddWithValue("@someNumber",MyNumberValue) cmd.ExecuteNonQuery()

Member Avatar for Begginnerdev
0
331
Member Avatar for vegaseat

Q: What do you call a dog which has no legs? A: Anything you want; he's still not coming to you.

Member Avatar for vegaseat
0
322
Member Avatar for Mr.M

[Here](http://www.vbforums.com/showthread.php?727399-VB-NET-Screen-Recorder-with-audio-Converts-to-MPEG-4-video-now-Update-29-Dec-13) is a project posted on VBForums that will complete that task. You can study it in detail to get an idea for creating your own.

Member Avatar for Mr.M
0
226
Member Avatar for it@61@sec

Way back when (about 7 years ago) I tried this for a friend. He had an old busted dvr he wanted fixed. I fixed it....so I thought. Turns out that some of the manufacturers key the hard drives to the recorders and once the drive is removed and replaced (same …

Member Avatar for spok
0
595
Member Avatar for poncho208
Member Avatar for Trle94

What is most likely happening is that you are exiting the main thread when you use Alt+F4; thus no code will fire the code to 'jam' the keyboard.

Member Avatar for Mr.M
0
327
Member Avatar for muhammad_74

Other than upgrading the memory a little, I see no problem using xUbuntu. You may want to go up to 4gb if possible.

Member Avatar for muhammad_74
0
183
Member Avatar for michael.tuason2

Most mother boards have a crash free bios that has a backup of the OEM bios settings. I am assuming you have attempted to boot the pc in safe mode and scan it that way. I suggest booting into a linux live environment to disinfect the problem drive. Something like …

Member Avatar for rubberman
1
198
Member Avatar for OMER AHMED
Member Avatar for OMER AHMED
0
732
Member Avatar for Elvi

A few questions would be: What carrier? Do you want external storage? Do you prefer a certain OS?

Member Avatar for jenferrer815
0
215