Posts
 
Reputation
Joined
Last Seen
Ranked #560
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
84% Quality Score
Upvotes Received
57
Posts with Upvotes
49
Upvoting Members
33
Downvotes Received
9
Posts with Downvotes
6
Downvoting Members
9
19 Commented Posts
~107.33K People Reached
About Me

Here for teach what i know & learn what you know. So help each other.

Interests
Coding. Music (Trance only). Learning new technologies.
PC Specs
Windows 7, with 2GB RAM and 320 GB HDD. Nothing special..... But have VS2010

143 Posted Topics

Member Avatar for collin_ola

This is very simple... try this.. [CODE] Public Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ComboBox1.Items.Clear() Try db.con.Open() Dim da As New SqlDataAdapter("select * from student where id>3", db.con) Dim ds As New DataSet da.Fill(ds, "1") For i As Integer = 0 To ds.Tables("1").Rows.Count - 1 …

Member Avatar for Muskan_9
0
8K
Member Avatar for kishpopboy

Ok you can try this... [CODE]Dim d1 As DateTime Dim d2 As DateTime Dim ts As TimeSpan Dim ts2 As TimeSpan Dim tsFinal As TimeSpan 'Time format is 10:35:23. So in textbox you must type like this... d1 = DateTime.Parse("1/1/2012 " + Me.TextBox1.Text.Trim) d2 = DateTime.Parse("1/1/2012 " + Me.TextBox2.Text.Trim) ts …

Member Avatar for CERTIVE
0
5K
Member Avatar for davy_yg

I am assuming you are using Codeigniter .. 1. Check your route.php file for correct route entry. 2. Check if your local server is running properly. (Like WAMP) I think it's a routing problem. Please reply with your route.php code. If you are using Codeigniter.

Member Avatar for Dani
0
490
Member Avatar for Emrah_1

You must have saved those information somewhere in your database. And then only you can display them after reading the barcode. Most of the Barcode reader actually read the bar code and product its alphanumeric value. So make a table like id Barcode ProductName Description Image ----------------------------------------------------- 1 ABCD12 XYZ …

Member Avatar for kingsonprisonic
-1
410
Member Avatar for kingsonprisonic

First thing is this is a long question. So please first read it then give me your suggestion. currently i am working on a banking projects for my degree. Where i am implementing a simple bank savings account. Where account holder can deposit and withdraw money. The account starts with …

Member Avatar for Mr.M
0
361
Member Avatar for tomexlfc

Actually your programming LOGIC is not correct... Your code: [CODE] Private Sub btnSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearch.Click provSrcStaf = "PROVIDER=Microsoft.ACE.Oledb.12.0;" souSrcStaf = "DATA SOURCE=D:\RTLSALimited.accdb" conSrcStaf.ConnectionString = provSrcStaf & souSrcStaf If txtSearch.Text = "" Then MessageBox.Show("Enter valid Staff ID", "RTL SA Rubber Limited.", MessageBoxButtons.OK, MessageBoxIcon.Error) txtSearch.Focus() …

Member Avatar for waseem.akhtar.3572
0
16K
Member Avatar for bernardz26

So you want to store the radio button state into database. If i am right then just check the values or all radio button by using [CODE]RadioButton1.Checked[/CODE] Now suppose you have a table where a field for saving the state is [rad] then find which radio button is checked and …

Member Avatar for gmmorpheus
0
1K
Member Avatar for kingsonprisonic

This module is for validating textboxes.... After using this module in your project you can simply validate all of your text boxes like [CODE] Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load AssignValidation(Me.TextBox1, ValidationType.Only_Digits) AssignValidation(Me.TextBox2, ValidationType.Only_Characters) AssignValidation(Me.TextBox3, ValidationType.No_Blank) AssignValidation(Me.TextBox4, ValidationType.Only_Email) End Sub [/CODE]

Member Avatar for Iamateur
4
1K
Member Avatar for ng5
Member Avatar for ben.ot.18
-1
437
Member Avatar for blackcathacker
Member Avatar for abelLazm
Member Avatar for vinnitro
6
1K
Member Avatar for kingsonprisonic

Hi all, **First of all please read the full article and then try to suggest me...** I want to make a java project on streaming video encryption. Where i will use two PCs 1 act like a media server and other act like a client. So a video file (example.avi) …

Member Avatar for kingsonprisonic
0
379
Member Avatar for kingsonprisonic

I need AT(ATtension) Commands for Mobile Easy Recharge. Currently i have using sim300_v7.02 gsm modem for my project. Now i need AT Command for Accessing the menu from sim. Also i need at commands for mobile easy recharge, easy recharge can be done through my sim card

