No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
If I understand what you want, try setting the TabStop property to false on the column you want to skip
If I understand your problem then in the Change event of the birth date text box put something like the following: [Code] Dim DateNow As Date Dim DateBD As Date DateNow = Now() ' The following asumes the Birthday textbox is called txtBD and ' The age textbox txtAge DateBD …
[QUOTE=fritzgarcia_29;1097107]I have dtpker1 and dtpker2 to choose from the date and I want to display in Listview. the problem with this code is that it cannot display dates from the listview. Please help me with the right syntax plzzzzzzzz.........:) Thank you so much!![code]Option Explicit Dim rs As New Recordset Dim …
I dont think yopu can insert a picture into a cell the best you can do is lock it to a cell and set the move and resize property for the picture Try the following at the end of your code [CODE] With Selection .Placement = xlMoveAndSize .PrintObject = True …
[QUOTE=amass;1268572]Can u pls help me solve this problem iam using vb6.0 and sql 2000. when i insert the currnt date (as Now()) in the dbase with a colunm datatype date/time, it inserts the date 01/01/1900. In MSAccess it works by putting a # b4 and after the date e.g. #25/06/2010# …
[QUOTE=Keegan200;1256307]I want to create an activation window to add onto clients pc so if they dont pay their account within a certain period the activation window will pop up and not allow them access to the pc until their account is paid and we will provide them with an activation …
[QUOTE=Member 785440;1269069][CODE]Private Sub Command1_Click() Dim rs As ADODB.Recordset Set rs = New ADODB.Recordset rs.Open "select *from Payroll", Cn, adOpenDynamic, adLockOptimistic rs.AddNew rs!Date = Text1.Text rs!Emp_ID = Combo1.Text rs!EmpName = Text2.Text rs!Father_Husband = Text3.Text rs!Designation = Text4.Text rs!PANNo = Text5.Text rs!PF_PENNo = Text6.Text rs!HRA = Text7.Text rs!Basic = Text8.Text rs!TA = …
[QUOTE=Graham Morley;1276027]Is there a good way to make vba code secure other than using a password, which I understand is quite easy to break?[/QUOTE] Q1) Are we talking MS Access? If Excel or Word the its a different ball game Q2) I assume you are talking about distributing the Db. …
Hi If I understand you right you just want to merge the two bits of code in your post and put the output (Ip addreess) out to the 'Hello World.txt' file. if so the following should do it or if I've got it wrong then sorry! [CODE] myfilename = "\Hello …
[QUOTE=Ashu26;1270995]Hi.. How to control the gpedit from my vb6 application.. i want to control the GP edit from my vb application... plz help me with coding..[/QUOTE] I've not tried this myself! But I would guess from a quick search that there will be a way to do it using an …
The End.