Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
8
Posts with Upvotes
8
Upvoting Members
7
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
1 Endorsement
Ranked #857
Ranked #1K
~12.2K People Reached
About Me

I love programming. Done it all my life. I also enjoy showing others how to do something that can help them solve a problem or give them further insight.

PC Specs
undisclosed
Favorite Tags
Member Avatar for swaroop.striker

Could someone please tell me hw 2 validate e-mail address on an event in vb.net??

Member Avatar for shama.shirva
0
3K
Member Avatar for lxXTaCoXxl

I'm trying to learn how to create plugins, the only problem is my friend only knows .NET, I know C# and can partially read .NET. Is there anyone in this section that can convert this all over to C# for me so I can truly study it? [code]Public Interface IPlugin …

Member Avatar for lxXTaCoXxl
0
190
Member Avatar for archelle

Anyone here who knows how to convert system month,Day,Hour,Minutes,Seconds each into number format like month=12 (If December) Day=30 Hour=12 (In 24 hour format) Minutes=55 Seconds=45 Thanks for help in advance...

Member Avatar for archelle
0
130
Member Avatar for lbgladson

How do I get the console from closing immediatley upon opening in a Console Application program? I have all of the code written but when I run the program it pops up the console window and then immediatley exits so I am unable to read what is in the window …

Member Avatar for Begginnerdev
0
249
Member Avatar for adnysam

Dear Programmers I have an issue when I place a label box / other component in the MDI Parent form and then open any child form the label box/ other component displayed in child form (Show in SpanShot), could you please help me out to regret this problem, Thanks in …

Member Avatar for adnysam
0
134
Member Avatar for kothaisaravan

Hi, Am using VB.NET. I have a search page in one form(Search.vb) and another form(Form1.vb) to display the details of selected data from the search form. I already have back button in Form1.vb which returns to some other form say (Action.vb). In case of searching data it returns to Form1 …

Member Avatar for kothaisaravan
0
783
Member Avatar for OblibSystems

Basically im trying to make a game where shapes fall from the sky and the user controls the sprite to avoid them. I have it working but only with 1 block falling at a time. I am using the paint method to draw my shapes. I was wondering how to …

Member Avatar for the_carpenter
0
223
Member Avatar for the_carpenter

Hi... I've been doing ASP.Net for years, but I am very new at PHP. I need to redirect a user to a specific page based on the refereeing page. There's no way to calculate what the page should be so I figure I would have to use MySQL and look …

Member Avatar for chrishea
0
188
Member Avatar for cyberdaemon

Good day. I am having a trouble on how to update my reocrds on my 2 tables. 1 table is sample and the other table is tbl_educ. my sample table which has a pk of emp_id while the tbl_educ has a field of emp_id they are related by one-many relationship. …

Member Avatar for cyberdaemon
0
97
Member Avatar for johndoe444

In my office I have two machines connected two networks - one has IP say 21..... and another has IP say 25... Now the thing is that both of the machines can access Internet. But there is a problem pinging among each other. I have been told that has been …

Member Avatar for the_carpenter
0
156
Member Avatar for bhagawatshinde

Hi i am working on windows application . I am opening an math type using button want to select all and copy send keys are not working here is my code ... [code] Dim proc As New Process() With proc.StartInfo .Arguments = "file_path.bmp" .UseShellExecute = True .WindowStyle = ProcessWindowStyle.Normal .WorkingDirectory …

Member Avatar for bhagawatshinde
0
1K
Member Avatar for Creatieven

Hi there, I Have a question about binding (pageID + PermissionID) to a checkbox/ checkboxlist, without using a textbox or any other tool. The thing is, i'm working on something just for exploration is it possible to have multiple checkboxes all bind to a different pageID but all have same …

Member Avatar for the_carpenter
0
83
Member Avatar for uzn

This is the error when i try to execute my code "Procedure or function 'Get Customer data' expects parameter '@Name', which was not supplied." [CODE]objCommand.CommandType = CommandType.StoredProcedure objCommand.CommandText = "GetCustomerData" Dim ObjParam1 As New SqlParameter("@Name", SqlDbType.VarChar, 2000) ObjParam1.Value = ID.ToString() Dim da As New SqlDataAdapter(objCommand) Dim dt As New DataTable …

Member Avatar for crapulency
0
164
Member Avatar for Kiseki

hi guys, just wondering is it possible to set all the textbox align to center within a form using just only one line of code? Rather than using [CODE] 123TextBox.TextAlign = HorizontalAlignment.Center 456TextBox.TextAlign = HorizontalAlignment.Center [/CODE] for every Textbox. Thanks.

Member Avatar for Kiseki
0
820
Member Avatar for jatt09

hi i really need help, i m trying to write a program that displays in a textbox a talbe of the binary, octal, and hexadecimal equivalents of the decimal numbers in range 1-222. Plz help i m new to vb....Thks you

