No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
40 Posted Topics
Friends, I Have Developed an Application, Now I Want That My Application Should Start Automattically When System Starts, How Can I Do This, Please Suggest Me | |
Friends, I Using DatagridviewButtonColumn, I am Able to Changing The Text of That Button, on Run Time But Not Able to Using Enable/Disable Option, I Mean I Have a Button With The Text "Allot" When User Click on This The Text Becomes "Pause" But At The Same time This Button … | |
Friends, How Can i Validate to a User, That He Could Type Only Numeric Value in datagridviewtextboxcolumn, Please Suggest Me....... | |
Friends, I am Using Datagridviewcombobox and datagridviewlinkcolumn in a single datagridview, now i want to assign the value to datagridviewlink column by selecting datagridviewcombobox, How it May be Possible, Please Suggest.... | |
Friends, I am Developing a Windows Application For Lan, I am able to Scaning Pc's Name Which Are Connected on My Lan on Same Workgroup, But I have Problem That If Sudden I Get Lost Connection With any Client Pc, or Client Pc Become Shut Down So it Should Make … | |
Friends, I Want to Update My Connection String During Setup Installation on Client PC, Please Suggest Me How It's Possible... | |
Friends, I Have 15 Forms on My Software, I Want to Create 2 Setups First With 10 Forms and 2nd With 5 Forms, These Both Setup Willbe Installed on Diffrent PC, Please Suggest Me How It May Be Possible... | |
Friends, I Have a Datagridview in My Form, i am Using Combobox on datagridviewcellbeginedit event, it's Working But In this condition i am not able to using combobox_textchanged event, Suggest me any Idea.... | |
Friends, I Want to Check How Much PC's Are Connected On My LAN, and also if I Call The Database From Server PC to Client PC Then What Should be The Connection String, Please Suggest Me............. | |
Hi Fiends I am using file Uploader in my form , & trying to save resumes on my server address, i have a folder (resme) which is on server side & now I want to save resumes on that folder i am using server.mappath nut it's not working ,it's giving … | |
Re: There is a event of that, databound use that to add new items with existing items, code of this event will work when your data will be bound using datasourc. just wright here cboQuarter.items.add("XYZ") | |
Re: First let me know Where u Fill The Value in parameter row and does it execute one time then gives error | |
Re: Try This dim d as datetime=now.date Select * FROM tblname WHERE fordt=format("dd/mm/yy,d) | |
Re: Just add a Template Field In Gridview Then Go to Edit Template,In Edit Template Portion Use A Combobox,When U Will Click in Edit Button This Combobox Will Be Display There | |
Dear Friends, I Want to Crete an Application In Vb.net,I Want to do,if my Application Is in Running State(Either it is Minimize or Maximize),i cold store the Key Codes,Whatever keys are being used by my keyboard.Please Suggest me How Could I Do This....... | |
Hi friends I am working in vb.net ,there is i have a form in which i have a datagridview,& a column of checkbox in tat datagridview,when this datagridview becomes load, that checkes theb employee is present or absent if present so the check box of that perticular row must be … | |
Hello sir HTTP Error 500.23 - Internal Server Error An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode. This application defines configuration in the system.web/httpHandlers section. From MAnoj | |
Hi Friends I M Using vb6, i have a problem in this that when i execute my s/w so only, any single form becomes open at a time but i want that multiple forms must work together, Please Help Me. | |
Hi friends i m using asp.net 2005 ,i have used a crystal report in my web site,& i have design my report in that but now i want size of that report is (3 inches & 30 columns) ,i mean that must not use a-4 paper ,that must use size … | |
Hi friends i m using vb6.0, i have used datareport in that,theere are 4 taxes like education,h.edu.,those all are printing in report but now i want that if user including education tax or other taxes than only those fields must be show in report otherwise the field of that must … | |
I want to create server in one system and make another system as clients like if i save data in server that is also saved in clients system .So what datasource i have to give i mean to say that if i run setup in any system then that database … | |
I want to know that in server pc database is stored and that databas is accessed by client pc how to do that | |
Hi Friends I M Using Vb.net & M.S. Access ,I have to get image in run time & have to save in access database & Next Time Have To Show That Image In Datagridview How Can I Do This PLease Help Me | |
Hi Friends, I M Working In Vb.net, I Want that, to which form i m opening that must be top,while i don't close that,i could'nt open any other form,for this i m doing [B]topmost=true[/B](Property of form) ,& It 's working also but that is not showing the messages which i … | |
HI Friends, I m Working In Vb.net ,I m Using Datagridview in My Form, If There are 4 cells in datagridview ,& i have to check the condition that, to which cells user selecting, that is cell 0 or not, how can i Know this Please Help Me . | |
Re: Create a variable Like x Then x="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\office.mdb" Note :C:\Program Files\office.mdb By replacing it put your datasource And then try this | |
Hi Friends Accualy I Have a string(date) like 3/02/09 But I Want The Out Put a=3 b=02 c=09 How Can I Do This Plz Help Me | |
Hi Friends i am using vb.net & i have a textbox on that ,I want only numeric value on that textbox & if i type alfabetical on that textbox so that must give me a message to that type numeric value only I m not able to doing this plz … | |
Good Morning Friends I Am Using VB.net,I am doing code for search button & it's working for textboxes but not for combobox,accualy when it get any value so it shows on textbox by using textbox1.text=ds.tables(0).rows(0).item(0) & it shows but when i use combobox.text =ds.tables(0).rows(0).item(0) it doesn't show any value but … | |
Hi Friends I am using asp.net & sqlserver,I have an gridview,in which i am using inbuild insert,update,delete code,but when i click on edit button so textboxes shows there, But i want dropdowns there & when I click on update button so the selected value must be save on database ,but … | |
Good Morning I am using vb.net & access ,I have a office.mdb file ,now i want that when i click on a button that automatically must have that .mdb file & than must display a savedialogbox & where user give the location for saving that .mdb file that must be … | |
Re: Hi You Must try this [code=vbnet] Protected Sub DropDownList1_SelectedIndexChanged() con=new sqlcnnection(constr) adpt=new sqldataadapter("select dept_code from T.N. where dept_name='"+dropdownlist1.selecteditem+"'",con) ds=new dataset adpt.fill(ds,"T.N.") dim i as string=ds.tables(0).rows(0).item(0) dropdownlist2.item.clear() dropdownlist2.item.add(i) End Sub [/code] | |
Hi Friends I have make an application in which news will be present in marquee & User could make updation & insertion in that .so for this i am calling gridview inside of marquee & that is working properly but the problem is that when i click on edit button … | |
Hi Friends I am using a datagridview, there are four columns in that, & on fourth cell i have a button field, when i click on that i want to get the text of item(0) of selected row. please help me to solve this | |
Hi Friends I am using crystal report, when i click button1(for switcing to print page) so the printing form becomes infront, but when i click on print button of that form & get printout,imidiatlity that form become minimize & hides on task bar but it's necessary that form must be … | |
Hi Friends I am working in vb.net,i have a form in that, which windows state is normal & it starts on normal position but if another form is open on that application which windows state is maximize,& then if i open that form so that also become maximize, But I … | |
Re: For Having the value of first form to second form you will have got to wright code on load event of second form Private sub form2.load() textbox1.text=form1.textbox1.text exn sub Note:-1) textbox1.text is the textbox of second form in which you want to get value 2)form1 is name of firstform | |
Hi Fiends, How can i add new rows in datagridview on run time. accualy I have a table, in which i have Many records But i want some specific records on datagridview .& for that I am using If condition , & whic records are correct accoding to that if … | |
Hi friends, could anybody guide me , how to find that a date exists in between two dates ? For example : 23/09/2008 -- 28/09/2008 - I'am on leave. When a attendence is entered for the date 24/09/2008 , then i should get a msg saying, that the given date … | |
Hi Friends I am working in vb.net & ms access, i have a table in which i am saving leave detail means leavefrom & leaveto, records are like 05/12/08 & 10/12/08 I have to controls in front end from where i am passing the value for leavefrom & leaveto i … |
The End.