Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
30% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
4
Downvotes Received
14
Posts with Downvotes
12
Downvoting Members
5
7 Commented Posts
0 Endorsements
Ranked #585
~51.7K People Reached
Favorite Tags
Member Avatar for babbu

i want to call the load event of the form inside the click event of the commant button depending upon certain condition how can i do this?

Member Avatar for Nahla_1
0
2K
Member Avatar for manutd4life

Hello i had a datagridview with data in it and i wanted to display the selected row in textboxes here's the code i tried by i think its totaly wrong [code=vb.net] Private Sub DataGridView_CellClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellClick Dim i As Integer i = DataGridView.CurrentRow.Index …

Member Avatar for Muhammad Nauman_1
0
14K
Member Avatar for krishnisilva

hi, how can i add data to a datagridcombo box column from a mdf file, i want to take the first name of all employees and display in the datagrid view combo box column: is the code below correct , please can u tell me what should i do to …

Member Avatar for yonathansona
-1
2K
Member Avatar for theashman88

I'm trying to create a code that gives the factorial for a number given. If it is negative, string, or to large of a number an error should return. I figured out how to do the catch for the negative and string, but I'm confused on how to create a …

Member Avatar for cgeier
0
279
Member Avatar for GagaCode

hi all; again i have a little bit wired problem here what i'm trying to achive here is that i would like to to a search query to search an employee and after that change the depatment and after that update the data into access database and as you can …

Member Avatar for arunkumars
0
304
Member Avatar for babbu

Hi, My project is in c#, created in vs2008 with access 2007 as the db and windows 8.1 as the os. I've created a setup file with the required dll and accdb file added to it. When the application runs for the first time it creates another copy of the …

Member Avatar for cgeier
0
184
Member Avatar for ankit1122

hello i have a textarea named skills.. i wanna get values from skills and put it in a array ..my code <html> <head> <title>TODO supply a title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <form name="f1" action="wel.php" method="post"> <textarea name="table"></textarea> <textarea name="skills"></textarea> <textarea name="city"></textarea> <textarea name="region"></textarea> <textarea name="country"></textarea> <input …

Member Avatar for babbu
0
164
Member Avatar for babbu

I have created an application in c#. Following are my concerns. 1) create setup file which includes the ms access db 2) identify the location where this db will be stored 3) use this location as the data source for the application

Member Avatar for Ketsuekiame
0
221
Member Avatar for geethashri

hello i am using vb 2008 version and microsoft office access 2003.I have installed access 2007 also. while i work in vb,i get error -could not find installable ISAM ,at this code con.open("provider=microsoft.jet.oledb.4.0;datasourse="&application startup path&"vbnet.mdb")

Member Avatar for zryder
0
139
Member Avatar for babbu
Member Avatar for babbu

hie m using visual studio 2005 and sql 2005 i want to export my sql database to excel..

Member Avatar for Cameronsmith63
0
183
Member Avatar for LDiver