Member Avatar for rayidi
0
212
Member Avatar for XEN0
Member Avatar for XEN0
0
409
Member Avatar for linux

010101110110010101101100001000000111011101101000011000010111010000100000011010010111001100100000011101000110100001101001011100110011111100100000010010010111010001110011001000000110111001101111011101000010000001100001001000000110011101100001011011010110010100100000011010010111010001110011001000000110000100101110001011100010111000101110

Member Avatar for vinnitro
2
1K
Member Avatar for kingsonprisonic

Hi, I am currently making an application which can send recharge amount by using a mobile device. (Nokia E71). So if anyone know what is the AT command for that please help me.....

Member Avatar for kingsonprisonic
0
941
Member Avatar for roshu10

You can use Timer Control for this. Just add timer and set its interval to 5000(5 Second). Now when play button clicked just play the video and start the timer. [CODE]Timer1.Start()[/CODE] Now in timers event just write this [CODE] Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles …

Member Avatar for Gé48
0
157
Member Avatar for outout1234
Member Avatar for ninjatalon

In SQL [CODE]select Table1.ID,Table1.NAME,Table1.AGE,Table1.ACOLUMN3,Table1.ACOLUMN4,Table1.ACOLUMN5,Table2.BCOLUMN3,Table2.BCOLUMN4,Table2.BCOLUMN5 from Table1 join Table2 on Table1.ID=Table2.ID[/CODE]

Member Avatar for ninjatalon
0
134
Member Avatar for ujjwale

Please describe clearly.... Where you getting error?? In command prompt??

Member Avatar for javalover
0
138
Member Avatar for poolet25

Here is the error [CODE] Public Sub SaveNames(ByRef SQLStatement As String) Dim cmd As MySqlCommand = New MySqlCommand 'Here you have to open the connection so use---> SQLConnection.Open() With cmd .CommandText = SQLStatement .CommandType = CommandType.Text .Connection = SQLConnection .ExecuteNonQuery() End With SQLConnection.Close() MsgBox("Successfully Added!") SQLConnection.Dispose() End Sub [/CODE]

Member Avatar for M.Waqas Aslam
0
3K
Member Avatar for kroysemaj

Ok done baby done.... [URL="http://www.mediafire.com/?ll3zbtatafdbuok"]http://www.mediafire.com/?ll3zbtatafdbuok[/URL] Download this project ... I strongly believe that you will kiss me...

Member Avatar for kroysemaj
0
590
Member Avatar for senbaris

Please show us some portion of your code so we can help you. By the way what is your problem actually??

Member Avatar for senbaris
0
1K
Member Avatar for dhaval.2cool
Member Avatar for moone009
Member Avatar for PutingPanday

You can try this [URL="http://vb.net-informations.com/communications/vb.net_socket_programming.htm"]http://vb.net-informations.com/communications/vb.net_socket_programming.htm[/URL]

Member Avatar for kingsonprisonic
0
142
Member Avatar for dilse4sk

In your code i can't see any possibility to add record twice. So i think you must post your full code for all the controls your use in your form. Just only this forms code... Ok..

Member Avatar for dilse4sk
0
134
Member Avatar for easygi

I think this will help you [CODE] Dim replace As String = CDate(textbox1.text).AddDays(7).ToString("yyyy-MM-dd") [/CODE]

Member Avatar for easygi
0
446
Member Avatar for ng5

In formClosing event just use a loop [CODE] Dim sw As New System.IO.StreamWriter("Path for the file like C:\abc.txt") For i As Integer=0 To Listbox1.Items.Count-1 sw.WriteLine(Listbox1.Items.Item(i)) Next sw.Dispose() [/CODE]

Member Avatar for ng5
0
214
Member Avatar for bilal_fazlani
Member Avatar for timosoft

Use Visible property instead of Bringtofront like [CODE] 'Label17.SendToBack() - Dont use that. Use Label17.Visible=True 'And for opposite just use Label17.Visible=False [/CODE]

Member Avatar for M.Waqas Aslam
0
236
Member Avatar for gozo12

just change the loop [CODE] Do While FileStream.Position < FileStream.Length if BinaryReader.ReadBoolean=True Then CheckedListBox1.Items.Add(BinaryReader.ReadString) CheckedListBox1.SetItemChecked(CheckedListBox1.Items.Count - 1, BinaryReader.ReadBoolean) End If Loop [/CODE]

Member Avatar for M.Waqas Aslam
0
456
Member Avatar for poojavb

