Sending SMS using vb.net or C#.net using vb.net or c#.net
Hi
My requirement is
I hav one csv file with these fields id,mobilenum,messgae,status.intiallu staus is 0.
once i read the all fileds and take that mobile number.using tat mobile number i need to send sms .after sending sms i shuld change status as 1
How to send sms thru coding (please dont provide any links.if it is provide also please give working links becox i checked codeproject .i didnt get any nice link.
and also provide the how to update the status field im csv file
Thank
ssandhya
To send SMS, you need some third party SMS providers. if you consul...
Type.GetType does not work in VB.NET but works in C#. VB.NET gurus Please help
Friends, I am an experienced C# programmer who is working on a VB.NET project now. I am writing different methods covering the following functionalities 1) Take a datareader as input and return an arraylist of class object2) Take an xmlnode (received from a webservice) as input and return an arraylist of class object. The methods are generic methods which take datareader/xmlnode as first parameter and classname (string) as the second parameter. This way it will work trivially. The schema of class object matches with the input (datareader or xmlnode)In C# I used to do th...
how can i write this line using vb.net? :
for (int i = StartRow; i < StartRow + PageSize && i < ProductsTable.Rows.Count; i++)
For x as integer = StartRow to Math.Min(StartRow + PageSize, ProductsTable.Rows.Count) -1Silverlight-helpVb TipsSpace Coast .Net User Group...
use VB.NET and C#.NET code in the same C#.NET project
All-- Here is a sample that is "off the beaten path", (at least for me). Is it possible, in an ASP.NET application, using the code-behind page building technique, to have both pages written in VB.NET and pages written C#.NET?At http://www.WebLogicArts.com/DemoList.aspx there is a sample that shows that, (contrary to popular belief), it IS possible to mix ASP.NET pages built with C#.NET with ASP.NET pages built with VB.NET in the same VS.NET 2003 project. Note that this is just a "fun" sample to see if it can be done and I do not recommend this practice as a "standard" way of develo...
How benificial is it to use VS.NET? Can I do just as well with VB.NET?
How benificial is it to use VS.NET? Can I do just as well with VB.NET?
I'm probably going to be moving from handcoding with HomeSite and ASP Classic to ASP.NET.
From all I read VS.NET seems the tool of choice but expensive. Will VB.NET do just as well if all I plan to write is VB code?
Any other good choices?
Thanks
As far as i know there is no Product" entitled vb.net. Visual Studio.Net 2002/2003 differs from it's non .net predesser (mental block, cant spell - sorry) in that all technologies (ie. VB, c# C++, J#) are developed from within the one application(IDE).
There...
how can i Get OCX File in .net IDE vb.net/C3
hi all,
How can I generate OCX file in VB.net/c# 2005 that will interact in web pages...?Thanks & Regards,Murthy.
Hi murthysrn,
As far as I know, VB 2005 and C# 2005 cannot create the project for ocx file. However, I hope the following link will be helpful to you.
Creating an ActiveX Control in Visual Studio 2005http://msmvps.com/blogs/pauldomag/archive/2006/08/16/107758.aspxSincerely,Benson YuMicrosoft Online Community Support Please remember to mark the replies as answers if they help and unmark them if they provide no help. This can be beneficial to other co...
how can i write this line using vb.net? : public constract() : base(htmlTextWriterTag.a)
how can i write this line using vb.net? : public constract() : base(htmlTextWriterTag.a)
Like this: Public Sub New()
MyBase.New(HtmlTextWriterTag.A)
End SubThanks, EdMicrosoft MVP - ASP/ASP.NET
Public Sub New() MyBase.New(htmlTextWriterTag.a) End Sub
in case this is a converter between C# <> VB.NET
http://www.developerfusion.com/tools/convert/csharp-to-vb/Regards...Nassar, RamiMy Blog || E-Mail Don't forget to click "Mark as Answer" on the post that helped you.This credits that member, earns you a point and marks your thread as Resolve...
use of vb.net and c#.net
i make a small website using vb.net,
in it i make a 2 class in C#.net. that i want to use in that website, i dont know how to call that class.
let your class is - class clsMyClass { public void myFunction() { // do something } } now the first way - create objectclsMyClass myObj = new clsMyClass();myObj.myFunction(); // call function================...
can not add a record to a db table using the vb.net and ado.net
Hi
I am trying to insert record to Pups Database using ado.net and vb.net in a windows application.
This form will collect data from user to insert it into stores table at Pubs database (storeID, name, address etc..).
I am not able to get the new inserted record into the stores table
here is my coude behind for the formImports System.Data.SqlClient
Public Class ParametersExample
Inherits System.Windows.Forms.FormDim con As SqlConnection
Private Sub addBttn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles addBttn.Click
Dim cmd As SqlCommand = ...
used a c#.net to vb.net converter and am now getting a syntax error.
ok I used a cool utility at http://www.kamalpatel.net/ConvertCSharp2VB.aspx to convert some c#.net to vb.net and it spit out a bunch of code which almost works but I am getting a syntax error on this line
Imports (StreamReader sr =
Shadows Function)() As StreamReader(objResponse.GetResponseStream())
I tried it that way and also like
Imports (StreamReader sr = Shadows Function)() As StreamReader(objResponse.GetResponseStream())
but either way gave the same error
Compiler Error Message: BC30035: Syntax error.
Source Error:
Line 26:
Line ...
converting to vb.net from c#.net authorize.net
authorize.net offered me some sample code when I signed up with them the only problem is the sample code is in c#.net but my page that they type all of their credit card into is vb.net
<code><%@ Import Namespace="System.Net" %>
<%@ Import Namespace="System.IO" %>
<script language="C#" runat="server">
void Page_Load(Object Src, EventArgs E) {
myPage.Text = readHtmlPage("https://certification.authorize.net/gateway/transact.dll");
}
private String readHtmlPage(string url)
{
...
What can c#.net do that vb.net can't?
That's pretty much my question - what can you do with c#, in terms of web application building, that you can't do in vb.net?
Thanks
Which language you choose is pretty much up you, your preferences and previous experience. There are some differences, but most importantly one have to realize that all .Net compliant languages are translated into an Intermediate Language and at the end of the day, what run is pretty much the same. Read this if you need to know more:
"Microsoft Programming Languages"
http://msdn.microsoft.com/vstudio/productinfo/whitepapers/default.aspx
...
How can i write this line: string[] nicks = new string[ users.Count ];
How can i write this line: string[] nicks = new string[ users.Count ]; - using vb.net?
when:
users = new Hashtable();
and also what the diffrence between: users.count and users.keys.count?
Dim objHashTable As New Hashtable()
objHashTable.Add("FName", "Bino")
objHashTable.Add("LName", "Bose")
objHashTable.Add("PNumber", 9895612345)
This way you can add items to a hashtable in VB.NetCheersBinowww.codepal.co.inPlease Mark as Answer if you find the post useful.
Dim Users As New Hashtable()
Dim str As String() = ...
Upgrade VB.net 2002 to VB.net 2003
Hi, i want to upgrade VB.net 2002 to VB.net 2003.what is the procedure?Uninstall 2002 and Install 2003 or something else? VB.net 2003 includes Framework 1.1 or i will install it separately?thanx in advance ...