20,284 Topics

Member Avatar for
Member Avatar for mitchstokes225

I am creating a random number guessing game. I have 6 options. 3 Game playing levels and 3 timer levels. I have my form display with 6 radio buttons: radRookie radVeteran radPro radThirty radFourtyFive radSixty You select your level and time. Then you have a text box to enter your …

Member Avatar for Luc001
0
484
Member Avatar for ebrahim1

hi The idea is to make DataGrid contains a field of type combobox it have another data source to choose from those and save data in the DataGrid , this is possible and without any problems.. But when make Parameters to filter data in the combobox and when i try …

Member Avatar for ebrahim1
0
179
Member Avatar for gujinni

hi there. anybody knows how to display conntents of (SQL)database in vb.net using label?

Member Avatar for khair.ullah
0
52
Member Avatar for romz

Hi, Im new in VB.Net. im having trouble with filling the datagridview with data. the program seems to skip the part where i declare the **datagridview datasouce** and only executes until **da.fill(dt)**. here is my code, hope you could help me. thanks in advance. Imports System.Data.SqlClient Public Class Form1 Dim …

Member Avatar for romz
0
118
Member Avatar for amy 86

hi dears.. i have really big problem with save values of checkedlistbox in one field but i can't do it..what can i do?? is it a database or code problem?? i want the data save like this: 1;2;3 for example..is that possible?? plzzz help..

Member Avatar for amy 86
0
390
Member Avatar for shhh

We are using digital persona for our biometrics. We can already save employee ID, employee name and assigned finger .Our problem is that we dont know how to save a fingerprint template to a database and retrieve it so that it can still be read and verified by the biometric …

Member Avatar for TnTinMN
0
3K
Member Avatar for renzlo

Hi, Everyone, I've coded a program that uses a web browser control and loads a java applet, the process created when the java applet was loaded is java.exe, then on another tab, I've executed again a java applet and created again a java.exe process, now I need to kill the …

Member Avatar for renzlo
0
300
Member Avatar for Programmer629

Hey guys. i was wondering if anyone knew any good tutorials for making an audio software, similar to audacity or mixpad. i prefer it to be in vb.net but it can be in C# or C++ too. thx!

0
60
Member Avatar for laogao99

i want to click on a row in grid view and the details of each attribute can show separately in textbox field. i had type this in my coding part, but it doesnt work. may i know how to do it? thanks you. Dim text As New TextBox Dim sql_productname …

Member Avatar for khair.ullah
0
187
Member Avatar for yous

Hi Guys Can anyone give me an example on how to retrieve the value 16 in bold under the tagname <td>In process</td> with a webbrowser and insert this value to a texbox. Thanks <tbody> <tr class="odd"> <td>In Process</td> <td class="number">***16***</td> <td class="number">1</td> <td class="number">01:16:48</td> <td class="number">02:54:00</td> <td class="radio"><input type="radio" name="queue" …

Member Avatar for TnTinMN
0
280
Member Avatar for LD Company

Hello programmers! I made new software, LD File Browser. This software contains ListView but this ListView has error. Software works fine when I run it on F5 (debug), but when I run .exe icon I got error when I select different item in ListView. Here is the code: TextBox1.Text = …

Member Avatar for john.knapp
0
228
Member Avatar for yuvarajwillbe

I am Creating an application in VB 2008 to Find Bold, Italic text in Rich Text box and replace the Find the result with the following: Bold Text needs to be replaced with <b> Find Result </b>. Italic Text needs to be replaced with <i> Find Result </i>. Underline Text …

Member Avatar for john.knapp
0
86
Member Avatar for ponkhiraj

Hi, Everybody... Can anyone knows what is the maximun character limitation of a Label in Vb.net? Basically i need to scroll a label with timer as Marquee. The label text is coming from a richtextbox. The richtextbox contains more than billions character. I replaced all vbLf(LineFeed) of richtextbox with a …

Member Avatar for tinstaafl
0
187
Member Avatar for ferdzjorge

How to print pdf directly to printer from published site. It works fine in development environment but not in production. Heres my code using pdfSharp. PdfFilePrinter.AdobeReaderPath = "C:\<AdobeReaderPath>\Reader\AcroRd32.exe" Dim printer As New PdfFilePrinter With printer .PdfFileName = <FileName> .PrinterName = <PrinterName> .Print() End With Thanks!

Member Avatar for john.knapp
0
239
Member Avatar for cm670

I have a grid called staff which shows staffNo, name, position. Does anybody have any ideas how i can retrieve the staff number from the grid and use it in an SQL statement? eg select name from staffTable where staff_no =** (value from the grid)**. Thanks

