516 Posted Topics
Re: before rep.SetDataSource(d) have only those rows for which value is not 0. If your using any database you can do it in query or else you can remove the rows using dataview.rowfilter option. | |
Re: Best way is to do it at the backend using Cursors. If you want to delete from front end only then you can give this approach *(Assuming you have primary key in your table to indentify unique row.)* Get all the keys into array, and loopthrough them and call the … | |
Re: loop through the datagridview to check weahter checkbox is checked and have the inner loop for listview and make the listview cell empty. | |
Re: Then use the search condition in dataview using dataview.rowfilter method and bind the dataview back to grid. | |
Re: U need to add the required component for crystal reports at client system. So u needs to include them in prerequisites in ur project and why you want to install the SQL at client end? it should be server and ur client should point to server. | |
Re: You need to install framework in client system in which you developed ur application. You can even change the target framework in project proerty | |
Re: your aspx can open in browser. Open project in IDE in which you developed in your professor system and right click on aspx you want to view, then you could see browser option. | |
Re: You need to deploy that webservice into server | |
Re: Which database are you using? What is the table you want to update? Be specific. | |
Re: INSERT INTO Cust_Details(Cust_ID, CustName, Gender, Age, Phone, CustAddress) Values "(" & custid & ", " & custname & "," & gender & "," & age & "," & phno & "," & custadd & ")" Try this. | |
Re: Show your code.. You checked the DB when you close the application? Once saved in Db will not delete automatically Either your deleting in your code or you are not loading it back. | |
Re: If this Question is regarding sessions in ASP.Net Then it should be moved to ASP.net forum where experts can help you.... I suggest you to read on Session veriables, cookies, and Querystring in asp.net | |
Re: Making the form independent of resolution is difficult. That is why MS has brought in WPF. You can try using Layouts in form design.. Let us know if you get any sollution :) | |
Re: Listbox.items.removeat(Passtheindex) And writeback all the remaining lines to textfile again.. | |
Re: Why you want to open in textbox? Try reading in moemory and add the site.. | |
Re: You can also use Select count(*) from bookings instead of Select * | |
![]() | Re: Using split function with delimiter as vbSpace get the contenets into array load the first item of array into New array list or use wherever u want to.. |
Re: Try application.doevents.. Or Try to use threading or background worker.. | |
Re: You can save the content of file i am not sure the file itself can be saved in DB. | |
Re: Why cant u try like this Private Sub TextBox1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown If e.KeyCode = Keys.F3 Then MessageBox.Show(e.KeyCode.ToString) Else MessageBox.Show(Keys.KeyCode.ToString) End If End Sub | |
Re: It will take the resource as number of files increses everytime. You should find some mechanisim to freeup the resource like using the background worker or threading. What if the file count reaches lacks?.. Cant u take out the old files after comparing to backup folder? | |
Re: Select Distinct top 10 [Batch No], [Item Name],Decentralization, UOM, Balance from Decentralization order by Serial desc Distinct should come first before top 10... | |
Re: Datagridview1.rows.add method to add the rows to grid.. | |
Re: After running this code did you check there is table in dataset? And table has rows? | |
Re: Try something like this DataGridView1.Rows(1).Cells(1).Value = "Testing" But you need to know in which row and which column you need to add value.. | |
Re: Try 'All ur code goes here Catch ex As Exception ' Cathc the error if any and show the user or log End Try | |
Re: IsIdentity =true? And identity seed=1? Then if you have any records in table it will be not be -Ve | |
Re: Are you allready binding the combobox from database? | |
Re: Is your query correct? What is the issue. please explain | |
Re: Add panel to form and cover the panel to form then add ur controls to panel and set dock property | |
Re: I know this thread is solved, Pooja can you explain the solution in detail plz.. | |
Re: Are you copieng your MDB database file in client system? Users do have enough permission on the folder where your application is pointing? | |
Hi all. im writing function to find and replace the string. Im using 2 textbox's one for keyword which is to find and one to to replace. im having having two buttons btnfindnext and btnreplace. if i click on replace button it should select the text first and agin if … | |
Re: preferably primary key should be integer only. It should not be varchar datatype. | |
Re: Dear Iamateur Do you understand what the code is? What you mean by all the MDI form? application will have one MDI form. Not many... And the code above you wrote is for setting the child form to its parent as MDI form | |
Re: are you getting anything in myreader? myreader.hasrows=true? | |
Re: What you mean by making datagid as table? in UI or database table? please explain... | |
Re: conflict in database? Explain in detail about your problem. | |
Re: And also use the finally bloack to close ur connection to database or to dispose any objects... | |
Re: listbox1.Items.Add("Item you want to add 1" & vbtab & "Item you want to add 2") | |
I am not able to reply to any thread... I am no longer member to daniweb? | |
Hi team, I am not able to see all the post in which i contributed in new version... :( | |
Re: @Poojavb why need to add textbox and assign book_id? Cant he bind the book_id to grid and make that coloumn visible false? and read that Id when user click on delete? | |
Re: your checking for [B]IF dTable.Rows.Count = 0 [/B] if count is 0 means there is no data in datatable... how will you get the value? I think it should be [B]IF NOT dTable.Rows.Count = 0 [/B] | |
Re: Make copylocal=true in property window for that folder and make sure when u build the app this dll should get copied to ur bin/Debug folder. | |
Re: Try setting dataset=nothing or dataset=null. This should work | |
Re: Search in internet for FTP... u may get some idea.. U need to write broker service which will be running in ur server. | |
Re: What is your problem? | |
Re: Please post your code you have so far. So will come to know your approach to show records. |
The End.