5,346 Posted Topics
Re: [b]>voice recognition system using vb.net[/b] Learn the classes/methods of System.Speech.Recognition Namespace. | |
Re: [code] ..... Dim Rows() As DataRow = Ds.Tables("DurexBOL").Select("WebSvc = 'No'") For Each row As DataRow In Rows row("WebSvc") = "Yes" Next da.Update(Ds, "DurexBOL") [/code] | |
Re: [b]>i cant connect to my database[/b] You need to download [URL="http://dev.mysql.com/downloads/connector/net/1.0.html"]Connector/Net[/URL] - Data Provider class library. | |
Re: Read MSDN article - [url]http://msdn.microsoft.com/en-us/library/f9x2790s.aspx[/url] | |
Re: [b]>what should i choose from these three? can u add reasons please[/b] ASP.NET. Take a look at [url]http://anmar.eu.org/projects/sharpwebmail/[/url] | |
Re: [b]>i just wonder f could i insert a flash animation to my form???[/b] Steps: 1. Choose to add a new component. 2. Choose the "COM Components" tab to get a list in which you can find the "[URL="http://www.adobe.com/devnet/flash/articles/stock_history03.html"]Shockwave Flash Object[/URL]". | |
Re: [b]>how do I invoke an executable file from a c# application[/b] To run exe file - use the methods of [b]System.Diagnostics.Process[/b] class. | |
Re: [b]>error C2065: 'i' : undeclared identifier[/b] The specified identifier "i" was not declared in your program. A variable’s type must be specified in a declaration before it can be used. | |
Re: Read about [URL="http://groups.google.com/group/jquery-en/browse_thread/thread/9ac162f226f2d0b7"]JQuery [/URL] image tagging. | |
Re: Please refer the following links posted by sknake. 1. [url]http://www.daniweb.com/forums/thread196171.html[/url] 2. [url]http://www.daniweb.com/forums/thread202316.html[/url] 3. [url]http://www.daniweb.com/forums/thread210409.html[/url] 4. [url]http://www.daniweb.com/forums/thread210020.html[/url] 5. [url]http://www.daniweb.com/forums/thread175798.html[/url] | |
Re: [b]>I know a little bit about VB and Pascal.[/b] So you must learn .net framework and VB.NET. [b]>extract data from excel to VB[/b] You need to use OfficeInterop service or ADO.NET Data provider. | |
Re: [b]>Hey, Can anybody give me the code to find Serach on text written by user in textbox? No. We don't have a code. We have tips and suggestion. You need to show effort, and what better way than posting the code that you have tried so far? | |
Re: [b]>How i can developed and find time required to page load ?[/b] You can use the AJAX [URL="http://ajax.net-tutorials.com/controls/updateprogress-control/"]UpdateProgress[/URL] control. | |
Re: Find by a key, [code] TabPage page = new TabPage("New Doc " + 1); //CurrentTabPageName = "New Doc " + 1; RichTextBox txt = new RichTextBox(); txt.Name="Item1"; txt.Dock = DockStyle.Fill; page.Controls.Add(txt); tab.TabPages.Add(page); [/code] [code] Control []t = tabControl1.Controls.Find("Item1", true); [/code] | |
Re: Even better would be to add images to resource file. | |
Re: Remove double quotes. [code] ... SqlConnection cn = new SqlConnection(connection); [/code] | |
Re: >Please any one explain me how to send an email to.. You need to work with the classes of System.Net.Mail namespace. Take a look at this article - http://aspnet.4guysfromrolla.com/articles/080206-1.aspx | |
Re: [b]SAINTJAB>[/b]Can u please use my query and then assign or display it in a textbox for me. What did you expect it to do? Do you get any errors? We only give help to those who show effort. You might want to read the [URL="http://www.daniweb.com/forums/announcement58-2.html"]homework[/URL] policy if you run into … | |
Re: Take a look at CodeProject article - [URL="http://www.codeproject.com/KB/aspnet/Custom_File_Upload.aspx"]http://www.codeproject.com/KB/aspnet/Custom_File_Upload.aspx[/URL] | |
| |
Re: The best option is to use an SMS Gatway. Take a look at : 1. [url]http://www.codeproject.com/KB/database/SMS_message_from_SQL.aspx[/url] 2. [url]http://www.ozekisms.com/high-performance-sms-gateway/c-sharp-sms-gateway/index_p_php_q_ow_page_number_e_309opt.html[/url] | |
Re: [b]>Calling a procedure inside a procedure[/b] I'd say yes. | |
Re: Add a control dynamically, [code] TextBox tx=new TextBox(); tx.Text="value_here"; form1.Controls.Add(tx); [/code] | |
Re: From the error description: Your application is missing a dependency assembly. You may find the name of missing assembly from the exception trace or the log. [b]>How to enable "just-in-time (JIT) debugging"?[/b] From the [URL="http://msdn.microsoft.com/en-us/library/k8kf6y2a.aspx"]MSDN [/URL]: You can enable Just-In-Time debugging to launch the Visual Studio debugger automatically when a … | |
Re: [b]>how to move in next column with enter key?[/b] Handle the KeyDown event. [code] Private Sub DataGridView1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles DataGridView1.KeyDown If e.KeyCode = Keys.Enter Then Dim numCols As Integer = DataGridView1.ColumnCount Dim numRows As Integer = DataGridView1.RowCount Dim currCell As DataGridViewCell = DataGridView1.CurrentCell If … | |
Re: Take a look at this thread - [URL="http://www.daniweb.com/forums/thread254272.html"]http://www.daniweb.com/forums/thread254272.html[/URL] | |
Re: You might want to read this article - [URL="http://www.codeguru.com/cpp/cpp/cpp_managed/nfc/article.php/c8621/"]http://www.codeguru.com/cpp/cpp/cpp_managed/nfc/article.php/c8621/[/URL] | |
Re: [b]>but its not displaying any data from database[/b]. Use [b]*[/b] instead of [b]%[/b]. [code] cm.CommandText = "select * from (" & tbl_name & ") where Start_loc like '" & form.ListBox_Fielddetails.SelectedItem & "*'" [/code] | |
Re: Take a look at this thread - [URL="http://stackoverflow.com/questions/1036856/retrieving-the-com-class-factory-for-component-with-clsid-xxxx-failed-due-to-th"]http://stackoverflow.com/questions/1036856/retrieving-the-com-class-factory-for-component-with-clsid-xxxx-failed-due-to-th[/URL] | |
Re: [QUOTE=murid]i'm try to send many picture using socket programming in VB 2005 from client to server. but, after i run the program, only the first picture that reach destination server. and there is an error saying that my socket are no longer connected after the first picture are sent.[/QUOTE] Take … | |
Re: [b]>Is it impossible with crystal report? [/b]. Crystal report can't do all these things you have mentioned. You need to use joins and aggregate sql functions or may be you have to write stored procedure. | |
Re: Take a look at this thread - [URL="http://www.daniweb.com/forums/thread254272.html"]http://www.daniweb.com/forums/thread254272.html[/URL] [code] .... IF e.KeyData = Keys.Tab Then IF Me.dataGridView1.CurrentCell.ColumnIndex = 0 Then Me.dataGridView1.CurrentCell = this.dataGridView1(2, Me.dataGridView1.CurrentCell.RowIndex) e.Handled = true End IF END IF .... [/code] | |
Re: [b]>What command should I write to get above result[/b] Write [b]SELECT[/b] with [b]GROUP BY[/b] clause. | |
Re: [b]>So what exactly is a namespace?[/b] From [URL="http://msdn.microsoft.com/en-us/library/z2kcy19k%28VS.80%29.aspx"]MSDN [/URL]article: The [B]namespace [/B] keyword is used to declare a scope. This namespace scope lets you organize code and gives you a way to create globally unique types. In other words, types are organized into hierarchical structures called namespace, which group related … | |
Re: I am pasting two links might assist you to develop your project. 1. [URL="http://www.websense.com/content/Assets/PDF/WFBestPractices.pdf"]http://www.websense.com/content/Assets/PDF/WFBestPractices.pdf[/URL] 2. [url]http://www.techsoup.org/learningcenter/ctc/page7091.cfm[/url] | |
Re: Read these documents, 1. [URL="http://en.wikipedia.org/wiki/BitTorrent_%28protocol%29"]BitTorrent (protocol)[/URL]: 2. [URL="http://wiki.theory.org/BitTorrentSpecification#Tracker_HTTP.2FHTTPS_Protocol"]BitTorrent [/URL]specification. | |
Re: C has single namespace for all structs, unions and enums. So you can write code using anonymous [URL="http://www.lnf.infn.it/Calcolo/doc/aixcxx/html/language/ref/rucldun.htm"]union[/URL], [code] union u { union { int i; int j; }a[10]; int b[10]; }u; [/code] or choose unique tagname, [code] union u { union v { int i; int j; }a[10]; int … | |
Re: Take a look at - [URL="http://www.daniweb.com/forums/thread106399.html"]http://www.daniweb.com/forums/thread106399.html[/URL] and [URL="http://www.exforsys.com/tutorials/asp.net-2.0/installing-visual-studio.net-2005.html"]http://www.exforsys.com/tutorials/asp.net-2.0/installing-visual-studio.net-2005.html[/URL] | |
Re: Correction: Line # 18 [code] int size=MAX; [/code] Line #28 - Remove that line Line #37 [code] *a = rand () % 100; [/code] Line #71: Remove that line Line #72 [code] int size=MAX [/code] Line 74: Remove that line Line 75: Remove that line | |
Re: [b]>How the fixed and scientific manipulators should be used in c++?[/b] The standard manipulators are defined in namespace [b]std[/b] and presented in [b]iomanip[/b]. scientific format, [code] std::cout << std::setprecision(2) << std::scientific << 123.4567; [/code] fixed format, [code] std::cout << std::setprecision(2) << std::fixed << 123.4567; [/code] | |
Re: [b]>When the code runs to 'da.Udate(ds, "Expenditure")....[/b] When the Update method is called, changes in the DataSet are copied back to the database and the appropriate InsertCommand, DeleteCommand, or UpdateCommand is executed. Take a look at this page - [URL="http://msdn.microsoft.com/en-us/library/33y2221y.aspx"]http://msdn.microsoft.com/en-us/library/33y2221y.aspx[/URL] | |
Re: The notation [b]ClassName&[/b] means reference to [b]ClassName[/b]. For example, [code] int no=10; int& ref=no; [/code] In above code snippet, variable ref and no refer to the same int value. If you want to get a pointer to the object denoted by a [b]ref[/b], you can write: [code] int *ptr=&ref; // … | |
Re: [QUOTE=darcee]i put 100 on textbox then when i click a button then 100 IE's will open so if im going to use select statement when opening 100 IE my code will be crazy... heres[/QUOTE] Why don't you tell us what you're trying to do and we can tell you how … | |
Re: [b]>power function for one of my programs and keep getting the error message.[/b] Take a look at error description and the [URL="http://www.cplusplus.com/reference/clibrary/cmath/pow/"]prototype [/URL] for c++ pow(). You either need to change the type of value 10 to double (10.0) or cast it to double when you use it. | |
Re: Handle the [b]DataGridView1.EditingControlShowing[/b] event, [code] Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim dt As New DataTable dt.Columns.Add("No") dt.Columns.Add("Name") dt.Rows.Add(1, "A") dt.Rows.Add(2, "B") dt.Rows.Add(3, "C") DataGridView1.DataSource = dt AddHandler DataGridView1.EditingControlShowing, AddressOf MyEditHandler End Sub [/code] and from within the handler of EditingControlShowing, handles KeyUp event, … | |
Re: Use/Learn ASP.NET controls - DataControls (GridView, DataList, ListView etc). You can do so much better than PHP. | |
Re: [b]>that I can get the pubic Ip of the request[/b] Request.UserHostAddress property. | |
Re: [b]>how to insert data into database by using grid view[/b] Take a look at [URL="http://www.codeproject.com/KB/aspnet/InsertingWithGridView.aspx"]http://www.codeproject.com/KB/aspnet/InsertingWithGridView.aspx[/URL] |
The End.