2,155 Posted Topics
Re: [CODE]Dim strTest As String 'First check to see if the string starts with a 0 strTest = Mid(strField, 1, 1) If strTest = "0" Then 'It is a zero, remove the zero... strField = Right(strField, Len(strField) - 1) End If[/CODE] | |
Re: Well said. The future seems to be GNR as above.Compare ten years ago to now, huge leaps and bounds... | |
Re: Well, not all DLLs have CLSIDs (only ones that expose COM objects) and in fact the DLLs themselves do not have CLSIDs. CLSIDs belong to the COM objects that are in the DLL. The registry (HKEY_CLASSES_ROOT\CLSID\) contains this information. The following code will return the ClsId and ProgId - [CODE]Option … | |
Re: I agree with ancient, why buy if you can get vb10 for free WITH proper help and tons of sample code available. Basic might help your basic needs for now but what if you need to start doing more complicated applications? ![]() | |
Re: Will this be an administrator within your application or the windows administrator? | |
Re: Set the sum value to zero Get Condition 1 Value Get Condition 2 Value Determine the value for nl and n2 Get Condition 3 Value Get condition 4 Value Body1???? Body2???? If Condition 1's value is equal to ??? and not the same as Condition 2, and so forth .... … | |
Re: Have a look at [URL="http://www.eurojournals.com/ejefas_22_12.pdf"]THIS[/URL] link. It contains what you are looking for. | |
Re: Have a look at the following google [URL="http://www.google.com/search?q=GIS+application+in+vb.net&rls=com.microsoft:en-US:{referrer:source?}&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7WZPA_en"]SEARCH[/URL]. I would suggest you build an app making use of Google Maps and tracking scenarios. It seems to be the most popular.:) | |
Re: Please read our posting rules which can be found [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]HERE[/URL]. Chances that someone will answer your question when it is marked as "URGENT" is very slim. To your question, No you do not need Mobile pc. You do however need a gateway company to send sms's in your application. | |
Re: Show me the code where you add the actual data. Include the entire sub, i.e., if it is under a command button click event, show all the code under the event. It sounds like the add new is actually editing. | |
Re: Welcome to Daniweb Louis.:) Your post will be moved to the IT Professional Lounge. I'm sure you will find your answer there. | |
Re: This is quite confusing. Firstly, if you say workbook, do you mean that you are using VBA in excel? [QUOTE]I would like to have the "Inventory" workbook initialize with a userform asking the user if they would like to perform a vlookup or to adjust "quantity on hand". I have … | |
Re: Have a look at [URL="http://msdn.microsoft.com/en-us/library/Aa363858"]THIS[/URL] link, which is more about the CreateFile API, or [URL="http://www.bigresource.com/Tracker/Track-vb-iCI6kvp4rx/"]THIS[/URL] link which contains some code samples and error solving. I would however settle for the Winsock control to listen for requests port 5000 and act accordingly if request was received. | |
Re: You can use the "Replace" function as in - [CODE]public Function StripOut(From as string, What as string) as string Dim i as Integer StripOut = From for i = 1 to len(What) StripOut = Replace(StripOut, mid$(What, i, 1), "") next i End Function 'Just place it somewhere in your code … | |
Re: Welcome to Daniweb.:) Your post will be moved to .Net where someone will help you out. You will however need to give them more information - vb.net, asp.net? Trying to use windows media player? etc etc. | |
Re: Give us some more info on your named instances. What is TMData, TMcnt etc. What code do you have under refresh_tmdata? What calender control is Calender1? | |
Re: Would you like to increment the record number or just a number? i.e. record 1 record 2 record 3 etc... OR 1 2 3 4 etc... | |
![]() | |
Re: Welcome to Daniweb Adam.:) We'll see you around the web development forums then. | |
Re: Welcome to Daniweb.:) Congrats on the baby. Good luck with the pajama drill, especially 3 in the morning.:) | |
Re: Welcome Lemoremi. I'm sure you will find what you need right here at Daniweb. You have unfortunately posted in the wrong forum, but thats all cool. KristenLena, I would not easily employ someone that hands me a resume showing their skills and experience gained from gaming. I'm a huge gaming … | |
Re: Welcome to Daniweb.:) Your post will be moved to [URL="http://www.daniweb.com/forums/forum10.html"]HERE[/URL]. I'm sure you will find your answer there. | |
![]() | Re: Have a look at this link with some sample code [URL="http://www.homeandlearn.co.uk/net/nets8p8.html"]Here[/URL]. |
Re: The error message "Too few parameters" simply means you are not passing the appropriate parameters with your SQL statement OR the tablename / fieldname used doesn't exist in the database you were trying to connect. Change your sql statement at this part - [QUOTE]"FROM tblPayroll WHERE EM_ID =" & Me.lvwInfo.SelectedItem.Text … | |
Re: I'm sure Davey (HappyGeek) or Dani herself (cscgal) will answer all of your questions and reply to all of your statements as above. From my side, thank you for pointing it out, we will most surely appreciate your help where you can in the respective forums.:) | |
Re: mls, as we can all see, you are new to Daniweb, welcome:) You do however need to read our posting rules as well. The question posted gives us no information.... What database is used, sql, mysql, access? Server???? App in .net or vb.net, asp.net etc? | |
Re: Use the same select statement type - [CODE]SELECT * FROM student WHERE StudentName LIKE " & "'" & Nav & "%'"[/CODE] This will return all the names that has Nav in its text. | |
Re: Try the following with your update statement - [CODE]Dim delet = "UPDATE audit SET action = '[DELETED A CUSTOMER]' WHERE pk_id = '" + TextBox5.Text + "'"[/CODE] | |
Re: Ouch Melvin, I can see how that fitted right in with Halloween!!!:) Unfortunately not big here with us in S.A. I would however love to see other photos... | |
Re: Are you using a 32 or 64 processor? [QUOTE]lstStuff.SubItems.Add(proc.WorkingSet64.ToString())[/QUOTE]?? | |
Re: Thank you for the snippet David. Here is some points for your effort. If you however can enclose your code in the future in code brackets as in - "(CODE)(/CODE)" all viewers will find your post more resourceful. All you have to do is to click on the "(CODE)" label … | |
Re: Have a look at [URL="http://pinvoke.net/default.aspx/user32.ShowWindow"]THIS[/URL]. under the vb.net heading. Have a look at the code below. I'm not sure if it will work for you. [CODE]Imports System.Windows Module FileParse Public Declare Function MoveWindow Lib "user32" (ByVal hwnd As Int32, ByVal x As Long, ByVal y As Long, ByVal nWidth As … | |
Re: For all others, the most part of this post can be followed [URL="http://www.daniweb.com/forums/post1378192.html#post1378192"]HERE[/URL].:) | |
Re: Have a look at [URL="http://en.allexperts.com/q/VB-NET-3306/Drawing-line-VB-net.htm"]THIS[/URL] site. It has some useful links as well which might help in solving your problem. | |
Re: Has your issue been solved now with the code above? | |
Re: Hello my engel. Uiteindelik is jy ook hier.:* Enjoy your stay with Daniweb.:) | |
Is it possible to get a direct link to the rankings page? If not, is it possible to add a direct link, say next to your logged in status etc. Every user now has to go to his personal page and access the rankings page from there.:) | |
Re: The following should do the trick - [CODE]'5 command buttons: 'cmdRestart; cmdLogOff; cmdForceLogOff; cmdShutdown; cmdForceShutdown Option Explicit Private Const EWX_LogOff As Long = 0 Private Const EWX_SHUTDOWN As Long = 1 Private Const EWX_REBOOT As Long = 2 Private Const EWX_FORCE As Long = 4 Private Const EWX_POWEROFF As Long … | |
Re: Have a look at this returned google page [URL="http://www.google.com/search?q=show.rdl+report+in+vb.net&rls=com.microsoft:en-US:{referrer:source?}&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7WZPA_en"]HERE[/URL]. It might be what you are looking for. | |
Re: Have a look at [URL="http://community.psionteklogix.com/knowledge/w/knowledgebase/how-to-programmatically-warm-reset-cold-reset-and-boot-into-boost.aspx"]THIS[/URL] link. Is this what you were looking for? For more, other info - [URL="http://thedailyreviewer.com/dotnet/view/kodakimaging-reset-scanning-area-102281717"]Kodak[/URL] | |
Re: What task does it have to perform once the video ends? | |
Re: You can use something like - [CODE]Dim dt As New DataTable = DS.Tables(0) Dim dr As DataRow For Each dr In dt.Rows() combo.Items.Add(dr("Description"))'What field data to add Next combo.SelectedIndex = -1[/CODE] | |
Re: ??? [QUOTE]thank you very much[/QUOTE]??? for? | |
Re: Also, keep in mind that you do ask your question in the correct forum, open your own thread and don't hijack someone else's post, especially if it is an old post. This is seen as necromancy....:) Enjoy Daniweb.:) | |
Re: Welcome to Daniweb. Post your problem in "Hardware & Software". I'm sure someone over there will know how to solve your problem. Enjoy your time here with us. |
The End.