Member Avatar for john.knapp
0
43
Member Avatar for swap002

Hello, I'm a complete noob when it comes to .Net. I'm working on my college project. In my application there's a combobox/drop-down list. My requirement is as soon as user starts typing inside it, i.e. when text_changed is triggered it should retrieve values starting from that letter from a column …

Member Avatar for john.knapp
0
253
Member Avatar for charuwaka

See i want to print my bill separated by lines and should appear like each column spearated by a lineand each row separated by a line. but these should no appear in main form only in print preview it should appear is it possible how can i do it clearly …

Member Avatar for john.knapp
0
111
Member Avatar for swathys

hi, i write a code uisng VB.net. i have design few checkbox and would like to write class function in class file. can anyone guide me how to create and call the function from the class to the page. i have create a class file as below Public Class clsKYC …

Member Avatar for john.knapp
0
488
Member Avatar for LD Company

Hello programmers! I am making File Browser software and I want to display icons of my files in listview. Here is the code: ImageList1.Images.Clear() Dim di As New IO.DirectoryInfo(LocationA.Text) Dim aryFi As IO.FileInfo() = di.GetFiles("*") Dim fi As IO.FileInfo For Each fi In aryFi For Each files In System.IO.Directory.GetFiles(LocationA.Text) Dim …

Member Avatar for john.knapp
0
4K
Member Avatar for shhh

error connecting to databaseAccess denied for use 'root'@'localhost(using password:YES) using System; using System.Data; using System.Collections.Generic; using System.Linq; using System.Text; using MySql.Data.MySqlClient; using System.Windows.Forms; using DPUruNet; using System.Drawing.Imaging; using System.Drawing; namespace UareUBiometrics { class HelperFunctions { private static Fmd[] fmds; private static Fmd[] allDBFmds; public static Fmd[] GetAllFmds { get { …

Member Avatar for kyle.santelices.31
0
283
Member Avatar for DGULLIVER

Hi, I'm printing a VB.NET form using BitBlt API my code as follows: [CODE] ' create a printing component Private WithEvents pd As Printing.PrintDocument ' storage for form image Dim formImage As Bitmap ' create API prototype Private Declare Function BitBlt Lib "gdi32.dll" Alias _ "BitBlt" (ByVal hdcDest As IntPtr, …

Member Avatar for charuwaka
0
540
Member Avatar for Ako.si.tootsx
Member Avatar for Mikey12345

Hi I have a datagridview with a set of 10 rows for data entry. I have a loop that runs through the rows so I need to have a default cell value. can i set a hidden default value. I have the default value pre entered for all rows so …

Member Avatar for G_Waddell
0
49
Member Avatar for rookanga

I have two forms with one listbox on each form. How can I show what I have in the listbox on form1 on form2. I have a button on form1 to go to form2 [CODE]Private Sub btnform2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnform2.Click Form2.Show() Dim sTemp As …

Member Avatar for imatepda2k
0
2K
Member Avatar for kikiey

i have one more question. how to make a connection using lan between two pc? they use a same ip address?

Member Avatar for john.knapp
0
462
Member Avatar for harinisuresh

Download source code of Program : http://www66.zippyshare.com/v/96114261/file.html I got Error 'Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))' of using cross domain in webbroser iframe tag. Error Line : WebBrowser1.Document.Window.Frames(0).Document.GetElementsByTagName("input").Item(0).InnerText = "MyValue1" Please solve the program. Thanks.

Member Avatar for john.knapp
0
229
Member Avatar for andrew_dvw_usr

Hi there, I'm trying to create a math quiz that reads a series of questions from a sequential access flat file. The file should contain a series of numbers, separated by commas. The first field(value) should be the first number for the problem, the second should be the second number …

Member Avatar for Reverend Jim
0
227
Member Avatar for kindofsudden

Being somewhat new to VB.NET, I built a data solution by using wizards and drag-and-drop on forms. My data is in an Access DB and I opened up those tables with Server Explorer and dragged them into my dataset. I connected the tables to datagridviews. Worked like a charm. Then …

Member Avatar for john.knapp
0
411
Member Avatar for Mikey12345

Hi, I was wondering whether there is a way that i can use the bindingsource with a datagridview without a datatable. I have a datagridview that has two columns with a set number of rows and would like to bind it with two textboxes on a second form. Basically the …

Member Avatar for Pgmer
0
108
Member Avatar for jc.lembenguiste

Hello everybody you will excuse my poor englsih I am french, since two month I began to develop an application using Vb.Net . This application must use a database . I chose MS SQL Server for the database, but I dont know how to connect my application to MS SQLSERVER. …

Member Avatar for john.knapp
0
206

The End.