2,155 Posted Topics

Member Avatar for Dannyo329

[QUOTE]That's because I graduated, got a job, and stopped posting in there.[/QUOTE]:) I have noticed that it happens from time to time on different forums, members seems to come and go as time passes.;)

Member Avatar for AndreRet
0
122
Member Avatar for jake1496
Member Avatar for Vardonir
Member Avatar for JenniferLopez
Member Avatar for sungod000

Welcome to Daniweb.:) Have a look at our IT Professional lounge with some options to decide upon when entering the IT world.

Member Avatar for AndreRet
0
56
Member Avatar for CodeWord

Welcome, glad you find the "real" Daniweb feeling. Enjoy your time with us, thanks for the nice words, our mods are really some of the best!:)

Member Avatar for AndreRet
3
113
Member Avatar for beck0760

As Ancient mentioned, try and stick to a developer language, database skills and maybe a web developing skill. Rather build on those and become an expert, then consider another language.:) Good luck in your career.

Member Avatar for AndreRet
0
331
Member Avatar for lakewriter

Welcome to Daniweb.:) We'll see you around flash and VB6. You will notice that your links has been snipped, all about rules and regulations. You can catch up on our posting rules [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]here[/URL].;)

Member Avatar for AndreRet
0
238
Member Avatar for bjc01010

To clear all the text on labels, use the following - In a module - [CODE]Public Sub ClearLabels(frm As Form) Dim Control As Control For Each Control In frm.Controls If TypeOf Control Is Label Then Control.Caption = vbNullString End If Next Control End Sub[/CODE] In your form under the "reset" …

Member Avatar for AndreRet
0
192
Member Avatar for zp18zp18

I would opt for the active x option (ado), save the path to a database and call the main connection from there. Do you know how to achieve this?

Member Avatar for AndreRet
0
57
Member Avatar for MooGeek

The attachment covers all about copying and pasting of files as well as saving the link to a database. You are quite lucky that Debasisdas and myself is helping you out like this today, normally we want to see some effort from the poster's side. Please read our posting rules …

Member Avatar for AndreRet
0
88
Member Avatar for pmark019
Member Avatar for AndreRet
0
98
Member Avatar for commando1200
Member Avatar for GEEK_BOMBER@JA
Member Avatar for shdwmage
Member Avatar for dannii
Member Avatar for AndreRet
0
28
Member Avatar for addmaths07

Welcome to Daniweb Gulraiz.:) You can post a question about "Universal Feedparser" in our IT Professional Lounge. I'm sure you will get some positive replies from there.

Member Avatar for AndreRet
0
44
Member Avatar for sandeshps89
Member Avatar for El Pirata
Member Avatar for 3LauraB
Member Avatar for neosonic

Also look at your external drive's speed, that can also cause slower prosessing speeds if it is a slow drive. As per Das, your Lan speed (transfer rate speed) is also VERY important, especially sending and receiving data. Another thing to look at is your database, Access is known for …

Member Avatar for AndreRet
0
134
Member Avatar for mrnutty
Member Avatar for waddlydoodoo
Member Avatar for rhyll07

[QUOTE]You want the entire projects to be delivered to you nicely packed or are you also interested in lending a helping hand ?[/QUOTE] Hehehehe.;) Same here, how much are you prepared to pay. There are some newbies here that will do it quite cheap.:)

Member Avatar for AndreRet
0
93
Member Avatar for abelingaw

This is a very common data entry bug for interfaces to SQL. Use the function below to automatically double any SQL characters (NOTE these vary between databases, they are not universal so you should check which apply to the db you are using) which occur IN the data. You still …

Member Avatar for AndreRet
0
147
Member Avatar for Khliboy_2796
Member Avatar for danholding

This is a question for the VB.Net forum experts. I have asked the mods to move it there from VB4/5/6.:)

Member Avatar for danholding
0
175
Member Avatar for sheelarathinam
Member Avatar for SmallTime

[QUOTE]Although this works fine there is a limit to the amount of code that the text box control source can hold[/QUOTE] Not sure what you mean by this, You can add as much code as you want into any given sub for a text box.:) As far as the amount …

Member Avatar for AndreRet
0
140
Member Avatar for Shodow

Showdow, show the efforts my man.:) Again, debsisdas gave you the solution, just follow the link, have a look at the last part - [QUOTE]Finally you need to display the data in the DataGrid control. To accomplish this, go to the properties window and set the DataSource property of the …

