5,346 Posted Topics

Member Avatar for blackknight469
Member Avatar for soeppp

Stored-Procedure cannot insert table's rows into ListView directly. You have to code VB.NET statements. Please show us your code.

Member Avatar for kvprajapati
0
65
Member Avatar for dm_team

Take a look at - [URL="http://69.10.233.10/KB/aspnet/word2pdf_serverconvert.aspx?msg=3141084"]http://69.10.233.10/KB/aspnet/word2pdf_serverconvert.aspx?msg=3141084[/URL] [QUOTE]SUMMARY: This PDFConverter converts Microsoft Word documents (*.doc) into PDF-files/xps on a Webserver. [/QUOTE]

Member Avatar for kvprajapati
0
89
Member Avatar for hery

[B]As Any[/B] variable type in a Declare statement. This is not supported in Visual Basic .NET. Variables of the As Any type were often used to pass a variable that was either a string or Null; you can replace this Visual Basic 6.0 usage by declaring two forms of the …

Member Avatar for kvprajapati
0
3K
Member Avatar for Nada_ward

[code=vb.net] Dim p(4)() As Integer For i As Integer = 0 To 4 ReDim p(i)(5) Next [/code]

Member Avatar for kvprajapati
0
98
Member Avatar for ashishlohani

Take a look at this article - [URL="http://www.codeproject.com/KB/printing/LocalizingReportViewer.aspx"]http://www.codeproject.com/KB/printing/LocalizingReportViewer.aspx[/URL]

Member Avatar for ashishlohani
0
189
Member Avatar for power_computer

struct can be easily copied using an assingment operator. [code=cplusplus] songs[0]=songs[1]; [/code] You can't remove an element from the an array. However you may assign an empty struct, [code=cplusplus] music empty={"","","",0}; songs[i]=empty; [/code]

Member Avatar for emirpp
0
789
Member Avatar for serdengil

[B]Hint[/B] Declare an array of size 10. Use loop (for/while/do while) statement to read 10 values into an array. [B]How to compile?[/B] type following command at the *nix prompt, [QUOTE]g++ -o outsort sort.cpp[/QUOTE] Note: g++ to name the executable [B]outsort [/B]([URL="http://www.cs.bu.edu/teaching/tool/emacs/programming/"]emacs[/URL])

Member Avatar for mrnutty
0
165
Member Avatar for Acute
Member Avatar for santhoshvarma.a

Welcome santhoshvarma.a, You may send/pass value from one page to another page using querystring, and session.

Member Avatar for peter_budo
0
1K
Member Avatar for daviddoria

daviddoria, You have to elaborate your question by submitting a part of code. May be you could found some useful information from this link - [URL="http://en.wikipedia.org/wiki/Segmentation_fault"]http://en.wikipedia.org/wiki/Segmentation_fault[/URL] and [URL="http://www.faqs.org/qa/qa-673.html"]FAQ[/URL]

Member Avatar for NicAx64
0
2K
Member Avatar for jonow
Member Avatar for Piya27

I think website design is an art and to be a good website designer, one must have know-how of css, html, and javascript.

Member Avatar for sknake
0
63
Member Avatar for mohsindada

Welcome Mohsindada, You have to look at C# open source project - [URL="http://csharp-source.net/open-source/network-clients"]http://csharp-source.net/open-source/network-clients[/URL]

Member Avatar for mohsindada
0
104
Member Avatar for aalto
Member Avatar for phillon

welcome phillon, Show us your code work please. You may use datatype.Parse method or Convert class method to convert string values into numeric values.

Member Avatar for peter_budo
0
83
Member Avatar for stormshell

>Object reference not set to an instance of an object. Error describes that you are working on null. Take look into your code and find where you missed [B]New[/B] keyword.

Member Avatar for Arunabh Nag
0
100
Member Avatar for coud_ren_26

Read the article - [URL="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/arrays.html"]Arrays[/URL] [QUOTE]SUMMARY: In the Java programming language, a multidimensional array is simply an array whose components are themselves arrays. This is unlike arrays in C or Fortran. [/QUOTE]

Member Avatar for kvprajapati
0
129
Member Avatar for sandipdandel

sandipdandel, Read [URL="http://www.daniweb.com/forums/thread141776.html"]sticky[/URL] thread. I hope this will be a solution of your problem. Have a look at an article - [URL="http://java.sun.com/javase/technologies/database/"]http://java.sun.com/javase/technologies/database/[/URL]

