No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
I'm a programmer for the past two years (since 2008) professionally. Currently I'm working with VB.NET, C#.NET,CSS, JOOMLA.
- Interests
- I'm a music freak. I love singing and playing guitar, keyboard and Harmonica and Listen to music all…
4 Posted Topics
HI, I have written a code to print the crystal report instead of using print button in the crystal report viewer control.(I have done this in order to keep record of printed pages.) So, now there is a print button in my form, which upon clicked will show the printer … | |
Re: Hello Raviachhwani. [U]SqlDataAdapter works in CLOSED Connection[/U]. So, while working with sqlDataAdapter, you [B]don't need to open and close the connection[/B]. Now, here's the solution to your problem. ([I]This is my approach of coding[/I]) First while loading data into your combo box, do this way: ------------------------------------------------------------------------------- [CODE] Adpt = New … | |
Hello folks, I've written an application to send SMS through GSM mobile using AT commands. It's not working at all. Heres the code below. Can any one tell me what I have done wrong. Private Sub SendSMS() Try SMSPort.WriteLine("AT") SMSPort.WriteLine("AT+CMGF=1" & vbCrLf) SMSPort.WriteLine("AT+CSCA=""+9779851028801""" & vbCrLf) SMSPort.WriteLine("AT+CMGS= ""+9779841892897"" " & vbCrLf) … | |
Re: Hi kingcoder, Here's what you need to do. First, from the database Fields of the crystal report, create a new connection and then add a 'command'.Then edit the command to write your query with parameter. For example: select Custname from table1 where cid={?@cid} Here "{!@cid}" is the parameter that you … |