Member Avatar for jatt09
0
182
Member Avatar for chbichib

[code] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim frm1 As New Form1 Dim n As String = Label4.Text Dim ConStr As String = "provider=microsoft.jet.oledb.4.0;" & _ "data source= " & Application.StartupPath & "\" & "Mydata.mdb;" Dim connection As New OleDb.OleDbConnection(ConStr) Dim savinto As New …

Member Avatar for kvprajapati
0
145
Member Avatar for Naveed_786

How to make clients on sql server i mean when i will install my application on clients how i will connect it with sql server?

Member Avatar for kvprajapati
0
147
Member Avatar for scias23

I have a 18kb 1024 x768 jpeg image that is set as background image of my form. The problem is the form now lags like crazy. How can I eliminate the lag?

Member Avatar for the_carpenter
0
106
Member Avatar for napkinbob

Hello. I need some advice. Here is my scenareo. I have a form displayed where a user can can select a 'function' from a list box. That 'function' has a corresponding ID number which I need to be able to take and use later in the code. The List of …

Member Avatar for the_carpenter
1
243
Member Avatar for Simran Kaur

Hi friends, I am migrating VB6 project to VB.Net. I am stuck with these warnings for which I am unable to find solutions. I would be grateful if I get solutions to atleast some of the below warnings. Warnings: ------------- Need VB.Net equivalent for the below code as they are …

Member Avatar for Simran Kaur
0
2K
Member Avatar for laptop545

Hello All, I have a question regardind=g accessing shared resources. I have a for loop in which i am creating many threads.. And each thread at some point of time they call this function : [code] Public Function UpdateMailJobs(ByVal con As Data.DataRow, ByVal jobid As String, ByVal varName As String, …

Member Avatar for the_carpenter
0
169
Member Avatar for mustangBE

hello i have an appl. in vb2008 with a datagridview. when i import my data from excel (colum with text and numbers)it only imports the numbers or the text , not the both. example : 120 150 set25 160 "set25" is not imported example : set120 150 120 set130 "150 …

Member Avatar for mustangBE
0
112
Member Avatar for srice

I'm trying to populate my textboxs with data from my database when the user name is selected but I'm having trouble getting the code right. Help Please! table users (there is a textbox for each of these fields) password lastname firstname Using upcmd As New SqlCommand("SELECT * FROM users WHERE …

Member Avatar for srice
0
152
Member Avatar for lucaazori

Hi, i would like to share you my problem in order to get solution `cause i gonna be crazy :( Actualy when i do click to insert button in my form i get this error: [ATTACH]17077[/ATTACH] the strange is when i close this window and i do click again the …

Member Avatar for lucaazori
0
182
Member Avatar for msrd

Hi all, I'm fairly new to VB. I'm working on a Windows forms app that will average a set of numbers, the only catch is that there are 10 textboxes(4 in the example for times sake), and not all of the textboxes could be filled with a number... I know …

Member Avatar for msrd
0
93
Member Avatar for hosseinel

[code] hi, i have been having an endless problem with the save button for some time and i am also new in here. Actually, here's how my problem defines: i was developing my own project in the university so what i am stack is to have save button which firstly …

Member Avatar for the_carpenter
0
162
Member Avatar for zulhimi89

If there any solution on how to choose specific column..what is the code?? i'm using VB.Net [CODE] If e.Row.RowType = DataControlRowType.DataRow Then Dim CellValue As Decimal = Convert.ToDecimal(e.Row.Cells(4).Text) If CellValue < 5.0 Then e.Row.Cells(4).BackColor = Drawing.Color.Orange End If End If [/CODE]

Member Avatar for zulhimi89
0
90
Member Avatar for kalyan2642

hello geeks, this is my first post, and my question is... i have some text files from which my app reads and process data, these text files are in hundreds and i am now providing them in a folder, but these should not be accessed by others, how i can …

Member Avatar for the_carpenter
0
149
Member Avatar for bettybarnes

i have a problem with saving data to access database this is my code [CODE] Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click If inc <> -1 Then Dim cb As New OleDb.OleDbCommandBuilder(da) Dim dsNewRow As DataRow dsNewRow = ds.Tables("Personnel").NewRow() dsNewRow.Item("PerID") = txtPersonnelID.Text dsNewRow.Item("FirstName") = txtFirstName.Text …

Member Avatar for the_carpenter
0
165
Member Avatar for M.rahul

HI all, I'm Fresher. I need information regarding [U]Axmscomm control [/U]in vb.net.Please guide me how to use this tool? What are the Libraries i should use? please provide me some source.I strucked with control. I searched a lot for this.I'm doing windows application using vb.net. hoping for the best Thank …

Member Avatar for the_carpenter
0
62