Member Avatar for kvprajapati
0
72
Member Avatar for ishlux

ishlux, You have to create a context - a folder in which you may add your jsp/servlet programs/pages. Read [URL="http://tomcat.apache.org/tomcat-5.5-doc/config/context.html"]http://tomcat.apache.org/tomcat-5.5-doc/config/context.html[/URL] [QUOTE]SUMMARY: The Context element represents a web application, which is run within a particular virtual host. Each web application is based on a Web Application Archive (WAR) file, or a …

Member Avatar for kvprajapati
0
105
Member Avatar for bshyama24@gmail
Member Avatar for sandipan.rcciit
Member Avatar for realone

[code=vb.net] da.InsertCommand = New OleDbCommand("INSERT INTO Biodata (surname,template) Values (?,?)",connection) da.InsertCommand.CommandType = CommandType.Text da.InsertCommand.Parameters.Add("?", OleDbType.VarChar, 50, "surname") da.InsertCommand.Parameters.Add("?", OleDbType.Binary, template.Size, "template") [/code]

Member Avatar for kvprajapati
0
157
Member Avatar for hepsy.i

Request a web using methods of WebClient (System.Net namespace) or create web service. [URL="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx"]WCF[/URL]

Member Avatar for kvprajapati
0
261
Member Avatar for swinefish

Show us your code work. Here is a very good article, [URL="http://blogs.msdn.com/aconrad/archive/2007/12/10/linq-to-rest.aspx"]Linq to REST[/URL] [URL="http://blogs.msdn.com/astoriateam/archive/2007/12/11/linq-to-ado-net-data-services.aspx"]ADO.NET Data Services Team Blog[/URL] [QUOTE]SUMMARY: To query an ADO.NET Data Service from a .NET application, the client library supports constructing queries against remote data services using LINQ. In essence the library provides a strongly typed …

Member Avatar for kvprajapati
0
91
Member Avatar for stevetaylor15

Try, [code=c#] stati void Main(string []args) { if(args.length!=4) { Console.WriteLine("Insufficient parameters"); return; } ..... } [/code]

Member Avatar for sknake
0
100
Member Avatar for alensole
Member Avatar for Ramesh S
0
159
Member Avatar for yon kon
Member Avatar for pyro_junky

Welcome pyro_junky, Ask your C-Language question in C forum. Assignment operator = is used to set/assign a value to the variable. [code=cplusplus] x=2; y=3; [/code]

Member Avatar for Nick Evan
0
94
Member Avatar for chandiusjp

Add boolean field to your datasource, [code=vb.net] Dim dt As New DataTable dt.Columns.Add("Test", GetType(Boolean)) dt.Rows.Add(True) dt.Rows.Add(False) DataGridView1.DataSource = dt [/code]

Member Avatar for kvprajapati
0
75
Member Avatar for avirag
Member Avatar for avirag
0
111
Member Avatar for ubi_ct83

ubi_ct83, Welcome to the Daniweb. You should have to read this Announcement - [URL="http://www.daniweb.com/forums/announcement8-3.html"]http://www.daniweb.com/forums/announcement8-3.html[/URL] thread. So please read announcement and some sticky threads to understand the rules at daniweb. Source code in your post is messy. Use bb codes tag. Here are some suggestions regarding to your code. 1. No …

Member Avatar for ubi_ct83
0
101
Member Avatar for Lokth

Welcome Lokth, Show us your code work. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL]

Member Avatar for freelancelote
0
287
Member Avatar for lil_Is

[URL="http://sourceforge.net/projects/sms-api/"]Open source CLICKATELL SMS API[/URL] [QUOTE]SUMMARY: This class is meant to send SMS messages via the Clickatell gateway and provides support to authenticate to this service and also query for the current account balance. This class use the fopen or CURL module to communicate with the gateway via HTTP/S.[/QUOTE]

Member Avatar for lil_Is
0
158
Member Avatar for radium
Member Avatar for Harssh
Member Avatar for wingers1290

Read [URL="http://msdn.microsoft.com/en-us/library/h43ks021(VS.71).aspx"]Overview of ADO.NET[/URL] [QUOTE]SUMMARY: ADO.NET provides consistent access to data sources such as Microsoft SQL Server, as well as data sources exposed through OLE DB and XML. Data-sharing consumer applications can use ADO.NET to connect to these data sources and retrieve, manipulate, and update data.[/QUOTE] And don't miss this …

