2,155 Posted Topics

Member Avatar for ftl25

Yes, you will have to use the file system object. First check if a file exist, if not create it etc. Just the fact that you did not ask for code, but were willing to do it yourself, herewith all the code you need from an app I did a …

Member Avatar for ftl25
0
195
Member Avatar for Lance Knight

Rated in the pc magazine as one of the best registry, applications and ie (cookies, temp etc) CC Cleaner came out tops! What makes it nice too is that it is freeware. Download a copy, 2 mouse clicks later and your system is clean.

Member Avatar for alvinmalon
0
136
Member Avatar for pearll
Member Avatar for nepalsites
Member Avatar for manim

Welcome Manin. I'm sure we'll see you in the "Web Development/Databases/Oracle" forum. Enjoy.

Member Avatar for AndreRet
1
204
Member Avatar for marniel647
Member Avatar for AndreRet
0
31
Member Avatar for manish99

Welcome Manish. Have a look at the top of the page, all the different forum spectrums are there. Just pick the forum you need help in, open a new thread and ask away.

Member Avatar for AndreRet
0
32
Member Avatar for davebruceL

Welcome "outspoken" Dave.:D I am sure you will have a wonderfull time at Daniweb. Enjoy.

Member Avatar for AndreRet
0
190
Member Avatar for Thamizh Bharat

Have a look at the following link, it might contain your solution. It seems that you have to double refresh and add a delay in the macro. [URL="http://www.mrexcel.com/forum/showthread.php?t=388633"]http://www.mrexcel.com/forum/showthread.php?t=388633[/URL]

Member Avatar for AndreRet
0
157
Member Avatar for phaiz3024

Yes, we can write the code for you, at a price that is. We do not do homework here for free! Be more specific on what it is you need, Notes to coins???? Do you want to turn a note value like say "$1.00" (1 dollar) into "100 cents"? What …

Member Avatar for AndreRet
0
94
Member Avatar for ata_tszx

Do not use the record count for adding a new record ID. Try the following - [CODE]'First move your recordset to the last record, then get the ID Number, Then... Dim strSubstr As String Dim xStr As Integer strSubstr = Right$(strCode, 3) ' strSubstr = "000", RSV removed xStr = …

Member Avatar for AndreRet
0
121
Member Avatar for BAEdwards

Not sure if this will help, try and see - [CODE]Dim C As Long Dim Cell As Range Dim NextRow As Long Dim Rng As Range Dim EntryWks As Worksheet Dim DBWks As Worksheet C = 1 Set EntryWks = Worksheets("Sheet1") Set DBWks = Worksheets("Sheet2") Set Rng = EntryWks.Range("D2:F") NextRow …

Member Avatar for AndreRet
0
396
Member Avatar for mulevad
Member Avatar for Nemo_NIIT
Member Avatar for ajdickson1208

[CODE]Text1.Text = dtPicker.Value Text2.Text = InputBox("Please enter the invoice amount.", "Amount")[/CODE]

Member Avatar for AndreRet
0
39
Member Avatar for andrewjrmill

Andrew, you should know by now to give us more information. What exactly do you mean by "make a desktop on my form"? What will the list box do? How or what on the form do you want to save, and where do you want to save it to? What …

Member Avatar for AndreRet
0
64
Member Avatar for abelingaw

[QUOTE]If .State = adStateOpen Then .Close[/QUOTE] - You have closed the connection of the recordset. Re-open the recordset.

Member Avatar for AndreRet
0
141
Member Avatar for ata_tszx

I went through your app. Where does the double booking take place, which form? What do you mean by double booking, are these equipment rentals, resulting in a certain "tool" being booked out twice?

Member Avatar for AndreRet
0
158
Member Avatar for shena

I would try something like - [CODE]'Determine whether a file is already open or not Private Declare Function lOpen Lib "kernel32" Alias "_lopen" (ByVal lpPathName As String, ByVal iReadWrite As Long) As Long Private Declare Function lClose Lib "kernel32" Alias "_lclose" (ByVal hFile As Long) As Long Private Function IsFileAlreadyOpen(FileName …

