15,793,845 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Python questions
View PHP questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by CaptainChizni (Top 21 by date)
CaptainChizni
19-Feb-19 2:46am
View
Anyway, any solutions on how to increment a varchar?
CaptainChizni
17-Feb-19 23:15pm
View
The rows are all 1. What i am going to do is increment the numbers by 1 then if it reaches 3 the increment will reset
EX.
| order |
| 1 |
| 2 |
| 3 |
| 1 |
| 2 |
| 3 |
CaptainChizni
1-Mar-17 13:17pm
View
Thank you it works btw from now on i will use parameterized queries
CaptainChizni
24-Feb-17 11:21am
View
I remove the * and it works thanks dude :)
CaptainChizni
24-Feb-17 11:19am
View
now it gets an error system.int32 and system.string
CaptainChizni
26-Oct-16 2:47am
View
I fix my query, It works thank you :)
CaptainChizni
21-Oct-16 15:57pm
View
It really works, Thank You :)
CaptainChizni
21-Oct-16 7:46am
View
it works thank you
CaptainChizni
21-Oct-16 7:45am
View
Deleted
it works thank you :)
CaptainChizni
21-Oct-16 1:43am
View
Yes i want to add the values of the 5 textboxes and write the result of this additon into a new cell of my datatable
CaptainChizni
20-Oct-16 13:02pm
View
Thank You
CaptainChizni
20-Oct-16 11:56am
View
do you have a code for this? I'm really new to this
CaptainChizni
20-Oct-16 11:55am
View
Deleted
do you have a code for this? I'm really new to this
CaptainChizni
20-Oct-16 4:57am
View
It Works thank you
CaptainChizni
20-Oct-16 2:43am
View
can you show me the code?
CaptainChizni
9-Mar-16 9:29am
View
Dim constr = "provider=microsoft.ace.oledb.12.0;data source=" & Application.StartupPath & "\Maccount.accdb"
Dim adapt As New OleDbDataAdapter
Dim conn As New OleDbConnection(constr)
Dim rs As New OleDb.OleDbDataAdapter(" Select * from NewAccount where Saccountno = '" & txtHidden.Text & "'", conn)
I was just wondering when it will return the values
CaptainChizni
9-Mar-16 9:28am
View
Dim constr = "provider=microsoft.ace.oledb.12.0;data source=" & Application.StartupPath & "\Maccount.accdb"
Dim adapt As New OleDbDataAdapter
Dim conn As New OleDbConnection(constr)
Dim rs As New OleDb.OleDbDataAdapter(" Select * from NewAccount where Saccountno = '" & txtHidden.Text & "'", conn)
CaptainChizni
9-Mar-16 5:17am
View
always use appropriate column type. For example?
CaptainChizni
8-Mar-16 22:28pm
View
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If Val(WithBox.Text) > bal Then
LowerBalance.Show()
ElseIf Me.WithBox.Text = "" Then
Errorform1.Show()
Else
total = bal - Val(WithBox.Text)
Dim dbcommand As String = "update NewAccount set Samount = '" & total & "'where AccountName='" & TextBox1.Text & "'"
adapt = New OleDbDataAdapter(dbcommand, cn)
dset = New DataSet
adapt.Fill(dset)
'rs.Dispose()
'cn.Close()
Call draw()
End If
End Sub
im getting a problem in else statement. i don't know if it's the data types or my access database. I've try the Option Strict but nothing's happening. Please help me I'm new to vb.net and Ms access if only i can post my database file here
CaptainChizni
8-Mar-16 10:02am
View
One more question i am trying to create a banking system, the problem is when i click the button1 it only executes the if val(withbox.text) statement, how can i decrease my balance in access
CaptainChizni
8-Mar-16 9:40am
View
Thanks it works :)
Show More