5,346 Posted Topics
Re: Visit [URL="http://www.anybrowser.org/campaign/abdesign.html"]Viewable with Any Browser[/URL]. | |
Re: [b]>guys do u have idea how to use listbox or datagridview?[/b] Yes. Read the forum rules. You need to show effort, and what better way than posting the code that you have tried so far? | |
Re: Line #18 - Table name would be "ProductABC" [code] PicBox1.Image = New System.Drawing.Bitmap("\program files\Nuttycafe\Images\" + CStr(Result.Tables("ProductABC").Rows(0).Item("ProductImage"))) [/code] | |
Re: Line #15 statement should be, [code] something=A(5); [/code] | |
Re: [b]>How to read images from a given folder using C#?[/b] [code] pic.Image = Image.FromFile("filepath"); [/code] | |
Re: [b]>This is not order by date as you can see.[/b] Field date must be of [b]DateTime or date[/b] type. | |
Re: [b]>when i select few checkboxes in 1st page and when i move to 2nd page the checked status of 1st checkboxes disappear.[/b] Save data (file or database). [b]>if i want to make a checkbox true which is in 3rd page how to do it.[/b] [code] // set checked property [/code] | |
Re: [b]>is there a better, more elegant way of doing this or is this pretty much it?[/b] I suggest you to use [b]Application.OpenForms[/b]. | |
Re: Please read this [URL="http://www.codeproject.com/Messages/3280509/Expire-a-link.aspx"]FAQ[/URL]. | |
Re: [b]>Which should I go for in this case?[/b] Use [URL="http://social.msdn.microsoft.com/forums/en-US/Vsexpressvb/thread/7313d512-bbb5-4c12-aed3-0242e4f64d52/"]Service [/URL]Based database. [b]>What sort of locking mechanisms are available within SQL Server?[/b] See [URL="http://www.sqlteam.com/article/introduction-to-locking-in-sql-server"]this[/URL]. | |
Re: [b]>how can we handle exception ,make entry to log file using Microsoft enterprise library.[/b] Have a look at this CodeProject article - [url]http://www.codeproject.com/KB/architecture/GetLoggingWithEntLib.aspx[/url] | |
Re: You may start to code with [URL="http://msdn.microsoft.com/en-us/library/ms715241%28VS.85%29.aspx"]Windows [/URL]Mail API (Outlook express). Take a look at VMime, [URL="http://www.vmime.org/"] is a free mail library for C++[/URL]. | |
Re: [URL="http://www.parashift.com/c++-faq-lite/"]C++ FAQ Lite[/URL] | |
Re: [b]>but how would I retrieve that price?[/b] Html Agility Pack - [url]http://htmlagilitypack.codeplex.com/[/url] [QUOTE]This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XSLT (you actually don't HAVE to understand XPATH nor XSLT to use it, don't worry...). It is a .NET code library that … | |
| |
Re: Have a look at - [url]http://developer.novell.com/wiki/index.php/TagLib_Sharp[/url] | |
Re: [b]>i don't understand this line [u]typedef basic_string <char> string;[/u][/b] [b]basic_string[/b] class is parameterized by character type. There is no need to use the basic_string template directly. The types string and wstring are typedefs for, respectively, basic_string<char> and basic_string<wchar_t>. See [URL="http://www.cprogramming.com/tutorial/string.html"]article[/URL]. | |
Re: [URL="http://www.codeproject.com/KB/IP/dotnettcp.aspx"]here[/URL] is codeProject article on multi-threaded application. | |
Re: [b]>I am getting error on line cmd.ExecuteNonQuery()[/b] Do not handle event for child controls. Child control automatically bubble-up the event to their parent. Please read this [URL="http://www.asp.net/%28S%28pdfrohu0ajmwt445fanvj2r3%29%29/learn/data-access/tutorial-14-vb.aspx"]tutorial[/URL]. | |
Re: Have a look at [URL="http://msdn.microsoft.com/en-us/vbasic/ms789086.aspx"]"Learn VB.NET from MSDN"[/URL]. I've learned a lot from that site. | |
Re: If you haven't read please read this - [url]http://msdn.microsoft.com/en-us/library/bb384572.aspx[/url] | |
Re: Welcome, [b]>Do you have an idea coding it in VB.net?[/b] Of course, we have. BTW feel free to ask us. | |
Re: Use an [URL="http://msdn.microsoft.com/en-us/library/system.net.sockets.tcplistener.beginaccepttcpclient%28VS.80%29.aspx"]BeginAcceptTcpClient()[/URL] method, [code] Class MyServer Public Sub Start() Dim listener As New TcpListener(IPAddress.Any, 4554) listener.Start() While True Dim result As IAsyncResult = listener.BeginAcceptTcpClient(callBack, listener) … | |
Re: [b]>I have it looping[/b] That is improper. [b]>Is there a way to do this? [/b] [code] for (int i = 0; i < ResourceCount; i++){ string ResourceName = Resource[i].ToString(); for(int i2 = 0; i2 < 10; i2++){ RadioButton btn=new RadioButton(); btn.ID=ResourceName + "_" + i2; btn.GroupName="GName"; form1.Controls.Add(btn); } } [/code] | |
Re: [b]>is there a way to view and grab the page source?[/b] [URL="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx"]HttpWebRequest[/URL]. | |
Re: Take a look at - [url]http://www.symantec.com/connect/articles/install-and-configure-sql-server-2008-express[/url] | |
Re: [b]>Accesing text file from server to use in Java applet[/b] The java.net package provides basic functionality for accessing resources via HTTP. | |
Re: Classic ASP and ASP.NET pages are run side by side in [B]IIS[/B]. Check the Application Mapping settings: The classic asp extensions (.asp) should map to [B]asp.dll[/B] and The .Net extensions(.aspx, .ascx, .asax, etc.) should map to [B]aspnet_isapi.dll[/B]. | |
Re: [b]>length of parameters cannot be less than zero.[/b] Show us exception [URL="http://social.msdn.microsoft.com/forums/en-US/vcgeneral/thread/be90d44e-9cbe-40d0-82f8-1e6d24b2a7cd/"]trace[/URL]. Please read the rules before posting again, in particular the 'Keep It Clean' one - We strive to be a community geared towards the professional. We strongly encourage all posts to be in full-sentence English. [b]Please do not … | |
Re: [b]>what to do to read the file to put in the post data.[/b] You should use [b]System.IO.File[/b] class method. [code] Dim byts() as byte=System.IO.File.ReadAllBytes("filename") [/code] | |
Re: [b]>How to use NumericUpDown?[/b] Put following code in handler of click event, [code] .. For i As Integer = 1 To NumericUpDown1.Value 'Put your code Next .. [/code] | |
Re: Prefix [B]'[/B] (single quote) char - Number stored as Text. Eg. ('100.20000) | |
Re: [b]>how I can get the coordinates of a specific color from a window?[/b] Take a look at codeproject article - [url]http://www.codeproject.com/KB/miscctrl/ColorGET.aspx[/url] | |
Re: You should use [URL="http://www.phpmyadmin.net/documentation/"]phpmyadmin [/URL] tool. | |
Re: [b]>How to make the data in form not to be accessible twice?[/b] Golden rule: 1. Turn off autocomplete. 2. Disabled the response cache. 3. Disabled the viewState. | |
Re: RFC - [url]http://www.isi.edu/in-notes/rfc2045.txt[/url] [indent] Beyond this syntax, the only syntactic constraint on the definition of subtype names is the desire that their uses must not conflict. That is, it would be undesirable to have two different communities using "Content-Type: application/foobar" to mean two different things. The process of defining new … | |
Re: See, [url]http://www.dotnetspider.com/convert/Csharp-To-Vb.aspx[/url] | |
Re: [b]>What all are the ways to synchronize two SQL databases?[/b] [b]>If there is a way to do it via query or code, what is that query/code?[/b] Take a look at MSDN article - [url]http://msdn.microsoft.com/en-us/library/aa833263%28VS.80%29.aspx[/url] | |
Re: [b]>i think jquery is one option[/b] Nope. [b]>if any one knows tell me the process how to run script when disable...[/b] You can't and this is because of security limitations. | |
Re: [b]>Can I input HTML into the one data row?[/b] Yes. You need to use stored-procedure or parametrized query. | |
Re: [b]>I need to learn .net 3.5 frame work.[/b] [b]>What are the things i need to learn to handle a site as I am working in a site devlopment team[/b] Great! purchase some good books to learn : 1. xhtml/css/javascript 2. [URL="http://www.microsoft.com/NET/"].net framework[/URL] 3. Programming language C#/VB.NET 4. SQL & Database … | |
Re: [b]>automatic generation control in asp.net with vb[/b] I guess. You want to add a web-control into a web-page dynamically. [code] Dim btn as New Button btn.Text="OK" form1.Controls.Add(btn) [/code] PS: Please read the rules before posting again, in particular the [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"][B]'keep it organized' [/B][/URL] one - subject titles such as 'help … | |
Re: [b]>how to create an array that contains objects[/b] In addition to AD's post, read following (FAQ): 1. [url]http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.5[/url] 2. [url]http://www.parashift.com/c++-faq-lite/freestore-mgmt.html[/url] | |
Re: To write back those changed data, you need to invoke Update method of dataAdapter. Showing your code might help. | |
Re: [b]>Is there a way to wrap the text on the list box items.[/b] Yes. OwnerDrawn ListBox. [code] Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ListBox1.DrawMode = DrawMode.OwnerDrawVariable AddHandler ListBox1.DrawItem, AddressOf drawIt End Sub Sub drawIt(ByVal sender As Object, ByVal e As DrawItemEventArgs) .... End Sub … | |
Re: [b]>how do I add the DB?[/b] Read "Walkthrough: Deploying a Windows-based Application" article - [url]http://msdn.microsoft.com/en-us/library/k3bb4tfd.aspx[/url] | |
Re: [b]>how to write on notepad?[/b] Text from Java doc Robot class : This class is used to generate native system input events for the purposes of test automation, self-running demos, and other applications where control of the mouse and keyboard is needed. The primary purpose of Robot is to facilitate … | |
Re: [b]>Any idea how I can write a program that will work on ANY web page, no matter what the names of the text inputs are?[/b] Nope. You can't write such a program. | |
Re: [b]>I need to insert each part into a different unbound field.[/b] Take a look at this thread - [url]http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/a782ef30-b06f-4e91-ac85-88f23ada4adb[/url] | |
Re: [b]>What query should I USE?[/b] UPDATE. [code=text] UPDATE TAB1 set TAB1.COL1 = TAB2.COL1 FROM TAB1 INNER JOIN TAB2 ON TAB1.COL2 = TAB2.COL2 [/code] |
The End.