Member Avatar for AndreRet
0
124
Member Avatar for stevthym

Have a look at the following link. There are plenty of solutions discussed here previously. [URL="http://start.speedbit.com/search.aspx?site=suggest&cnl=7645705662&sitesearch=daniweb.com&q=datareport%20grouping&bi=263752&si=7124&cc=ZA&pop=0"]http://start.speedbit.com/search.aspx?site=suggest&cnl=7645705662&sitesearch=daniweb.com&q=datareport%20grouping&bi=263752&si=7124&cc=ZA&pop=0[/URL]

Member Avatar for AndreRet
0
112
Member Avatar for duggie

If I understand the first part correctly, try the following - [CODE]Dim xRowFrom As Integer Dim xRowTo As Integer xRowFrom = 1551 +10 'Here you will add the last row copied previously and add 10 rows on to copy from. xRowTo = 1570 'Do the same here or just add …

Member Avatar for AndreRet
0
111
Member Avatar for ana12
Member Avatar for Kusanagi03
0
102
Member Avatar for Lynchman

These are some solutions I found, might work for you - [URL="http://forums.asp.net/t/1146404.aspx"]http://forums.asp.net/t/1146404.aspx[/URL] [URL="http://social.msdn.microsoft.com/forums/en-US/vsto/thread/b0ac73a4-7a54-4d10-a1dd-54404ff1678e/"]http://social.msdn.microsoft.com/forums/en-US/vsto/thread/b0ac73a4-7a54-4d10-a1dd-54404ff1678e/[/URL] [URL="http://www.foxite.com/archives/excel-object-the-server-threw-an-exception-0000101419.htm"]http://www.foxite.com/archives/excel-object-the-server-threw-an-exception-0000101419.htm[/URL] I hope this help.

Member Avatar for cguan_77
0
1K
Member Avatar for kunal2020

Welcome to Daniweb. Open a new thread under "Software/C++". I'm sure there will be posters to answer all your questions. Just read our rules of posting first. Enjoy your stay.

Member Avatar for AndreRet
-1
58
Member Avatar for manjuladevimca
Member Avatar for narendra_a
Member Avatar for junjun61991

[QUOTE]rs.Open str, [COLOR="Red"]connect[/COLOR], 2, 3[/QUOTE] Connect seems to be your problem. Firstly, is your function private or public? You have the rs.Open part correct but no reference to "str", which will be the sql string. This should be something like [CODE]Dim str as String str = "SELECT * FROM MyTable"[/CODE] …

Member Avatar for kinwang2009
0
58
Member Avatar for tomo_uni

I have used 2 timers, one to show the time, a second to check for morning or afternoon - [CODE]Private Sub Timer1_Timer() Label1.Caption = Format$(Time, "hh:mm:ss AM/PM") End Sub Private Sub Timer2_Timer() If Hour(Now) >= 12 Then Label1.ForeColor = vbBlue End If End Sub[/CODE] This should answer your question.

Member Avatar for AndreRet
0
136
Member Avatar for vidhya33
Re: vb

Flex grid is for display purposes only, data grid has an edit feature where data can be changed and saved by using the data grid. Read the following link. [URL="http://forums.techarena.in/software-development/1131320.htm"]http://forums.techarena.in/software-development/1131320.htm[/URL]

Member Avatar for AndreRet
0
58
Member Avatar for vidhya33
Re: vb

Go to [URL="http://www.connectionstrings.com"]http://www.connectionstrings.com[/URL], and select oracle. It gives you all the sample code that you can use to connect via one pc, more pc's on a network etc.

Member Avatar for AndreRet
0
54
Member Avatar for vidhya33

a grid control is a data grid that you manually add to your form. This grid will be loaded with data and can be used as a report medium. There are a few you can choose from depending on your needs. a Custom control is a control that you create …