Member Avatar for AndreRet
0
109
Member Avatar for Shodow

What is not working? Debasisdas's code is correct. You should know by now to show us the error and on which line it occurs. That way we can help you get the solution.

Member Avatar for AndreRet
0
174
Member Avatar for AndreRet

This question has been asked over and over again, where to go next with my skills. The link below gives a diagram which will help you on deciding to choose the language that will suit your needs best. You can find the diagram [URL="http://www.streamhead.com/what-programming-language-to-learn-next/"]HERE[/URL], written and designed by Peter BackX.

3
59
Member Avatar for haqayyum

To get a percentage of a value, take the value, multiply it by the percentage value, divide it by 100. 100 * 10 / 100 = 10

Member Avatar for CodeWord
0
103
Member Avatar for Shodow
Member Avatar for Swoop_GB
Member Avatar for AndreRet
1
69
Member Avatar for azzu khan
Member Avatar for Shodow

For other readers, [URL="http://www.daniweb.com/forums/thread345836.html"]THIS[/URL] link has relevance. The answer has been posted there.:)

Member Avatar for AndreRet
0
95
Member Avatar for Shodow

You don't have to use such a complex connection to Mysql at all. Have a look at the following connection method. The first part is to a server, the second part is to your local pc (localhost) - [CODE]Public Sub ServerConnect() Dim conn As ADODB.Connection Dim strIPAddress As String Set …

Member Avatar for AndreRet
0
2K
Member Avatar for raygberg
Member Avatar for kalpanasanjeev

Rather late than never, welcome to Daniweb.:) I have asked the mods to move your post to our IT Professional lounge. I'm sure you will get more replies from there.

Member Avatar for AndreRet
-1
14
Member Avatar for Shodow

As per your previous post - [CODE]Public Sub ServerConnect() Dim conn As ADODB.Connection Dim strIPAddress As String Set conn = New ADODB.Connection strIPAddress = '###Add the ip address here!!! conn.ConnectionString = "DRIVER={MySQL ODBC 3.51 Driver};" _ & "SERVER=" & strIPAddress & ";" _ & "DATABASE=ADMS;" _ 'The database name here …

Member Avatar for AndreRet
0
228
Member Avatar for Ra1sed

@Kallurivenu, start a NEW and your OWN thread by clicking [URL="http://www.daniweb.com/forums/newthread.php?do=newthread&f=4"]THIS[/URL] link. You will not get any help from members by hijacking others threads.

Member Avatar for AndreRet
0
807
Member Avatar for Roldy

I would declare the flag public and then give it a value based on what I need to do. Say for instance your user has added a new record to your database and you now need to take him back to the main form, do this - [CODE]'In a module, …

Member Avatar for AndreRet
0
206
Member Avatar for prafullaD

@fadhil12 - Firstly, we do not allow the hijacking of other members posts. You will have to open your own thread. Click on [URL="http://www.daniweb.com/forums/newthread.php?do=newthread&f=4"]THIS[/URL] link to start your own.:) Secondly, you need to tell us what you have so far. We can not give you all the code, only add …

Member Avatar for AndreRet
0
169
Member Avatar for twsmale

You need to find the next available empty row in the column and then paste the data into that column. The following example will give you an idea on how to achieve this - [CODE]Public Sub CopyRows() Sheets("Sheet1").Select ' Find the last row of data FinalRow = Range("A65536").End(xlUp).Row ' Loop …

Member Avatar for AndreRet
0
169
Member Avatar for shena
Member Avatar for AndreRet
0
108
Member Avatar for sharunkumar

[QUOTE]I need a code which will help me compile an exe file based on some arguments or with the help of another VB file[/QUOTE] Rather use the "Package and Deployment" wizard that came with VB^ to compile your app.:) It will refer back to errors if there are any, or …

Member Avatar for jlego
0
1K
Member Avatar for red angel

Welcome to Daniweb Rheisan. I'm sure you'll have a wonderful time with us.:)

Member Avatar for red angel
0
84
Member Avatar for falaq.
Member Avatar for memory100

Have a look at the following and choose the sub that will best represent your scenario - [CODE]Sub DeleteBlankRows1() 'Deletes the entire row within the selection if the ENTIRE row contains no data. 'We use Long in case they have over 32,767 rows selected. Dim i As Long 'We turn …

Member Avatar for memory100
0
159

The End.