[QUOTE]if the user has opened the .mdb file then it shud be closed and also that when the application is running no one shpuld be able to open the .mdb file....[/QUOTE] Open by what?? Your application or 3rd Party app??

Member Avatar for poojavb
0
190
Member Avatar for easygi

Yes you can. Try socket... [URL="http://vb.net-informations.com/communications/vb.net_socket_programming.htm"]http://vb.net-informations.com/communications/vb.net_socket_programming.htm[/URL] In this tutorial you can learn socket and how it works in VB.Net.. After learning Make a server and a client... Client will send a command for time-->Server will receive that---->Server Send the current time---->Client receive it and show it into Label.... Understand...

Member Avatar for Reverend Jim
0
424
Member Avatar for Alex_2011

ok for Decimal you can try [CODE] if str(val( AClient.AccountNumber)).Trim <> AClient.AccountNumber.Trim Msgbox "Please Enter a correct decimal Number" End If [/CODE]

Member Avatar for Alex_2011
0
277
Member Avatar for Farhan_B

Because u declare acscmd as OleDb.OleDbCommand Object. But use objcmd in your code. Actually objcmd is not declared So you get the error.

Member Avatar for M.Waqas Aslam
0
142
Member Avatar for dilse4sk

Ok just grab the username and id from database and show.... Or else Post your code....

Member Avatar for dilse4sk
0
119
Member Avatar for madao

I think this is a static field. I mean each record you insert the status field initially assigned 'open' . Understand!!!

Member Avatar for kingsonprisonic
0
87
Member Avatar for vivekanandaan

I think you miss the "Values()" part. [CODE] Insert Into Table1(Field1,Field2,.....) Values(Val1,Val2,.....) [/CODE] This is the correct form of SQL Insert...

Member Avatar for Reverend Jim
0
80
Member Avatar for kingsonprisonic

This is a problem i face all the time. When post count of a thread is too high it is split into pages (Page 1, Page 2, ....). So if a user, when replying, want to see the previous post he must have to navigate to that specific page.. Is …

Member Avatar for deceptikon
0
122
Member Avatar for ndodi

Yes you can if you have a fixed IP address then you can make your mdf file use as server. So that each client connect the database....

Member Avatar for ndodi
0
230
Member Avatar for timosoft

Try this... [CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim t(4) As TextBox t(0) = Me.TextBox1 t(1) = Me.TextBox2 t(2) = Me.TextBox3 t(3) = Me.TextBox4 Dim cindex As Integer = 0 For i As Integer = 0 To 3 If t(i).Text.Trim = "A" Then …

Member Avatar for timosoft
0
190
Member Avatar for networkmancer
Member Avatar for Farhan_B
Member Avatar for whitetigerz79
Member Avatar for ng5

Try this.... [CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If Me.ListBox1.SelectedIndex > -1 Then Me.ListBox1.Items.RemoveAt(Me.ListBox1.SelectedIndex) End If End Sub [/CODE]

Member Avatar for ng5
0
176
Member Avatar for smudehelper

Try this [CODE] Dim j As Integer = 0 While j <= Me.ListBox1.Items.Count - 1 Dim i As Integer = 0 For i = 0 To Me.ListBox2.Items.Count - 1 If Me.ListBox1.Items(j) = Me.ListBox2.Items.Item(i) Then Exit For End If Next If i = Me.ListBox2.Items.Count Then Me.ListBox2.Items.Add(Me.ListBox1.Items.Item(j)) Me.ListBox1.Items.RemoveAt(j) Else j += 1 …

Member Avatar for smudehelper
0
113
Member Avatar for macdunk11

Try this [CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim calories As Integer = 0 For i As Integer = 0 To RcpRqrLstBx.Items.Count - 1 Dim tokens() As String = RcpRqrLstBx.Items.Item(i).Split("-") Select Case tokens(0) Case "eggs (each)" calories += 72 * Val(tokens(1)) Case "flour …

Member Avatar for kingsonprisonic
0
84
Member Avatar for roshu10
Member Avatar for roshu10
0
101
Member Avatar for marcmanlin2

[CODE] ListBox1.Items.Clear() Try con.Open() Dim da As New SqlDataAdapter("select * from student where id="+Me.TextBox1.Text, db.con) Dim ds As New DataSet da.Fill(ds, "1") For i As Integer = 0 To ds.Tables("1").Rows.Count - 1 Me.ListBox1.Items.Add(ds.Tables("1").Rows(i)(0) + " - " + ds.Tables("1").Rows(i)(1)) Next Catch ex As Exception MsgBox("Error : " + ex.Message) Finally …

Member Avatar for marcmanlin2
0
222

The End.