I am trying to per textchanged in a textbox call an isnumeric function. I cant seem to get it to work. function: [ Private Function IsNumericCheck(ByVal CheckVal As String) As String 'check for numeric values and return boolean If IsNumeric(CheckVal) = False Then Return False Else Return True End If …

Member Avatar for nedrosat
0
875
Member Avatar for babbu

Is it possible to trigger an informatica job in JSP/Servlets? For eg. in unix we use pmcmd command to perform this task. Is it possible to run informatica jobs in JSP/Servlets?

0
61
Member Avatar for babbu

Hi, I have a JSF application. There is page parent.jsp which opens a popup using javascript (window.open() function) I want the data on the parent.jsp page to be available on the popup window as well. Any idea how this can be done. The application also uses JSF Portlets.

Member Avatar for babbu
0
91
Member Avatar for babbu

Hi I want to pass the data from one JSF page to another without using query string. Any idea how this can be done??

Member Avatar for babbu
0
239
Member Avatar for babbu

Hi I am looking to set the value of <portlet:param> tag using java script. Here is my existing code [CODE] <form name="frmname" method="post" enctype="multipart/form-data" action="<portlet:actionURL><portlet:param name="page" value="mainview"/></portlet:actionURL>"> [/CODE] And I am setting the value of the portlet:param tag by calling the following javascript on the page load event. [CODE] function …

Member Avatar for babbu
0
505
Member Avatar for babbu

Is is possible to create excel file with multiple workseets using response.setContentType.?

Member Avatar for masijade
0
69
Member Avatar for babbu

Hi, I have a code that writes data to excel using setcontentype(application/vnd.ms-excel) Now I want one of the columns to be formatted to currency. I do not intend to use any additional jars(POI, etc). Is it possible to achieve the task. Thanks

Member Avatar for peter_budo
0
104
Member Avatar for babbu

Visual studio 2005 and access 2007. Autocomplte textbox is not displaying results. Here is my code [CODE] txtname.AutoCompleteCustomSource = m_namesCollection; m_namesCollection.Clear(); if (!String.IsNullOrEmpty(txtname.Text.Trim().ToString())) { m_search = txtname.Text.Trim().ToString(); foreach (DataRow cust_dr_autoloop in m_dt_Customer.Rows) { if (cust_dr_autoloop["cust_name"].ToString().StartsWith(m_search)) { m_namesCollection.Add(cust_dr_autoloop["cust_name"].ToString()); } } } [/CODE] I have set the autocomplete mode to suggest and …

Member Avatar for sandeepparekh9
0
113
Member Avatar for babbu

Hi textbox_Leave event is fired everytime AutoCompleteStringCollection is cleared..any ideas how I can prevent the leave event to fire while clearing AutoCompleteStringCollection

Member Avatar for Mitja Bonca
0
78
Member Avatar for babbu

Hi, I am using vs 05 and access 07. I would like to export the data in the datagrid to an excel file preferably in excel 2007(i.e. .xlsx). I have found this discussion on daniweb [url]http://www.daniweb.com/forums/thread211651.html[/url] however i get an error [CODE] Excel.Application app = new Excel.Application(); [/CODE] Am i …

Member Avatar for Rinia09
0
119
Member Avatar for babbu

Hi, I am trying to run sql command on unix. this results in the following error "sqlplus: not found" Here is the unix part [CODE] sqlplus id/pass@some_server.com<<eof select sysdate from dual; exit eof [/CODE] The database is on a remote server and. Do I need to enter all the tns …

0
77
Member Avatar for babbu

Is running an update query better or making changes in a datatable and updating them later a better option. And how do we determine which is the better option?

Member Avatar for rpk2006
0
84
Member Avatar for babbu

I am using Visual studio 2005 and Access 2007. I get the following error "System.InvalidOperationExceptin: The ITransactionLocal interface is not supported by the 'Microsoft.ACE.OLedb.12.0' provider." Is this because transactions are not supported by access? Here is my code. [CODE] using (TransactionScope TransacScope = new TransactionScope()) { //insert and update operations …

Member Avatar for Momerath
0
97
Member Avatar for babbu

Hi I want to convert System date into desired format before displaying it to the user. For eg. The system date might be in mm/dd/yy format and I want to display it in dd/mm/yy format and vice-versa. Please help me in figuring this out.

Member Avatar for Kimpl
0
87
Member Avatar for Chargerfan

how do i receive two separate inputs from the same text box? here is what i have so far: [CODE] c1 = textBox1.Text; textBox1.Clear(); c2 = textBox1.Text; [/CODE]

Member Avatar for kvprajapati
0
69
Member Avatar for babbu

Hi, In JSP for some responses from the server the header is null. Is this because the header size becomes very large? If yes then is there a possibility wherein we can increase the size of the header? What is the maximum possible size limit? I am using JSP and …

Member Avatar for babbu
0
62
Member Avatar for babbu

Hi All, I am using visual studio 2005 and Access 2007. I want to update a table in access 2007 using C#.net. I have written the following code but it doesn't seem to work and neither does it throw any error. [CODE] OleDbCommand updateTransactionCost = new OleDbCommand(); updateTransactionCost.Connection = Module1.oledbcon; …

Member Avatar for babbu
0
87
Member Avatar for judithSampathwa

Hi there, Am calling a form from a button in another form. And then I am calling the form as frmSubCDetails subDetails = new frmSubCDetails(); subDetails.Show(); in a button which is in the View Submit form.What I want is how can I make the items in the from frmSubCDetails disable …

Member Avatar for judithSampathwa
0
190
Member Avatar for elizabeth mwash

I was wondering, once you have created a system and now ready for use, how do you intergrate it with existing database

Member Avatar for finito
0
439