13,153 Topics

Member Avatar for
Member Avatar for jackparsana

Hi, Please help me to do this. I have application for send bulk SMS. But when i send SMS, like : "Hello Word" then it will message me like : "HelloWord" it remove space. so how can i manage. help me thanks in advance. jack

Member Avatar for jackparsana
0
187
Member Avatar for cent91

i wanna use the Sleep fucntion in a CLR vc++ app, if i include windows.h it gives a huge list of errors, if i use _sleep() then it dowsnot work at many systems since its obslete. what should i do? i am bound to use CLR bcoz my code uses …

Member Avatar for cent91
0
420
Member Avatar for naraza

how can i use to show the selected value from data set i think there is a problem of dataset use to take out value from data set my code is [code] protected void Page_Load(object sender, EventArgs e) { SqlDataAdapter adap = new SqlDataAdapter("SP_selectallbooks", con); adap.SelectCommand.CommandType = CommandType.StoredProcedure; //DataSet ds …

Member Avatar for naraza
0
335
Member Avatar for naveedqadri

Hi Experts, I have asp.net application already published with x86 ( i am not sure but can not working properly on windows server 2008 64 bit with oracle), through googling i found that i need to change application to Specific CPU through VS2005. There is also solution: To explicitly set …

Member Avatar for kvprajapati
0
185
Member Avatar for mrinsult2000

I'm trying to make a simple internal website with some links that would allow a user to install some basic software, but... I am failing thus far. Basically, I have 4 MSIs and 3 EXEs that I would like my users to choose from to install. Ideally, I would like …

Member Avatar for kvprajapati
0
83
Member Avatar for CodeBoy101

Hi all! I am using Visual Studio 2008 and I was wondering is there a way to get the colour of text in a menu item to change color during a mouse over. So for example, if I was cycling through a list of items, the item that was currently …

Member Avatar for kvprajapati
0
162
Member Avatar for buvanarajamani

i need a sample program to implement synchronization concept for a website... i have an application connected with oracle database. i have to open the same application simultaneously in two visual studio ide to perform the same operation or different operation accessing the same database in a synchronized manner using …

Member Avatar for kvprajapati
0
106
Member Avatar for olybobo

Dear all; I have the following code below and I have been spending time trying to debug it but I can't understand why I am getting the illegal character error message. See my code below. Thank you. workheader.master.cs [CODE] using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using …

Member Avatar for olybobo
0
153
Member Avatar for judithSampathwa

hi i have a datetime picker in user control form in C#. when i load the user control i want the datetime picker to disply no value in the datetime picker box. the code is below. [CODE] dpEDate.Format = DateTimePickerFormat.Custom; dpEDate.CustomFormat = " "; [/CODE] and when the user control …

Member Avatar for judithSampathwa
0
233
Member Avatar for ruchi18

I am having an issue in my project trying to developing a mail webservice but getting an error transport failed to connect to server. Below is the code... [code] protected void btnsubmit_Click(object sender, EventArgs e) { MailMessage mail = new MailMessage(); mail.From = "ruchi.dubey18@gmail.com"; mail.To = txtTo.Text.Trim(); mail.Subject = txtSubject.Text.Trim(); …

Member Avatar for kvprajapati
0
649
Member Avatar for alehabajose
Member Avatar for valestrom

Hi, I got the error C2064: term does not evaluate to a function taking 2 arguments The error is in line 76, help would be great. Here is my code: [CODE]#pragma once namespace ValestromsCalculator { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; …

Member Avatar for valestrom
0
472
Member Avatar for divin757

I am having trouble debugging in sharepoint. It is acting like I am debugging a different dll than the one I made code for. When stepping through it will skip lines occasionally and randomly just stop debugging. Often it will start debugging then stop randomly and show any new breakpoints …

Member Avatar for divin757
0
187
Member Avatar for naveedqadri

Hi Experts: When i run this page on my online website with mysql (already with Oracle), this errors orrurs. Exception Details: System.Data.OleDb.OleDbException: [1]: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'exec print_pack.check_print …

Member Avatar for naveedqadri
0
315
Member Avatar for papershop

Dear All i need help how to insert data into sql database form a datagrid... this is the example.... i have view data from tabel sales in a data grid product name sales jan sales feb sales mar MILK 10 15 20 Biscuit 7 6 9 Tea 5 15 30 …

Member Avatar for pritesh2010
0
135
Member Avatar for Scott.Atkinson

Hi All, Im in the process of creating a task logging system for where i work, and at the moment im in the process creating a ajaz function where it will return a list of all users depending on what team the user has selected from the 1 dropdownlist but …

Member Avatar for Scott.Atkinson
0
180
Member Avatar for aalokwar

Hi, I want to browse compete drive/folders and lists of file from server using ASP.NET 2.0 web application. Displayed files when clicked, should get open in a new window or in same window. Please help me with a demo project, if any available. Thanks in Advance.

Member Avatar for kvprajapati
0
84
Member Avatar for bubbleT

Anyone know how to change the location for treeview.htc from "webctrl_client" to other folder name? [CODE]IMPORT NAMESPACE=TVNS IMPLEMENTATION="/webctrl_client/1_0/treeview.htc[/CODE] Please advise. Thanks

0
63
Member Avatar for Sarama2030

HI Id lyk to know how you create web pages that are consistent on different resolutions especially the small ones i mean small monitors. I've used some css absolute positioning on my site stuff really overlaps on smaller screens-bad.thanks

Member Avatar for riteshbest
0
148
Member Avatar for MARKAND911

I m having a problem in showing chart with datatable. I want to show my chart as shown in below image.

Member Avatar for juluri srinivas
0
205
Member Avatar for calnastic

Hi I am trying to use a gridview to display information, providing update/delete functions. But I'm keeping getting error messages. This is the code: [CODE] <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> <asp:GridView ID="GridView2" runat="server" AllowSorting="True" AutoGenerateColumns="False" AutoGenerateDeleteButton="True" AutoGenerateEditButton="True" DataSourceID="SqlDataSource1" DataKeyNames="name, number"> <Columns> <asp:BoundField DataField="name" HeaderText="name" SortExpression="name" /> <asp:BoundField DataField="number" HeaderText="number" SortExpression="number" /> …

Member Avatar for kvprajapati
0
322
Member Avatar for ryathegr8

hi can anybudy temme the reason of this error my code is [CODE] DataClassesDataContext dc = new DataClassesDataContext(); tblUser tu = new tblUser(); var res = (from p in dc.tblUsers where p.nUserID == _index select p).FirstOrDefault(); res.strUserName = txtUserName.Text; res.strPassword = txtPassword.Text; res.dAddDate = Convert.ToDateTime(DateTime.Now.ToShortDateString()); res.bIsDeleted = false; [/CODE] it …

Member Avatar for kvprajapati
0
98
Member Avatar for Unhnd_Exception

Can someone please explain what the differences are between: Page_PreInit Page_PreLoad Page_PreRend Page_Init Page_Load And if some of these are not raised when doing a httpWebRequest as opposed to going to a web page on a browser. Many Thanks, Unhnd

Member Avatar for kvprajapati
0
68
Member Avatar for dougancil

I have a web page in which there is a textbox that asks my users to enter a start date. What I'm trying to do from there is that no matter what the end date is, my page will calculated that from the text box, store it as a variable …

Member Avatar for cvplay
0
121
Member Avatar for umeshMCA

hi i am new user of asp.net. i given a link name form.pdf and i given a link like this <a href="form.pdf">form</a> when i click on this link of form there is problem shows format error. not a PDF or currepted. while working very well on my machine (localhost) when …

0
84
Member Avatar for naveedqadri

Hi all Experts , I am converting my application from Oracle database to Mysql , i am facing alot of problems, some experts are really helping me , i am thankfull to all those how helping people like me. They actually encouraging us to do more n more. Thanks all …

Member Avatar for jbisono
0
112
Member Avatar for summerhui

Hi, I'm doing web based system.I need to hyperlink drop down list item to another page.So do i need to create a database first before use event handling to hyperlink drop down list item to another page?Or do u all have any idea how to link drop down list item …

Member Avatar for hericles
0
67
Member Avatar for valestrom

Pretty sure this would be the right area to post this, I recently started to make this program in Visual c++ 2010, and Before I added the GCF.h form, I had no errors at all. Now I get all these 1>------ Build started: Project: Valestroms Calculator, Configuration: Debug Win32 ------ …

Member Avatar for pseudorandom21
0
667
Member Avatar for jackparsana

Hello, Please help me to do this. i take one combobox in modelpopop. but it is not working properly. textbox is Display properly but right side button not display. there is not problem in css. because i put same combobox in simple page. outside modelpopup. Please help me. Jack

0
79
Member Avatar for jackparsana

hi, i have one chat project. i m totally noob in that. in that server and client scripts... how can i test or run in my browser. i use vs2010 and mssql 2008. please help me.. thanks in advance jack

Member Avatar for jackparsana
0
261

The End.