Hello ALL, I have GSM EASYGATE Brand Name , How can I write C# program to Send and recieve SMS. Thanks alot
ALAQUNAIBI
Posts
-
GSM -
Cash MachineHello All, I Have Cash Machine , How can I use Microsoft.PointOfService library to Open Drawer Cash?
-
automaticaly refreshThe best way to make this , by using triggers with endpoint in SqlServer 2005
-
Master Page Sharing In ApplicationsPlease Explain more please :)
-
Master Page Sharing In ApplicationsDear all I made application with these steps in this below url which is working perfect. http://weblogs.asp.net/dwahlin/archive/2005/11/16/430779.aspx but when i added big html which cantain
like it gives error below "An error occurred while try to load the string resources (FindResource failed with error -2147023083)" Please tell us why the above error is comming. :( Zafar
-
Sharing master PageHi All, I Have two web site written in Framework 1.1 and I have web site written in visual Studio 2005 How I can make master page to call all pages which written in Framework 1.1 within ContentPlaceholder in MSVS 2005 Site Master Page. Ala Qunaibi :)
-
Front page extension Problemwhen i try to open remote web site in vs2005 from file-->open web site at write path like http://pt.tvtc.gov.sa the message comming The Web server does not appear to have FrontPage Server Extensions installed but the site can open in ftp. please how can i solve that problem? Ala Qunaibi :)
-
Image compressionThanks, My Images are Photos and Compression type is lossless. Can You help me , where can I find source code about What you said, or Examples? Ala Qunaibi :)
-
Image compressionHi All, I want to compress Image to maximum rate, what the best Algorithm can I use? If any one have a class to do that, please give me it ? Ala Qunaibi :)
-
MS Visual Studio compiling [modified]Hi All, I am encountered a problem when I build my project , all Time "Compilation Error" appear !!! what is the problem? how can i solve that's problem ? Ala Qunaibi :)
modified on Wednesday, July 2, 2008 7:28 AM
-
Visual studio 2003 Quit Suddenlywhen we written code dot net restart, not a virus or spay ware
-
How can I use Embeded Font to display Hindi font in WebHello All, How can I use Embeded Font to display Hindi font in Web. I convert Kruti Dev 046 Font for Hindi Language to (.eot) font to use it in My pages , then I wrote the following style in my page but is not work , What's the problem: @font-face { font-family: Kruti Dev 046; font-style: normal; font-weight: normal; src: url(KRUTIDE0.eot); } .style1 {font-family: "Kruti Dev 046"} :)
-
How Can I close Child Form Only in Visual Studio 2005 (c#)Hello All, I Have One form when I click button There another form contain login when user click button ok it check user name and password if it is correct it is close login form How can I do That, Please. :)
-
Visual studio 2003 Quit SuddenlyHello All, I programmed on Visual studio 2003 , I encountered a problem that when I on writing code in visual studio 2003 IDE it is Quit. How can I solve this problem :)
-
anyway for asp.net to send report directly to printer at client side?I am developing a point-of-sales software on asp.net. When sending crystal report to client browser for printing cash bill, browser always popup Acrobat Reader report viewer at client browser before bill can be printed. Anyway for asp.net to send report directly to printer at client side? Too many steps for cashier to get printed bills makes the system unfavorable. ):
-
Problem on installing Visual studio 2005 [modified]Please , Tell me Where could I ask this Question?
-
Problem on installing Visual studio 2005 [modified]I have copy of Visual Studio 2005
-
Problem on installing Visual studio 2005 [modified]Hello All, I Have Windows XP Professional Edition with Service Pack 2, and Ms Visula Studio 2005 Professional Edition . When I want to run setup file to install Visual Stuido to my computer , there are message arise that is "IT is not valid windows 32 Bit File..." I do not know what I do, How can I install Visual stuido 2005 Please Help me.
modified on Wednesday, January 16, 2008 9:33:36 AM
-
disable HTML tags in DataGrid Cells ( VS.Net 2003 )<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="AspTest.WebForm1" %> <%@ Register TagPrefix="cc1" Namespace="MyControl" Assembly="MyControl" %> WebForm1
-
disable HTML tags in DataGrid Cells ( VS.Net 2003 )Hi, Am trying to create a custom DataGrid control the only pursues of this controls is to disable the HTML tags to be drawn in grid cells. Am using VS.Net 2003 / C# This is the controls class
using System; using System.Data; using System.Web; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.ComponentModel; using System.IO; namespace MyControl { /// /// Summary description for CustomDataGrid. /// [DefaultProperty("Text"), ToolboxData("<{0}:CustomDataGrid runat=server>")] public class CustomDataGrid: DataGrid { public CustomDataGrid() { base.CopyBaseAttributes( this ); } protected override void OnItemDataBound(DataGridItemEventArgs e) { foreach( TableCell tblCell in e.Item.Cells) { tblCell.Text = tblCell.Text.Replace(">", ">").Replace("<", "<"); } base.OnItemDataBound (e); } } }
This is the HTML representation on the control on my ASPX Page<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="AspTest.WebForm1" %> <%@ Register TagPrefix="cc1" Namespace="MyControl" Assembly=" MyControl" %> WebForm1