19,728 Topics

Member Avatar for
Member Avatar for Kxpr

Hello, Ive basically finished a program for my A level CS cousework, but with a few days left in the deadline I want to make my database accessible online. When the app is done and compiled it should be able to access the database on the server from anywhere and …

Member Avatar for pritaeas
0
96
Member Avatar for VIPER5646

Hi all I Have a CalendarvProject with a 3rd party Calendar control. the application was working fine untill I upgraded the Calendar Control . When I opened the solution two references were no longer availabe, so I had errors. One of the references was ExtremeCalenderControl the other AxXtremeCalendarControl. I was …

Member Avatar for VIPER5646
0
179
Member Avatar for ben_35

Hi I'm new here and have a small problem using VB.NET. I have a small hand held device that reads data from a sensor when it is held close to the sensor. The data is saved in the device but there is only a limited amount of space available. The …

Member Avatar for Reverend Jim
0
219
Member Avatar for ayakubu591
Member Avatar for Reverend Jim
0
128
Member Avatar for Velimir_1

I would like to stop the timer in the application on any kind of mouse activity (move or click any button). If I use form.mousedown and form.mousemove it will be detected in form but it will not be detected if mouse click is in any other object (button, listbox ..) …

0
73
Member Avatar for shoaib_12

hello Dani ! i am creating simple notepad for my class project i want your help about different functions like how to create new notepad file and,copy,paste ,and how to find words in the notepad file.

Member Avatar for Reverend Jim
0
79
Member Avatar for SoftBa

Hi, I'm using WindowsForm and I want to pass throu all textboxes with Enter (like using Tab). This code do things I want Private Sub Form6_KeyDown(sender As Object, e As KeyEventArgs) Handles Me.KeyDown If e.KeyCode = Keys.Enter Then Me.SelectNextControl(Me.ActiveControl, True, True, True, False) End If End Sub However, hitting Enter, …

Member Avatar for rproffitt
0
132
Member Avatar for ThaboTS

A teacher wants the program to: show a visual representation of a multiplication ask the child to key in an answer E.G 3 x 4 **** **** **** What is the answer? This is as far as I can go Please help. I can't go horizontal. I only go vertical …

Member Avatar for ThaboTS
0
487
Member Avatar for himanshucary

Dear All, From the below codes, I can get the values of text boxes x1,x2 in the Textbox1 of form2. (when I write x1 or x2 in the textbox 2 of form2.) But when I write c1 or c2 in the Textbox1 of form2 then it gives error. Pl. help …

Member Avatar for tinstaafl
0
147
Member Avatar for Baloch_1

Dear All, How to Save Finger Print (Template/Minutiae) into database, using SecuGen Hamster Pro 20 finger print reader, i have also downloaded SDK, in there sample code there is no any function to save Finger Print (Template/Minutiae) into database using vb.net. Please guide me. the sample code is here Imports …

0
353
Member Avatar for Quinncunx

Hi, Is there at all a way to sort (numerically) a multidimensional array? I have an array that is as follows `dim points(23,1) as String` The first dimension of the array has the players names in, the second dimension of it has their cumulative points, so I want to sort …

Member Avatar for randysoft1
0
3K
Member Avatar for swathi sajja
Member Avatar for tinstaafl

There are times when you need to make sure your counter starts at an odd or even number. Even is pretty simple - `counter = counter + modulus(counter)`. If counter is even it stays, if it's odd it gets incremented by 1. Odd is a bit more complicated - `counter …

Member Avatar for holisticgroup19
3
4K
Member Avatar for Tim_8

Hi, I have used Windows 'Your Phone' app to connect my phone to my PC. I have written some code in VB .Net so that when a contact's phone number is displayed on the PC screen it also appears in a mini web browser as a hyperlink so when it …

Member Avatar for tinstaafl
0
149
Member Avatar for Minimalist

So I got a problem with the settings Tab in VB.Net. The settings are not displaying properly. There is a gap in the middle of the display. ![set.jpg](/attachments/large/4/ce53b8bed890123494c52258313e0760.jpg) The second problem I have is this: VB creates a settings file in the App Data folder: InClass.exe_Url_eoaehkudo2dalqpbmdabua2u0ulhsacj However, If I try …

0
571
Member Avatar for Reverend Jim

A long standing complaint with the standard progress bar control is that there is no easy way to display text. In spite of numerous requests, Microsoft has not included this capability. The following code includes a class, `CustomProgress` which inherits the standard `ProgressBar` and adds such a feature. It is …

Member Avatar for Mark@SF
4
79K
Member Avatar for andre.jonker

