5,346 Posted Topics

Member Avatar for SanchitPaurush

Visit [URL="http://www.anybrowser.org/campaign/abdesign.html"]Viewable with Any Browser[/URL].

Member Avatar for kvprajapati
0
70
Member Avatar for reyarita

[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?

Member Avatar for kvprajapati
0
57
Member Avatar for May Tang

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]

Member Avatar for kvprajapati
0
108
Member Avatar for Jeronim
Member Avatar for JasonHippy
0
112
Member Avatar for MARKAND911

[b]>How to read images from a given folder using C#?[/b] [code] pic.Image = Image.FromFile("filepath"); [/code]

Member Avatar for kdcorp87
0
115
Member Avatar for tqmd1

[b]>This is not order by date as you can see.[/b] Field date must be of [b]DateTime or date[/b] type.

Member Avatar for apegram
-1
118
Member Avatar for coollife

[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]

Member Avatar for kvprajapati
0
85
Member Avatar for zachattack05

[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].

Member Avatar for zachattack05
0
3K
Member Avatar for solomon_13000

Please read this [URL="http://www.codeproject.com/Messages/3280509/Expire-a-link.aspx"]FAQ[/URL].

Member Avatar for TinsaeG
0
96
Member Avatar for lee.j.baxter

[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].

Member Avatar for lee.j.baxter
0
224
Member Avatar for sandeep.snl

[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]

Member Avatar for sandeep.snl
0
83
Member Avatar for suncica2222

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].

Member Avatar for suncica2222
0
284
Member Avatar for anishakaul
Member Avatar for kvprajapati
0
95
Member Avatar for Eleqtriq

[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 …

Member Avatar for kvprajapati
0
207
Member Avatar for Mitja Bonca
Member Avatar for kvprajapati
0
92
Member Avatar for jamesonh20

Have a look at - [url]http://developer.novell.com/wiki/index.php/TagLib_Sharp[/url]

Member Avatar for kvprajapati
0
67
Member Avatar for RehabReda

[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].

Member Avatar for mrnutty
0
98
Member Avatar for alphaman1101

[URL="http://www.codeproject.com/KB/IP/dotnettcp.aspx"]here[/URL] is codeProject article on multi-threaded application.

Member Avatar for alphaman1101
1
170
Member Avatar for ashab27

[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].

Member Avatar for mith_cool
0
137
Member Avatar for oluscoa

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.

Member Avatar for Nattynooster
0
134
Member Avatar for Brick

If you haven't read please read this - [url]http://msdn.microsoft.com/en-us/library/bb384572.aspx[/url]

Member Avatar for Brick
0
164
Member Avatar for ageryckeh

Welcome, [b]>Do you have an idea coding it in VB.net?[/b] Of course, we have. BTW feel free to ask us.

Member Avatar for kvprajapati
0
97
Member Avatar for ericstenson

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) …

Member Avatar for kvprajapati
0
1K
Member Avatar for bonnysammy

[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]

Member Avatar for bonnysammy
0
1K
Member Avatar for sfrider0

[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].

Member Avatar for apegram
0
140
Member Avatar for zachattack05

Take a look at - [url]http://www.symantec.com/connect/articles/install-and-configure-sql-server-2008-express[/url]

Member Avatar for zachattack05
0
172
Member Avatar for david cashin

[b]>Accesing text file from server to use in Java applet[/b] The java.net package provides basic functionality for accessing resources via HTTP.

Member Avatar for kvprajapati
0
147
Member Avatar for firoz18

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].

Member Avatar for kvprajapati
0
34
Member Avatar for rohini.vangury

[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 …

Member Avatar for Jadooo
-1
164
Member Avatar for Thyoric

[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]

Member Avatar for Thyoric
0
322
Member Avatar for darcee

[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]

Member Avatar for darcee
0
103
Member Avatar for lefe0102
Member Avatar for random1970
0
108
Member Avatar for Kligham

[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]

Member Avatar for Diamonddrake
0
364
Member Avatar for harshbavaliya

You should use [URL="http://www.phpmyadmin.net/documentation/"]phpmyadmin [/URL] tool.

Member Avatar for harshbavaliya
0
100
Member Avatar for Nfurman

[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.

Member Avatar for Nfurman
0
97
Member Avatar for javaAddict

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 …

Member Avatar for javaAddict
1
929
Member Avatar for renoxp
Member Avatar for pauldani
-4
150
Member Avatar for RahulV

[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]

Member Avatar for kvprajapati
0
99
Member Avatar for sharao

[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.

Member Avatar for kvprajapati
0
333
Member Avatar for igirl

[b]>Can I input HTML into the one data row?[/b] Yes. You need to use stored-procedure or parametrized query.

Member Avatar for yonker
0
116
Member Avatar for debangan.b

[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 …

Member Avatar for debangan.b
0
129
Member Avatar for t_rajan19

[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 …

Member Avatar for kvprajapati
-1
48
Member Avatar for SpyrosMet

[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]

Member Avatar for kvprajapati
0
122
Member Avatar for hypnos4

To write back those changed data, you need to invoke Update method of dataAdapter. Showing your code might help.

Member Avatar for kdcorp87
0
338
Member Avatar for OldQBasicer

[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 …

Member Avatar for OldQBasicer
0
167
Member Avatar for Ap0ca1ypse

[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]

Member Avatar for Ap0ca1ypse
0
146
Member Avatar for jemz

[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 …

Member Avatar for javaAddict
0
3K
Member Avatar for Saidar

[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.

Member Avatar for kvprajapati
0
155
Member Avatar for JAM1011

[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]

Member Avatar for kvprajapati
0
185
Member Avatar for tqmd1

[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]

Member Avatar for tqmd1
0
144

The End.