Is it possible when we can change the solution configuration from Debug and Release, we make certain chunk of code ignore by the compiler,
which also means those chunk of code only run in Debug environment?
Consider following code:
delegate int MyDelegate();
MyDelegate d1=new MyDelegate(M1);
MyDelegate d2=new MyDelegate(M2);
MyDelegate d3=new MyDelegate(M3);
MyDelegate compDelegate=d1+d2+d3;
public void delegateCall(MyDelegate myCompDelegate, int Position){
//call the method by position
}
If I...
Hi, I have used netbeans which built-in Tomcat 5.5 to develop jsp pages, and I am using JDK 1.5.
In the JSP page, there are lots of generics here and there, and it runs perfectly using netbean built-in Tomcat 5.5.17.
After development, I am going deploy the project on a server. Hence I am...
For the following code chk is a check box, ischecked is a yes/no field.
Dim sSQL as string
sSQL = "Select [ischecked] from tbluser where userId='abc'"
chk.ControlSource = sSQL
chk.Requery
But when I run the following vba code, no matter ischecked is yes or no, it always shows me the checkbox...
I have a listbox call lst with two columns, what I want to do is to populate this two column with "firstdata" and "seconddata" respectively.
What I do is:
Me.lst.RowSource = """firstdata""; ""seconddata"""
But I see nothing appear, what is the corect way to achieve in vba?
1)How to set show or not show key column for list box in propeties windows?
2)For list box, after doing
lstListBox.rowsource="select field1, field2 from tbl"
lstListBox.requery
How to
a)Set show keycolumn;
b)make the first item in the listbox selected?A
I have a table with 3 tables, which is orderID, Detail and price.
I write a Query
SELECT * FROM [tbl];
in the result table it shows me orderID, Field0 and price(Notice Detail has changed to Field0)
How do I show Detail as it is without changing it to Field0?
Something to note:
1. I don't have...
I have two table which is c:\db1.mdb; c:\db2.mdb
The user is currently using c:\main.mdb
In main.mdb, I have a form, and have a combobox with two value, which is db1.mdb and db2.mdb.
If the user choose db2.mdb, delete all the current db1.mdb link tables(if there is any), and import all the...
I wish to detect is there any opened tables, queries, forms, reports, pages(item that may potentially locked the table, and close them automatically using VBA. How to do this?
I have a form named form1 with one control on it, it is a label named label1
I have a class named Class1.
Followed is the code of form 1 and Class1
form1
====
Option Explicit
Dim cls1 As New Class1
Private Sub Form_Activate()
cls1.setLbl Me.Label1
cls1.test
End Sub
Class1
=====
Dim lbl As...
1. Am I right that if a user open the database in exclusive mode, meaning no other user can open it?
2. Is it possible to use vba to
a)Check for how many user are using the database, if I am the only one
b)Reopen the access database in exslusive mode?
I wish to prompt user to backup their access file before perform certain operation. And the prompt has a check box "Don't remind me again", if the user checked, means that next time the warning won't be prompt.
But where is the best place to store the information of this "Don't remind me...
Backup current access file using vba while the file is open
I have a button in the form of the current access file. What I want to do is when the user click on the button,
triggered the vba to backup current access file. But since the file is currently open, is this possible? If yes, may I...
Considered the following code:
Private Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" _
(ByVal nBufferLength As Long, _
ByVal lpBuffer As String) As Long
Private Declare Function GetTempFileName Lib "kernel32" Alias "GetTempFileNameA" (ByVal...
I have a folder called c:\myFolder. Inside the folder has 3 files, which is a.gif, b.gif,c.gif, and a folder called subFolder.
Now given the path C:\myFolder, how do get all the file name or folder name inside? And how to distinguish a folder from a file?
(I only need first level of file name...
I have a table called table1,table2
And I have a form called form1
And I have a dropdownlist that populate all the tables
Now what I want to do is, when the user select the table name of dropdownlist, the table should shown in the form just below the drop down list.
How the table shown is...
I wish to upload and download files to a webserver. Is there any free dll or module class that offered the upload and download functionality to and from HTTP that we can make use of?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.