I use vb.net 2019 with MySQL database I have a table named "Weeks", with 52 columns: WK1,WK2,WK3,WK4,WK5,and so on..... I want to create datagridview with two headers months and weeks: Who can help me with this issue? ![Week_Datagridview.PNG](/attachments/large/4/8819078aa16d6b9459a6a438e62e507e.PNG)

Member Avatar for Reverend Jim
0
120
Member Avatar for devianleong

PLease help me. I'm doing a login form with ms access but this line of code having problem "Dim dr As OleDbDataReader = cmd.ExecuteReader" Below is the source code Imports System.Data.OleDb Public Class Form1 Dim con As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\leong\documents\visual studio 2010\Projects\WindowsApplication4\WindowsApplication4\coursework.mdb") Dim cmd As OleDbCommand Private Sub Button1_Click(ByVal sender …

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

As part of a project to manage my collection of photos, I wanted to add the capability of displaying a series of files as thumbnails. This posed me with three problems: 1. how to preserve the aspect ratio of the original images 1. how to generate the thumbnails without tying …

Member Avatar for mariopepper
3
3K
Member Avatar for Jeyaraman_1

Imports System.Data.OleDb Public Class Form1 Dim pro As String Dim connstring As String Dim myconnection As OleDbConnection = New OleDbConnection Dim command As String Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click pro = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\sinthu\Documents\Database1.accdb" connstring = pro myconnection.ConnectionString = connstring myconnection.Open() If myconnection.State = …

Member Avatar for Reverend Jim
0
709
Member Avatar for VIPER5646

Hi all I have a datagridview with 2 columns. fist column is Datagridview combobox the second is a datagridtextbox. I'm trying to fill the second column based on the combobox selection . The Method that captures the selected item does not track which row is being edited. I have tried …

1
371
Member Avatar for SoftBa

Hi, I have form1, and second form2 When I call second form2, form1 is disabled for any interaction. customer.Show() Me.Enabled = False Close button on form2 code is Private Sub Closebutton_Click(sender As Object, e As EventArgs) Handles Closebutton.Click Me.Close() Form1.BringToFront() Form1.Enabled = True End Sub As you can see, I …

Member Avatar for Minimalist
0
774
Member Avatar for chris_58

I have 2 form there are form 1 and form 2 my program current situation is when user click delete it will pop up a login form. When user click cancel button from login form the data on the database will be delete ![login_form.PNG](/attachments/large/4/44621e202c33a0c03d1931bb384694fa.PNG) when user click cancel it will …

Member Avatar for Reverend Jim
0
539
Member Avatar for Naveed_786

Dear All, Good Morning! I am facing this issue i tried a lot but not able to find the issue with this function when i call this function i get error Argument not specified for parameter 'LVL' of 'Public Function UL(LVL As String) As String' The code is listed below, …

Member Avatar for Naveed_786
0
642
Member Avatar for MagnusTheRed90

I have a problem where my text boxes are not being populated with existing data. I have two submit buttons, but the problem appears to happen when I call; return View("Index", siteInfo);. Here is my code; // GET: NewEntry public ActionResult Index() { return View(); } /// <summary> /// Generate …

Member Avatar for MagnusTheRed90
0
175
Member Avatar for MagnusTheRed90

Does anybody know a good way to break a screen up into multiple sections for filling out lengthy multi section data? I would like something that I can break data inputs up into sections and move onto the next section when I finish filliing out a section prior, sequentially. What …

Member Avatar for rproffitt
0
272
Member Avatar for Oxiegen

Hi! It's been a while since I last posted here. I've just gotten started with Windows Service, and have created a sort of 24/7 service to update a database. But because it's my very first project (besides the tutorial one) I feel that I could use some assistance in checking …

Member Avatar for Paul.Esson
0
1K
Member Avatar for Naveed_786

Hi, Good Evening to everyone! I am preparing one application facing some challenges, the scenrio is to send email when a user enter a complaint in the system to the assigned user the assigned user have email address already in the system the email notification should go to assigned user …

Member Avatar for tinstaafl
0
735
Member Avatar for andre.jonker

I want to build a client applications for desktop with NET Framework and MySQL database. i can create new project with windows form control library or windows forms app. What is the difference between this to options? Which of the two do you recommend using and why? thank you in …

Member Avatar for Reverend Jim
0
150
Member Avatar for MagnusTheRed90

So, I am a post grad student in the software development field, and I am not working at the moment, but I have some questions on Business Rules, User Stories, etc. So I was wondering if perhaps we could open up a discussion here on some of the common business …

Member Avatar for MagnusTheRed90
0
308

The End.