Member Avatar for kvprajapati
0
76
Member Avatar for hery
Member Avatar for ajijacobm

A very good thread at daniweb - [URL="http://www.daniweb.com/forums/thread201807.html"]ddanbe - Memory Buttons[/URL]

Member Avatar for kvprajapati
0
70
Member Avatar for darab

Try it with your datasource object (DataTable) and also expression columns. For example, [code=c#] DataTable dt=new DataTable(); dt.Columns.Add("Qty",typeof(int)); dt.Columns.Add("Rate", typeof(int)); dt.Columns.Add("Amount", typeof(int), "Qty*Rate"); dt.Rows.Add(2, 2); dt.Rows.Add(2, 3); dt.Rows.Add(6, 5); int total=0; foreach(DataRow v in dt.Rows){ total = total + (int) v[2]; } .... [/code]

Member Avatar for kvprajapati
0
113
Member Avatar for kwesiaryee

There are two ways of doing this, 1. The "Right" way [code=jsp] FacesContext ctx = FacesContext.getCurrentInstance(); Application app = ctx.getApplication(); LoginBean lb = (LoginBean)app.createValueBinding("#{login}).getValue(ctx); [/code] 2. Use getExternalContext() on the Faces context which will give you access to the request and session objects directly.

Member Avatar for kvprajapati
0
78
Member Avatar for Reena24

You should have to post code of Tag handler. Example, tag handler [code=java] package tg; import javax.servlet.*; import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; import java.io.*; public class TestTag extends TagSupport { String name=""; int no=0; public void setName(String name) { this.name=name;} public String getName() { return name;} public void setNo(int no) { …

Member Avatar for kvprajapati
0
768
Member Avatar for hajjo
Member Avatar for kvprajapati
0
59
Member Avatar for hajjo

Create an instance of jsp bean with session scope and set value for each field once record after deletion of record in your controller.

Member Avatar for kvprajapati
0
142
Member Avatar for Sylenas

Try, [code=vb.net] SaveFileDialog1.InitialDirectory = "c:\xyz" SaveFileDialog1.FileName = "p1.txt" SaveFileDialog1.ShowDialog() [/code]

Member Avatar for kvprajapati
0
139
Member Avatar for shadwickman

An article - [URL="http://www.jot.fm/issues/issue_2008_02/article2/"]Variadic Templates for C++0x[/URL]. [URL="http://www.generic-programming.org/~dgregor/cpp/variadic-templates.html"]Variadic Templates for GCC [/URL]

Member Avatar for shadwickman
0
167
Member Avatar for gretty

Improper use of an array, [code=cplusplus] pur[count] = x; // Error [/code] Try, [code=cplusplus] while (infile >> x) { if(count2==25) { count2=0; count++; } pur[count][count2]= x; count2++; } [/code]

Member Avatar for mrnutty
0
123
Member Avatar for metalclunch

Links, [URL="http://www.c2.com/cgi/wiki?ScriptingLanguage"]Scripting Language[/URL] SUMMARY: [QUOTE]The origin of the term was similar to its meaning in "a movie script tells actors what to do": a scripting language controlled the operation of a normally-interactive program, giving it a sequence of work to do all in one batch.[/QUOTE] [URL="http://en.wikipedia.org/wiki/Scripting_language"]Scripting language[/URL]

Member Avatar for Tigran
0
163
Member Avatar for chandiusjp

>sql server does not allow to remote connection. Post your connection string code. [code=vb.net] str="Data Source=.\sqlexpress;Initial Catalog=dbfirst;Integrated Security=True" 'or str="Data Source=.\sqlexpress;Initial Catalog=dbfirst;User id=sa;Password=sa" [/code] Read about MS-Sql server authentication - [URL="http://msdn.microsoft.com/en-us/library/aa905171(SQL.80).aspx"]http://msdn.microsoft.com/en-us/library/aa905171(SQL.80).aspx[/URL]

Member Avatar for samir_ibrahim
0
257
Member Avatar for cwarn23

cwarn23, Congratulation for the art-work - A sharp, smooth, smart, and intellegent code work.

Member Avatar for cwarn23
1
303

The End.