13,936 Topics

Member Avatar for
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
479
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
190
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
317
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
140
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
182
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
86
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
65
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
152
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
209
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
333
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
101
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
69
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
123
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
87
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
113
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
68
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
673
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
81
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
264
Member Avatar for rotten69

Hey everyone, I looked around if anyone has the same error. there are people who have had this error, but I couldn't really get to the point that what causes this error to occur. I thought the data types in my table are the reason and I changed them. But, …

Member Avatar for hericles
0
107
Member Avatar for freshfitz

I can't find a tutorial anywhere on how to search a sql database using a textbox and a button in asp.net any help. I'm coding in C# Sql database has a customers table I want to display firstname and lastname by searching cust_no

Member Avatar for pradeep_skiet
0
458
Member Avatar for avinashb3

[CODE] public static void ServeAsPDF(System.Web.UI.Page webPage, Boolean download, String FileName) { try { string htmlString = GetHtmlForPage(webPage); webPage.Response.Buffer = true; webPage.Response.Clear(); webPage.Response.ContentType = "application/vnd.ms-word"; //application/octet-stream webPage.Response.ContentEncoding = System.Text.UnicodeEncoding.UTF8; webPage.Response.Charset = "UTF-8"; webPage.Response.AddHeader("Content-Disposition:", "attachment; filename="+ FileName +""); webPage.Response.AddHeader("cache-control", "must-revalidate"); webPage.Response.Write("<html xmlns:v='urn:schemas-microsoft-com:vml' xmlns:o='urn:schemas-microsoft-com:office:office' xmlns:w='urn:schemas-microsoft-com:office:word' xmlns:m='http://schemas.microsoft.com/office/2004/12/omml' xmlns='http://www.w3.org/TR/REC-html40'>"); webPage.Response.Write("<head>"); webPage.Response.Write("<title>PF FUND</title>"); webPage.Response.Write("<META HTTP-EQUIV='Content-Type' CONTENT='text/html; …

Member Avatar for avinashb3
0
707
Member Avatar for rainbow9

I want to draw a editable TextBox on top of picture box and the user is allowed to enter text into this box.After entering text the text box should disappear and the text entered should be painted to the picture in the picture box.Please help me on this,I'am doing this …

Member Avatar for rainbow9
0
2K
Member Avatar for WhYuLoOkIn

Having trouble with a simple database command I keep getting the error invalid column name and I cant seem to figure it out. Please help me figure out some possible problems Thanks. [CODE=VB] Dim ConnString As String ConnString = "Data Source=.\SQLEXPRESS;AttachDbFilename= C:\inetpub\wwwroot\KiKoGraphics\App_Data\aspnetdb.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True" Dim sqlConn As New SqlConnection(ConnString) …

Member Avatar for jasminvictoria
0
342
Member Avatar for Pankaj18

Hi, Need some help with an problem that bugging me.. I have to open a .doc file at the client side when the user clicks a button. Opening is not a problem.. I am able to do it using the following code which is executed when the user clicks on …

Member Avatar for LaxLoafer
0
1K
Member Avatar for yousafc#

Hello In My Visual C# 2008.Its References has not Direct show in .Net Reference . Tell Me how I can Install Direct show library in c sharp.net

Member Avatar for yousafc#
0
116
Member Avatar for rozerdun

I have a problem, i have two files with same name and it required to upload on site without renaming file both are jpg file, in one database it's my task how can i complete this task?

Member Avatar for vijay_myl
1
302
Member Avatar for dhimmar

Hello Highlly Tinker Guys, I want XPath of Each Node in XMlFile in Vb.net Below Is my Code on button click event [CODE] Dim szXMLDoc As XmlDocument=New XmlDocument() szXMLDoc.Load(Server.MapPath("ChurchFolders.xml")) '------Code to find xpath for each node----------- [/CODE] The ChurchFolers.xml file is As below [code=xml] <xml version="1.0"> <folder id="parent" path="~/MyChurch"> <folder …

Member Avatar for vijay_myl
0
150
Member Avatar for Hari835

Hi all, I am currently doing a project in C#. In that i am having a listview which takes the values from the database like GroupID,GroupName.And i displayed the GroupName values in unordered list. in that if i click anyone in that list,it will have to go to an Product …

0
48
Member Avatar for Nitin Daphale

Hi all, We have created websites before in [B]asp.net[/B], but now we are going to create A CRM System (Contacts,Messages,Tasks,Payrolls,Employee Management,Dashboards) using [B]MVC3[/B]. My main concern is customization of screens according to User and flexibility in the sense in future if I want to adopt third party Mail component or …

0
111
Member Avatar for jespina

Please help me update a gridview using a pop up. It couldn't get the primary key of the selected row. these are my codes: Protected Sub btnSaveRemarks_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSaveRemarks.Click strSQL = "UPDATE CandidateScreening SET Remarks = @Remarks, Status = @Status WHERE ID ='" …

0
111
Member Avatar for jrb47

I have a file that I can get to show correctly in grid/web - however I need to be able to download a CSV. I do not usually work in asp so out on a limb with a deadline here! [CODE] <%@ Import Namespace ="System.Data" %> <%@ Import Namespace="System.Data.OleDB" %> …

0
42
Member Avatar for jrb47

I generally do not work in asp however I am working on a project for a volunteer student org - they are working with pregnant teens. I have the following code and while I can get the names and address to pass I can not get the checkbox to pass …

0
65
Member Avatar for tanhc

Hi there, I am a newbie to MSSQL. I apologise first as I know that my question might have been asked by others elsewhere but unfortunately I couldn't find it. I will really appreciate if someone can shed some light into my question. I have two tables with the following …

Member Avatar for poojaabora
0
137
Member Avatar for sraj44

I want to use a datatable to bind values based upon'if,else if,else' so that my column values change in each condition.how can i do this.please help and emonstrate along with code snippet,Thanks.

0
51
Member Avatar for canwin

I have a xml file.I can get it's data using 19 table but i want to get relationship and print data in one table

Member Avatar for canwin
0
290
Member Avatar for umeshMCA

hi i am a new user of asp.net, i would like to know when user open mysite it will display a image for somethime like 20sec till that there should be a gif image also show which showing uploading website like buffring in utv bideo gif. and after timeout it …

Member Avatar for umeshMCA
0
203
Member Avatar for pritesh2010

Hello everyone, I’d created mlm website which is working fine but the only problem i stop that how to show horizontal tree view, or how to show binary tree. I’d already checked this [url]http://www.codeproject.com/KB/vb/SimpleBTree.aspx[/url] [url]http://forums.asp.net/t/Next/2701209[/url] [url]http://www.codeproject.com/KB/vb/SimpleBTree/BTree_src.zip[/url] [url]http://forums.asp.net/t/1639275.aspx/1[/url] [url]http://forums.asp.net/t/1336595.aspx/1[/url] [url]http://www.codeproject.com/KB/scripting/Horizontal_JS_Tree/Horizontal_Tree.zip[/url] site but didn’t get any reference if any have idea how …

0
68
Member Avatar for nverma

I want a toolbox like functionality in which i can drag an image and drop it over another image, such that the image being dragged should remain at the previous position as well as copied to the new position.

Member Avatar for cocoll
0
425
Member Avatar for soft_coder

Hi I have a byte array of size 2138 and it is serialized. Now I want to store that in cache or session. I have the following: 1. Deserialized the Byte array into an object. 2. Stored the same in Session. 3. Whenever required I have again Serialized the Object …

0
70
Member Avatar for naazsayed

hey all i am making purchase sales regarding project for Nokia but now got problems in the end while deploying... Error 1 Cannot publish because a project failed to build. 1 1 Master Error 2 The install location for prerequisites has not been set to 'component vendor's web site' and …

0
65
Member Avatar for Mullaly

Hi, I am a newbie to C# and OOP.. I need some advice regarding my requirement.. 1st Part: There are persons who use mobiles, of many subscribers and also have many numbers in each subscribers. If we consider the XML tags it would be [CODE]<Persons> <PersonName1>XXX</PersonName1><Subscriber1><SubscriberName>ABC</SubscriberName> <Numbers><one>123456</one><two>123456</two>....<twenty>20</twenty></Numbers></Subscriber1><Subscriber2><SubscriberName>ABC</SubscriberName> <Numbers><one>123456</one><tow>123456</two>....<twenty>20</twenty></Numbers><Subscriber2> </Persons>[/CODE] Like …

0
107
Member Avatar for compukey123@gma

hello, m using vs2008 and want to implement download button..so dat client can easily download wat dey want....plz rply asap

Member Avatar for shravan24
-1
84
Member Avatar for kained

Right basically a form i have done is refusing to let more then one attachment be attached to the form and then emailed. This is happening on multiple sites within the server. I'm blaming our smtp server settings but don't really have anything to back up that assertion. Anyone give …

0
72
Member Avatar for pavangajula2007

I had no knowledge about asp.net. I want to start knowing and studying about asp.net can u tell me the best book that i have to read

Member Avatar for compukey123@gma
0
174
Member Avatar for sushanth009

I have a list of the left panel. When Clicked on the list a nested grid view is created in the right panel. The gridview has image buttons , which when clicked displays the nested gridview below it. And also right below the main grid view are 2 charts. The …

Member Avatar for compukey123@gma
0
102
Member Avatar for kexx

We are implementing a reporting system (.net 4.0, c#) that contains all the sender/recipient/timestamp information for all the emails for all the users. We have the requirement that this application should be able to communicate with Exchange 2007 SP1 and Exchange 2010 servers, thus, using the Exchange Web Service Managed …

0
153
Member Avatar for game4tress

I'm creating a new functionality for an already existing software, made with VB .Net. This new functionality consists of rendering 3D objects on a specific form, and be able to move/rotate/resize/change,... those objects. For this task i've used XNA. I've created a new XNA Windows project and, in the specific …

0
101
Member Avatar for bg1976

Hi I have a Formview that allows a user to update any combination of 80+ fields. I need a formView so that I have control over the position of the fields on the page. Regads updating, my idea was to get the NewValues (from FormViewUpdateEventArgs), then create an xml string …

Member Avatar for bg1976
0
104
Member Avatar for oscargrower11

I'm used to c++ along with an open database (switched from mysql to postgres not too awful long ago.) A new job I'm looking at taking focuses heavily on .net along with SQL Server. As such, I've been looking into the .net framework and what I can't seem to figure …

Member Avatar for Momerath
0
197

The End.