5,346 Posted Topics
Re: Read [URL="http://visualbasic.about.com/od/usingvbnet/a/genericlist.htm"]Generics[/URL]. The following code snippet will help you to understand the basics of collections (generics). [code] Dim p As New List(Of Double) p.Add(10) p.Add(20) MsgBox(p.Average()) [/code] | |
Re: >Saving and Discarding mails.. It is depends upon you. You may use Database or File io for the same. | |
Re: whiteyoh, In addition to the post #6 posted by BestJewSinceJC, read this article - [URL="http://java.sun.com/developer/technicalArticles/RMI/ObjectPersist/index.html"]http://java.sun.com/developer/technicalArticles/RMI/ObjectPersist/index.html[/URL] | |
Re: Take a look at this [URL="http://p2p.wrox.com/xslt/76893-xpath-expression-calculate-total-amount-order-details.html"]thread.[/URL] | |
Re: sushil.sharma75, XSLT is a language for converting XML documents into other documents. Because XSLT is itself an XML vocabulary, it is possible to generate XSLT stylesheets as the output of a transformation, but it's unusual and not for beginners. What do you actually want to achieve? | |
Re: Take a look at this thread - [URL="http://www.daniweb.com/forums/thread211516.html"]http://www.daniweb.com/forums/thread211516.html[/URL] | |
Re: Link paste at post #2 showing VB 6.0 datatypes. Infact VB.NET uses .net framework types system. Take a look at this link - [URL="http://msdn.microsoft.com/en-us/library/47zceaw7(VS.71).aspx"]http://msdn.microsoft.com/en-us/library/47zceaw7(VS.71).aspx[/URL] | |
Re: Take a look at MSDN online page - [URL="http://msdn.microsoft.com/en-us/library/ms171616.aspx"]http://msdn.microsoft.com/en-us/library/ms171616.aspx[/URL] | |
Re: Take a look at [URL="http://windowsclient.net/"]http://windowsclient.net/[/URL] - The Official Microsoft WPF and Windows Forms Site. | |
Re: You have to write appropriate code in your registration jsp. 1. Generate a random text or number. 2. Push (save) it to cookies or session. 3. Draw an image into buffer and save it. - Graphics - java.awt package. 4. Use img tag to set src attribute with path of … | |
Re: Take a look at - [URL="http://www.softsynth.com/jsyn/"]http://www.softsynth.com/jsyn/[/URL] | |
Re: [URL="http://en.wikipedia.org/wiki/Linked_list"]LinkedList[/URL] [QUOTE]SUMMARY: In computer science, a linked list is a data structure that consists of a sequence of data records such that in each record there is a field that contains a reference (i.e., a link) to the next record in the sequence.[/QUOTE] | |
Re: Do not use [b]forward[/b] action. As we know the [b]action[/b] [u]forward[/u] sends the dynamic content of html of the [u]page1.jsp[/u] to web-browser. Use [b]include[/b] action. [code] <body> <script language="javascript" > alert("hi"); </script> <h1>hello</hello> <% System.out.println("hello"); %> <jsp:include page="page1.jsp" /> </body> [/code] | |
Re: It [b]discards unwanted white space[/b]. A white-space character in the control string causes scanf() to skip over one or more leading white-space characters in the input stream. [code] int main() { char ch,ch1; printf("Enter two chars : "); scanf("%c\n%c",&ch,&ch1); printf("\n%c\n%c",ch,ch1); return 0; } [/code] | |
Re: Take a look at this tutorial - [URL="http://itextdocs.lowagie.com/tutorial/objects/index.php"]http://itextdocs.lowagie.com/tutorial/objects/index.php[/URL] | |
Re: Here are tutorials. 1. [URL="http://vcplusplustutorials.ktsinfotech.com/"]http://vcplusplustutorials.ktsinfotech.com/[/URL] 2. [URL="http://msdn.microsoft.com/en-us/visualc/default.aspx"]http://msdn.microsoft.com/en-us/visualc/default.aspx[/URL] | |
Re: Read this article - [URL="http://www.freepatentsonline.com/y2009/0100345.html"]http://www.freepatentsonline.com/y2009/0100345.html[/URL] and [URL="http://marcgrabanski.com/tag/google-maps"]http://marcgrabanski.com/tag/google-maps[/URL] | |
Re: Please read this rule - [URL="http://www.daniweb.com/forums/announcement61-2.html"]We only give homework help to those who show effort.[/URL] | |
Re: Welcome, Turbo C is a name of C language compiler. Please have a look at the [URL="http://en.wikipedia.org/wiki/List_of_compilers"]List of Compilers[/URL]. As [b]Ancient Dragon[/b] suggests; use [b]standard C compilers[/b]. Purchase good book. [URL="http://books.google.co.in/books?id=Nwy453ZKLvMC&pg=RA1-PA216&lpg=RA1-PA216&dq=%25n+format&source=bl&ots=bzLzNtP_Rp&sig=ccek-FaOkNJRTi2LBhMe0uCgZWM&hl=en&ei=tEDkSrG6KYW0swOV7eirAw&sa=X&oi=book_result&ct=result&resnum=4&ved=0CBQQ6AEwAzgK#v=onepage&q=%25n%20format&f=false"]Here[/URL] is a good book to learn C language. Please visit [URL="http://c-faq.com/"]FAQ[/URL]. | |
Re: Read the [URL="http://books.google.co.in/books?id=Nwy453ZKLvMC&pg=RA1-PA216&lpg=RA1-PA216&dq=%25n+format&source=bl&ots=bzLzNtP_Rp&sig=ccek-FaOkNJRTi2LBhMe0uCgZWM&hl=en&ei=Ez3kSryVHYSKswOqst2tAw&sa=X&oi=book_result&ct=result&resnum=4&ved=0CBQQ6AEwAzgK#v=onepage&q=%25n%20format&f=false"]The %n Specifier[/URL]. [code] #include <stdio.h> int main() { char buffer[40],buffer1[40]; buffer[0]=0; buffer1[0]=0; int ret; int count=0; ret = sscanf("sampletext", "%s%n%s", buffer, &count, buffer1); printf("\n%d",count); printf("\n%s\n%s",buffer,buffer1); ret=printf("\nTotal%n characters",&count); printf("\nret : %d\ncount : %d",ret,count); return 0; } [/code] | |
Re: You may try this code, [code] void isSorted(int a[], int n) { int i; /* descending order */ for (i=1;i<n;++i) { if (a[i]<a[i-1]) { break; } } if ( i < n ) { /* failed descending order */ for (i=1;i<n;++i) { /* ascending order? */ if (a[i]>a[i-1]) { break; … | |
Re: Here is the great ebook. Take a look at this page -[URL="http://beej.us/guide/bgnet/output/html/multipage/advanced.html#select"]http://beej.us/guide/bgnet/output/html/multipage/advanced.html#select[/URL] | |
Re: Take a look at [URL="http://www.brpreiss.com/books/opus5/html/page257.html"]N-ary Trees[/URL]. | |
Re: Take a look at [URL="http://sourceforge.net/projects/java-sms-api/"]http://sourceforge.net/projects/java-sms-api/[/URL] and [URL="http://java.sun.com/products/javamail/"]http://java.sun.com/products/javamail/[/URL]. | |
Re: Set [b]DefaultCellStyle.Format[/b] property of Columns collection. [code] DataGridView1.Columns(0).DefaultCellStyle.Format = "MMM-dd-yyyy" [/code] | |
Re: Take a look at this code snippet - [URL="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=65662&lngWId=1"]http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=65662&lngWId=1[/URL] | |
![]() | Re: Read this article - [URL="http://support.microsoft.com/kb/837220"]http://support.microsoft.com/kb/837220[/URL] ![]() |
Re: Use code tags to post source code. Take a look at this article - http://local.wasp.uwa.edu.au/~pbourke/geometry/2circle/"]http://local.wasp.uwa.edu.au/~pbourke/geometry/2circle/ | |
Re: [URL="http://msdn.microsoft.com/en-us/library/ms178194.aspx"]ASP.NET Cookies[/URL] [QUOTE]A cookie is a small bit of text that accompanies requests and pages as they go between the Web server and browser. The cookie contains information the Web application can read whenever the user visits the site.[/QUOTE] Create a cookie [code] HttpCookie c1=new HttpCookie("name","value"); c1.Expires = DateTime.Now.AddDays(5); c1.Path … | |
![]() | Re: You have to turn on "write" permission to the [b]Users[/b] group for the database file. |
Re: For checkBox, use [b]Checked[/b] and [b]CheckState[/b] property. List and ComboBox; use [b]SelectedValue[/b] property. | |
Re: Take a look at this article - [URL="http://www.codeproject.com/KB/cs/SecureBaseForm.aspx"]http://www.codeproject.com/KB/cs/SecureBaseForm.aspx[/URL] | |
Re: Try to use two argument fill method, [code] Me.adaptertest.Fill(Me.datasetMainForm,"table1") [/code] | |
Re: Just google your problem. Take a look at this link - [URL="http://www.kitebird.com/articles/access-migrate.html"]http://www.kitebird.com/articles/access-migrate.html[/URL] and [URL="http://www.bullzip.com/products/a2m/info.php"]http://www.bullzip.com/products/a2m/info.php[/URL] | |
Re: Use code-tag to post source code. I am bit confused after reading "Salary" and "Department" label as the columns of ListView. Please elaborate your question. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ListView1.Columns.Add("Processes", 80, HorizontalAlignment.Left) ListView1.Columns.Add("Services", 80, HorizontalAlignment.Left) ListView1.Columns.Add("Title", 80, HorizontalAlignment.Left) ListView1.Columns.Add("Salary", 80, HorizontalAlignment.Left) ListView1.Columns.Add("Department", … | |
Re: xfrolox, Why don't you learn VB.NET? Please purchase some good books and do practice. Take a look at MSDN online pages - [URL="http://msdn.microsoft.com/en-us/library/sh9ywfdk.aspx"]http://msdn.microsoft.com/en-us/library/sh9ywfdk.aspx[/URL] | |
Re: xfrolox, I think you want to code which allows single instance of an application. Please take a look at this article - [URL="http://www.codeproject.com/KB/vb/sing_inistan.aspx"]http://www.codeproject.com/KB/vb/sing_inistan.aspx[/URL] | |
Re: A view or joins is a virtual table meaning it does not exist as a table. Yes a view or joins is an schema object but it is only as such view . It is a view of a table ot joined tables. If you are updating a field from … | |
Re: Take a look at this article - [URL="http://www.codeproject.com/KB/cs/SecureBaseForm.aspx"]http://www.codeproject.com/KB/cs/SecureBaseForm.aspx[/URL] [QUOTE]SUMMARY: This article describes how to implement Role-based Windows Form security. The solution includes a "SecureBaseForm" which allows/denies access to an inheriting Form and may fire the UserIsAllowed or UserIsDenied events. [/QUOTE] | |
Re: [URL="http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx"].sdf[/URL] file are called embedded database Compact edition. Compact Edition is a compact database for embedding in mobile and device applications. Use .mdf for your desktop applications. | |
Re: You need to know the MS-SQL server string [URL="http://sqlserverpedia.com/wiki/Built-in_Functions_-_String_Functions"]functions[/URL]. However it can be done through the statement of programming language. Please show us your code. | |
Re: Error says that you have to change the code in your code files and this is the only possible way. | |
Re: Use [b]ParseExact[/b] [code] Dim dt As Date Dim str as String = "2002" dt = Date.ParseExact(str, "yyyy", Nothing) DateTimePicker1.Value = dt [/code] | |
Re: Read this [URL="http://developer.db4o.com/Resources/view.aspx/Formula_One_Tutorial/Tutorial_.NET_Version"]Tutorial[/URL] ![]() | |
Re: @jonahmano: ddanbe you are wrong. No. He gave you a solution. Use [b]Write[/b] Method. [code] Console.Write("Enter Name : "); value=Console.ReadLine(); [/code] | |
Re: Use [code] tags to post source code. Try to implement [URL="http://msdn.microsoft.com/en-us/library/system.threading.thread.aspx#Mtps_DropDownFilterText"]thread.[/URL] | |
Re: >...file has extension .SSD, how I can do this? Use classes of System.IO namespace. > click on that saved file will open by my app. Take a look at this article - [URL="http://msdn.microsoft.com/en-us/library/cc144175(VS.85).aspx"]http://msdn.microsoft.com/en-us/library/cc144175(VS.85).aspx[/URL] | |
The End.