Member Avatar for AndreRet
0
45
Member Avatar for fourty

Attached so long the open window file app. I'll get to the other questions later. Your question 2 needs some more elaboration. Will the questions be added to the database by you or the user? >>>Opens a file in the database - not sure what you mean here. do you …

Member Avatar for AndreRet
0
72
Member Avatar for vidhya33
Re: vb

Yes it is. If you are using VB6, only up to version 11 (XI) will work. Version 12 only works on .net and up. In your app, select references and select Crystal Report Libraries. This will give you access to the dll. In components, select crystal reports. Add a report …

Member Avatar for AndreRet
0
55
Member Avatar for ichwara

Also, are you using Local Area Network etc. What connection strings do you have? IMPORTANT!!!, how many users on the network. Access will only allow up to 5 users for save data access, otherwise it will start to drop data because the queuing system does not allow for more than …

Member Avatar for AndreRet
0
78
Member Avatar for VernonDozier

Yeah, this happened to me a lot when I reply via my e-mail link. Not looking whether I am logged in or not, write the solution (sometimes a lot of coding involved), just to find that I have to re-post my solution...

Member Avatar for AndreRet
2
287
Member Avatar for VincentChan

Welcome to Daniweb. Check out our Geek's lounge where all friends meet.

Member Avatar for DianeBrandt
0
61
Member Avatar for kolleke1

Welcome to Daniweb Nicole the witch.:cool: Enjoy your visits every time you pop in.

Member Avatar for mustcompete
0
110
Member Avatar for nbuchholz
Member Avatar for Ancient Dragon
0
194
Member Avatar for jasmine25
Member Avatar for DianeBrandt
0
68
Member Avatar for terry scott
Member Avatar for admiraljayce

Welcome Roderick and enjoy your stay. Head over to our[URL="http://www.daniweb.com/forums/forum31.html"]http://www.daniweb.com/forums/forum31.html[/URL] for all the web development posts.

Member Avatar for DianeBrandt
0
101
Member Avatar for Muchaz

Welcome to Daniweb. Your friend was correct, just remember that you have to show some effort on your side for we do not do entire projects for free. Hope to see you around in the forums.

Member Avatar for DianeBrandt
0
68
Member Avatar for gilroy

Welcome Gilroy. You came to the right place to learn. a Big welcome to you.

Member Avatar for DianeBrandt
0
66
Member Avatar for ramaliah

Welcome ramaliah. Nice to see that you have joined now. Enjoy your stay here. ps. Did the sample code helped?

Member Avatar for DianeBrandt
0
66
Member Avatar for maoster

Welcome to Daniweb. I'm sure we will see a lot of you in the Java Forum. Enjoy your stay here.

Member Avatar for DianeBrandt
0
91
Member Avatar for smitty13_69

Welcome to Daniweb Smitty, enjoy your stay with us. We wish you all of luck and goodwill.

Member Avatar for DianeBrandt
0
124
Member Avatar for ezkonekgal

As you have send the post, scroll to your post. Under your name and avatar, there is a "Flag bad post" button and a "Edit Button". As Ezzaral mentioned, must edit the post within 30 minutes.

Member Avatar for Dani
0
90
Member Avatar for red_evolve

Try - [CODE]Adodc2.Update[/CODE] Please open a new post with your question seeing that this post is already 4 years old, pleeeeease.

Member Avatar for AndreRet
0
228
Member Avatar for ftl25

The coding looks perfect. When you do however call frmExport the second time, clear the listbox first and then reload your query. This should solve your problem.

Member Avatar for AndreRet
0
1K
Member Avatar for tgreer

You'll find the scripting menus under Web Development at the top of this page. The following code is saving and retrieving a picture from access database in VB6. It might not be 100% what you are looking for, but might put you on the right track, because it works with …

Member Avatar for tgreer
0
771

The End.