Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #2K
~7K People Reached
Favorite Forums

23 Posted Topics

Member Avatar for paoi00

you must first save the image that you capture . and make an upload button and locate the picture that you saved and place it in picturebox 5

Member Avatar for paoi00
0
338
Member Avatar for Denden17

Hello guyz. anyone here have a reference for Gaussina Jordan Elimination. ? for 2x3 and 3x3 ? need help

Member Avatar for gregha04756
0
170
Member Avatar for linabeb

might not installed properly (i guess) but why not try Re install it again ? or download another IDE. and also ByVal make difference. theres a two Type ByVal and ByRef http://www.youtube.com/watch?v=zo716UJ5r60

Member Avatar for linabeb
0
120
Member Avatar for yumyam09

change your sql statement sql = "SELECT Position FROM tbllogin WHERE username = ' " & txtUsername.text & " ' " NewDataSet(sql) if .ds.Tables("a").Rows.Count= "Administrator" Then employeeFile.btnDelete.Enabled = True else if ds.tables("a").Rows.Count <> "Administrator" Then employeeFile.btnDelete.Enabled = False End if . hope it works

Member Avatar for Reverend Jim
0
110
Member Avatar for millionub40
Member Avatar for Denden17

Hello im planning to make Barcoded ID in my system. I just dont know where to start. im also planning to buy a GENERIC Barcode reader but i dont know where to start coding. Note: Im still a student this is not for profit or anything :) Just exploring new …

Member Avatar for Denden17
0
116
Member Avatar for brylle

Ok its fun solving it. anyways heres the code :) 'Subroutine for Letteronly Private Sub LetterOnly(ByVal e As System.Windows.Forms.KeyPressEventArgs) If Asc(e.KeyChar) < 65 Or Asc(e.KeyChar) > 90 And Asc(e.KeyChar) < 97 And Asc(e.KeyChar) > 122 Then If (Asc(e.KeyChar) <> 32) Then e.Handled = True End If End If If Asc(e.KeyChar) …

Member Avatar for brylle
0
202
Member Avatar for ss123456

'Try this code con.open sql = "SELECT * FROM YOUR TABLE WHERE P_ID = " & YourTextBox & " cmd = New oledb.oledbcommand(sql,con) 'cmd = command. con = connection dr = cmd.executereader 'This would be your data reader while dr.read textboxPName = dr("p_name") textboxPManager = dr("p_manager") end while con.close

Member Avatar for ss123456
0
255
Member Avatar for mohana_61

Ok try this. Connection 'Initialize you PROVIDER AND DATA SOURCE con.open sql = "SELECT * FROM YOURTABLE" cmd = New Oledb.OledbCommand(sql,con) cmd.commandtype = commandtype.text da = New Oledb.OledbDataAdapter(cmd) cb = New Oledb.OledbCommandBuilder(da) ds = New Dataset da.fill(ds) Datagridview1.Datasource = ds.tables(0) con.close 'Remember you must have to close the connection before …

Member Avatar for Denden17
0
172
Member Avatar for Codaholic
Member Avatar for Denden17

Hi guyz. have you work on on this project/app . i want to add this feature on my system but im lacking of knowledge on it. If only i have the reference for it. Or Example project. Hoping someone will share . TIA :) Like this output. http://www.codeproject.com/Articles/148500/Event-Calendar-for-an-ASP-NET-MVC-Application

Member Avatar for Denden17
0
65
Member Avatar for testname123

Supposedly you have two Forms. Form1 Put this Code in a Button to show Form2 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Form2.Show() End Sub 'Form2 code to hide a Button in Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click …

Member Avatar for testname123
0
1K
Member Avatar for Denden17

Hello . need help about sql statements im using this in my VB.net project about sorting Varchar2 datatype like a Number for example //I want this to be outputed. 1 2 3 4 4A 4B 5 6 But when i use this SELECT PUROK FROM TBLPUROK ORDER BY ldap(PUROK,10) ASC …

Member Avatar for Reverend Jim
0
216
Member Avatar for mohana_61

i use Oledb But you can use it into SQL just translate it:) put this into the button you want to roll over or Event that would make it Connection ' Set Your Connection con.open sql = "SELECT MAX(ID) AS RollNumber FROM YOURTABLES 'SQL Statement cmd = New Oledb.OledbCommand(sql,con) 'cmd …

Member Avatar for mohana_61
0
294
Member Avatar for Denden17

Hello, anyone here have an idea of making your form more dynamic while not in a runtime i mean the form maximum size is the same as my screen resolution here in pc. i just want to add more control in that form but i cant because the maximum size …

Member Avatar for Denden17
0
91
Member Avatar for Denden17

Hi guyz, anyone here who know how to set your form in a full screen in any type of screen resolution. Like for example im working here in my pc with a resolution of 1366x768 now if i want my application to run in another pc with another screen resolution …

Member Avatar for Denden17
0
242
Member Avatar for hrul

'Its because dbConn is not declared you may solved it by declaring it like: 'Dim dbConn as New Oledb.OledbConnection dbConn = New OleDbConnection(cnSettings())--> not declare 'Not been initialized because you dont have yer propery declare your variable and not yet connect it with database dbConn.Open() -->The ConnectionString property has not …

Member Avatar for Begginnerdev
0
186
Member Avatar for Denden17

Heres what i want to do. I want to check the two fields in my table | I use Ms Access the fields are EmployeeID | StartingDayWork Sql = "Select * from Employees where EmployeeId = '" & txtID.text & "'" 'This is running but whenever i add StartingDayWork it …

Member Avatar for Mitja Bonca
0
126
Member Avatar for Denden17

Employee Record Hello, Ive just wanted to get the idea for my problem. Im making payroll system now. I just wanna know what is the way of tracking the record of employee when i save theyre info in payroll. Like if the employee got paid in these date lets just …

Member Avatar for Begginnerdev
0
144
Member Avatar for Denden17

Any1 here i just need help regarding my System. In Log In Form. I need to be able to terminate/locked the account in vb.net if the user input wrong username/password in my Log In form like 3 attempts is good. and be able to enabled the account also as an …

Member Avatar for Denden17
0
2K
Member Avatar for Denden17
Member Avatar for Japp007

love the line. -The best way to learn is to explore . :) and welcome granny ^^

Member Avatar for Denden17
0
134
Member Avatar for collin_ola

Here try : the incr variable is set to as -1 of course no value such as -1 in ms access you need to be set it at 0 just try. Hope it works

Member Avatar for collin_ola
0
298

The End.