No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Lead Software Architect / Senior Programmer Analyst. I have many interest, such as programming, guitar, airbrushing and sketching.
- Interests
- New Microsoft Technologies and Multi-tier development
- PC Specs
- 11 Computer Systems / 8 Servers 3 high end workstations
21 Posted Topics
Re: [QUOTE=sonia sardana;993459]I want to after clicking on button2,after that if i click on button1 then msg is not displayed [code] Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MsgBox("sonia") End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click … | |
Re: [QUOTE=lil_Is;965910]Hi all, I am doing a project on the CRM application which sending and receiving sms using the vb.net language. I am no where to conclusions of my project because I could not build the application. I have found many examples but the problem some of the examples some uses … | |
Re: [QUOTE=hardeepbhullar;987897]Hello To All, I want to implement peer-to-peer video streaming in my WPF project. Plz help me by referring any web site or sample code which i can use in my project. Thanks in Advance With Best Regards Hardeep Singh Bhullar [email]er.hardeepbhullar@gmail.com[/email][/QUOTE] This is a rather complex issue. Assuming what … | |
Re: [QUOTE=PysKo;985064]sorry im making another post but i cant edit my old one:P but i decided agaisnt xml and now using ini files with something called [URL="http://sourceforge.net/projects/nini/"]Nini[/URL] if someone can help me with whenever someone clicks the text it then combo box it corresponds to whatever folder or program that text … | |
Re: [QUOTE=lolwtf;965334]Hi Experts, At the office, we are trying to decide if we want to go with Crystal Reports or ComponentOne. If anybody has used both could you list some advantages and disadvantages? Thanks![/QUOTE] I've used both, pending on how much control you need both work quite well. Crystal has alot … | |
Re: [QUOTE=babbu;991580]this is my code [CODE] If Me.txtOldPassword.Text = pwd Then Dim oledbcom1 As New OleDb.OleDbCommand oledbcom1.CommandText = "Update login Set password = ?" oledbcom1.Connection = oledbcon oledbcom1.Parameters.Add("?", OleDb.OleDbType.VarChar) oledbcom1.Parameters(0).Value = Me.txtNewPassword.Text.Trim oledbcom1.ExecuteNonQuery() oledbcon.Close() end if [/CODE][/QUOTE] I am going to suggest you name the params. Ex: [CODE] oledbcom1.CommandText = "Update … | |
Re: [QUOTE=Learning78;992123]Hi; I am new to VB.net and am developing a memory quiz. The quiz contains more than 100 questions imported from access 2002 db. For the learning process, I need to run the game again and again. At the moment, I can't randomize the question order, I am getting the … | |
Re: [QUOTE=yorro;992180]How do I use the User-Controls as a form within a Form? This is my answer to my problem located on [URL="http://www.daniweb.com/forums/thread214973.html"]this thread[/URL] As seen in the original thread's solution, I've used solution #2. Instead of switching forms, I've used switching panels and the controls are contained in those panels. … | |
Re: [QUOTE=sknake;988790]How do you want to store the array? CSV? XML? Binary?[/QUOTE] Another great .NET technique is to understand and implement Object Serialization. Here is an example: Import the following namespace: [CODE] Imports System.Runtime.Serialization.Formatters.Binary [/CODE] Create a new Structure: [CODE] <Serializable()> Public Structure Person Dim Name As String Dim Age As … | |
Re: [QUOTE=Requestmd;961051]Dear Members, Please Help Me. I am in huge problem. Please Send a solution of this problem. problem is:- Read Table of Word File and take cell value and store in excel file using vb.net in VB Please Help me............ thanks Requesmd[/QUOTE] Working with Word is not as difficult as … | |
Re: [QUOTE=jamesrobb;990011]How can I extract repeated paragraphs of data from an html document. Every paragrahp is preceded by the line: <p><i>Summary as passed House:</i> <br> Thanks.[/QUOTE] You can obtain all Paragraph tags using the WebBrowser control using the following technique: [CODE] Dim oElements as HtmlElementCollection oElements = WebBrowser1.Document.GetElementsByTagName("p") For each oElement … | |
Re: [QUOTE=codeambarish;987116]I m creating an sms based application , so how to connect to GSM MODEM using VB.net , do any one have code snippet of this appl[/QUOTE] If you are creating a full fledged SMS app, I will consider you look at using the Windows Mobile API's. They have an … | |
Re: [QUOTE=GeekByChoiCe;990532]hmm could be even easier. if you have functions that you need to call from different forms you can do two things: hand over the control you want to write, edit or w/e in example [code=vb] Friend sub setLabelText (byval lbl as Label) 'do some calculations here lbl.text=calculation End Sub … | |
Re: [QUOTE=jhill1979;985222]Hello, My name is Josh I am in college and I am taking Intermediate VB.Net 2008 and I have been doing ok until now. I have been working on this problem for 2 weeks and still can not get it to do what it is suppose to do and it … | |
Re: [QUOTE=lovelysri16;965447][B]Hi Friends[/B], This is Srinivas. I developed an application n it requires a picture box to be moved over another. When i wrote the code n moved it over another,the latter picture box(only the part on which the former one moves) is fading and black color is getting displayed! Plzzzzz … | |
Re: [QUOTE=danielagaba;985480]hi i developed an app in VS 2008 with vb.net which was intended to have reporting features but unfortunately deploying with crystal reports was too hard so i chose to go with .rdlc but i'm completely clueless on how to use it, whether it has a report viewer, how it … | |
Re: [QUOTE=vasanth.kanna;986545]Hello Friends, When i try to show VB.net interop forms within VB 6.0 i have got the error "object variable or with block variable not set ". I was create interop form library in vb.net and use the created TLB as a referece in VB 6.0 and in button click … | |
Re: [QUOTE=Jumbo12;990231]What is the difference between Common Language Interface and Common Language Infrastructure? Please explain.[/QUOTE] Not sure which context you are asking about, however, I will try and answer what I think you are asking. Common Language Interface (as it applies to .NET) is used by Programming Languages to implement their … | |
Re: [QUOTE=Merovingian;966653]I have two function that replace certain strings in a text file. The first one works perfectly: [CODE] Dim readAlias As String Dim RxDIR As String = Nothing Try RxDIR = Registry.GetValue("HKEY_LOCAL_MACHINE\Software\RLtd\R", "MAIN", False) RxDIR = RxDIR + "\Bin\Configuration\alias.config" Dim sr As StreamReader = File.OpenText(RxDIR) readAlias = (sr.ReadToEnd()) sr.Close() sr.Dispose() … | |
Re: [QUOTE=Rofling Waffles;986227]I dont know what im doing wrong, but the dataadapter, doesnt find the table im looking for: Public Shared Function DSet(ByVal ID As Integer, ByVal Name As String, ByVal Address As String, ByVal City As String, ByVal State As String, _ ByVal ZipCode As Integer, ByVal Phone As String) … | |
Re: [QUOTE=sreeram01;904037]Hi, I am trying to get the html source of the particular webpage that having different frames.i want the html source of a particular frame. Thank you in advance[/QUOTE] Working with the WebBrowser control you can access the Frames within any document. WebBrowser1.document.window.frames("FrameName").document.body.innerHTML If yo don't have the name of … |
The End.