Hi,
I am developing a application which allows users to ADD/UPDATE/DELETE data from database via a datagridview.
To do this user has to select a table from a dropdown list and the grid shows data based on the table selected.
The total number of tables available for the user can be upto 30.
Right now I am using builtin ADO.NET objects like the dataset and datatable to display and manipulated the...
User Profile
Collapse
-
Store assembly version in database during Post build event
Hi,
I want to add assembly version into the database during post
build event.
How can we achieve this ?
Regards,
Prasad -
Right click on the toolbox, from the context menu select "Choose Items". Selecting this option displays the list of .NET Framework components. From the list select "TextBox" -
I think there is no need to install oracle at client as all your application code will executed on the server side.Leave a comment:
-
You can apply Master Page to every content page in a particular folder or every content page in a particular application. You can add a configuration option to the web configuration file rather than adding MasterPageFile attribute to individual content pages.
for example : FolderA\web.con fig looks likes this
<configuratio n>
<system.web>
<pages masterPageFile= '~/SimpleMaster.ma ster' />...Leave a comment:
-
-
what are you using ?
if you are using ASP.NET then you can display messagebox on client side using javascript.Leave a comment:
-
-
Have you tried giving same file extension, because your src file is .accdb and destination is .mdbLeave a comment:
-
During runtime creation of treeNodes you can set the contextMenu property of tree node.Leave a comment:
-
This link will help you understand the behavior of "Sort" method
http://msdn.microsoft.com/en-us/library/w56d4y5z.aspx...Leave a comment:
-
-
-
Creating an Installation ID
Hi,
I want to create an installation ID for each setup which I create for my .net program.
Also, it should be possible to know the installation id when the program runs. -
-
-
SQL database readonly error on Windows 7
Hi,
I am facing a strange problem. I have installed a program on windows 7, my installation has a sql database. The program is installed properly. But when i run the program and try to save any data in the database i get an error "Database read-only". How to manage this situation on windows 7 or vista.
Any help will be highly appreciated.
Regards,
Prasad Parik -
UI hangs while updating 1000 labels
Hi,
I have a windows form where i try to update a form which has 1000 labels. By update i mean i try to set the color of the labels. And i am doing this update in windows form timer every 1 sec.
My problem is the UI freezes. I tried using a thread. In the thread i tried to call the update code, but still the UI hangs. -
There is one way to do it. Use the MSComm Control i.e Microsoft Communication control. Add this component from the list of com components.
Right click the toolbox of the .NET IDE then click on Choose items.Then from com components add Microsoft Communications control.
Drag and drop the control from toolBox
The default name for the control comes as AxMscomm1
Set the port number for the control either...Leave a comment:
-
I think this should work
With sqlparam1
.ParameterName = "@sntItemCo de"
.SqlDbType = SqlDbType.Small Int
.Value = intItemCode
End with
With sqlParam2
.ParameterName = "@dblQty"
.SqlDbType = SqlDbType.Float
.Direction = ParameterDirect ion.Output
End With
With cmd
.Parameters.Add (sqlparam1)
.Parameters.Add (sqlparam2...Leave a comment:
No activity results to display
Show More
Leave a comment: