516 Posted Topics
Re: You can go for threads where u can give some pause.. m i right debasis? | |
Re: You want to open the page? if yes you can use response.redirect("URL"). | |
Re: Hi you can use IF EXISTS(Select * from table where condition is) | |
Re: Do u have permision on file? Is File is read only? Check out | |
Re: you want handle it for perticlar session? if yes have session level variable. in click event of face count and validate | |
Re: Change ur Query to get one value after adding Select Fileld1+Field2 as ColumnName from Table where conditon | |
Re: Hi, Write the property in the form with get set values... and set the values based on that. hope this will give you an idea | |
Re: ya izyrider is correct. when click on one control u want to fire one more control that you can do.. | |
Re: [CODE] Dim txt As New TextBox txt.Name = "txttest" Dim loc As System.Drawing.Point loc.X = 300 loc.Y = 168 txt.Location = loc txt.Text = "Testing textbox" txt.ReadOnly = False Me.Controls.Add(txt)[/CODE] Get the location of your label control and set that location to textbox and after adding the textbox hide your … | |
Re: After creating the webservice have you tried to browse ur web service within the IIS?. If yes Whats the URL ur getting? have you added the Same URL while adding the referce in ur project? | |
Re: Select * from Customer where customerreferene number='Pass the reference number'. Fill the data set with the records, loop through all the records and assign the values to the respective textboxes. | |
Re: Have you tried the code to load the listbox witth one item? i have pasted the code. And have you not used the timer control? | |
Re: First Design the tabs as u want and the Set its allign proerty to left | |
Re: Explain in details what exactly you want to do? u want to monitor state of process? if yes try out System.process ("ProcessName") | |
Re: Hi, Use instr method and substring method to get ur out put... Happy coding... ) | |
Re: Use IF EXISTS method in sql if EXISTS returns true then rerun -1 or boolean as false... then give the message box appropriately... | |
Re: I think you havel already created thread for this.. :) Did you try the sollution given there? | |
Re: Hi Vineeth, In Vb i dont think so u can EDIT the application like this. You need to make the changes whatever you want and build the application and need to give the exe... just cant edit the published version becoz once you pulbish the version your application will be … | |
Re: Hi, you can for Checkedlistbox control first load all the students from DB for that subject and then Get the student who are present, based on that mark the check boxes | |
Re: Build your webservice and copy the output files on the server and cofigure IIS by creating virtual folder then you can access from wherever you want to. | |
Re: Pass the command to the adapter, before filling the adapter just pass the command to it and see... | |
Re: [CODE] ' Form level variable Dim index As Integer = 1 Dim dt As New DataTable Dim dc As New DataColumn("Numbers") Dim NoOfRows As Integer = 0 ' Put it in form load event dc.DataType = System.Type.GetType("System.String") dt.Columns.Add(dc) DataGridView1.DataSource = dt '' in Button add Click Try Dim dr As … | |
Re: prepare sql statement at front end only based on the condition. and pass to DB and return the dataset and load... example: [CODE] Private sub SerachDetails(Byval firstname as string,lastname as string,dob as date) Try --here you check for all the parameters which are not nothing and based on that write … | |
Hi All, I have checkedlistbox on my windows form which is binded to datasource, I do check the items in checkedlistbox based on some criteria, When user uncheck some items I want to save the records, but in Checked Items collection still I’m getting items as checked, which are unchecked. … | |
Re: Yes @@identity will give you the the New id after insert | |
Re: Select Question from Questions table where year=@year fill the dataset with Questions and Show only record. u can use the Index property of grid and then on clik event of button get the row of next index hide other rows | |
Re: Go to the design mode of form to which u want to add tree view In common controls tab u will find the treeview control just drag and add to the form | |
Re: Cant you have contact person and company combobox on same page? if yes then you can validate easily user has selected the company for contact person or not | |
Re: [CODE] If CheckBox1.CheckState = CheckState.Checked Then If CheckBox1.CheckState = CheckState.Checked Then For i As Int16 = 1 To 5 ListBox1.Items.Add(i).ToString() Next Else ListBox1.Items.Clear() End If End If[/CODE] Write this code in CheckBox1_CheckStateChanged Event | |
Re: Hi, Are you using datagrid? or any other 3rd party grid? What is the problem at client side? | |
Re: The 3rd pc has been installed with the frame work? | |
Re: In db also Make the column salray as decimal and try | |
Re: Try Back color property and borderstyle property of label. And for textbox i dont think we can do that... | |
Re: Use IIf(IsDBNull(urobject), "", Data ur fetching IIf(Isdubnull(Object tocheck for null),True part,Falsepart) Hope it helps u | |
Re: [CODE]Dim str as string str=textbox.text str=str.substring(0,2) str will hold the value of first two charecters[/CODE] | |
Hi Guys I'm New to web development. i need one help. I'm having list box on my form, in form load event i will bind the list box with database value. user should be able to select only 5 items from the list box and also i want to validate … | |
Re: if u want to give the setup u have to publish the application. its same in both 2005 and 2008. what u mean by single exe? if supporting files and the dll used in ur application are not included in the exe then do u think that exe works? | |
Re: to add combobox.items.add("xyz") combobox.items.add("abc") to retrieve u can use combobox.selecteditem or combobox.selectedindex | |
Hi all, i need to select the paragrah from the current cursor position. any ideas? | |
Re: That button should be publicaly decalred. if it is publically availabele then in child form closing event Mdiform.cmdmenu.disabled=true | |
Hi All I need to capitalize the first word of each new sentence as user types. How will i come to know about the start of new sentences? do i need to use regular expression for this? | |
Re: To make text box to accept only numbers, in key press event of that textbox u can code like this If Char.IsDigit(e.KeyChar) = False And Char.IsControl(e.KeyChar) = False Then e.Handled = True MsgBox("Please enter valid number ") End If i think u can mannage other one.. | |
Hi all in my appliction i want to send the document through mail i.e: outlook here is my code Dim myWS As Object Dim RegKey As String Dim Key As String Key = "HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\" 'access Windows scripting myWS = CreateObject("WScript.Shell") 'read key from registry RegKey = myWS.RegRead(Key) If RegKey = … | |
Hi all i need one help. i have a text file something like this date time employee name Department id Employee id Jan 2007 12 pm abc 001 676666 ''''' ''''''''' '''''' '''''''''' ''''''''''''' ''''''''''''' '''''' '''''''''' '''''''''' '''''''''' Feb 2007 9am xyz 005 434367 all are tab delimited and … | |
Re: In vb.net u need to use the property called Application.StartupPath="path u want to give" | |
Re: what u mean by graphically here? u can resize the control at run time using controls property called size and also u can change its location using location property. | |
Re: In windows application if u want to create user control develop the application go to properties of the project make it as a class library and then select start up object as nothing then run the application it will give u the dll file instead of .exe you can use … |
The End.