Search:

Type: Posts; User: louvelle

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. VS 2013 Re: Multiple questions Awesomium Trial Software, And limited start ups

    Below is a link to techgnome's Trial Period Code in the Codebanks.

    Trial Period Code - VB.Net
  2. Thread: Help!!

    by louvelle
    Replies
    4
    Views
    703

    Re: Help!!

    Stannav is right. I think you unintentioanally place:



    txtPzdm.Text = Diameter


    instead of:
  3. VS 2013 Re: Arrays...and total utter confusion

    I also think that you are going to have a problem with this code:



    With lstCreature
    If .SelectedIndex > -1 And .SelectedIndex < strCritterCode.Length Then
    ...
  4. VS 2013 Re: Arrays...and total utter confusion

    I think you have a problem with your intCounter



    For intCounter = -1 To 8
    lstCreature.Items.Add(strCritterName(intCounter))
    Next intCounter


    Try changing the...
  5. VS 2010 Re: What is the Best way of learning Visual basic for a 16 year old!

    Just as Sitten Spynne said, books are expensive. Instructors taught us Visual Basic 6.0 in 2007, a year where Visual Basic 6.0 programming was becoming obsolete and Visual Basic.Net programming was...
  6. Thread: Databases

    by louvelle
    Replies
    4
    Views
    766

    Re: Databases

    I'm not sure about having SQL database will make it easier for hackers to hack into the system. If its easy for hackers to hack SQL Servers, Microsoft shouldn't be selling these things right? I think...
  7. Replies
    3
    Views
    891

    VS 2013 Re: Threading for copy 1.000.000 files

    I think that getting a Solid-State Drive will help fasten the file transfer rate.
  8. Replies
    16
    Views
    1,596

    Re: Alert on Specific Times

    Below is a simple way:

    Create a new Project. Add a timer and a button. Replace the text of the button with "Start".
    Declare a date variable and name it as dt and add a value (Ex. "09/29/2014...
  9. Thread: View Data

    by louvelle
    Replies
    2
    Views
    514

    Re: View Data

    I think its possible but I haven't tried that. We have a biometrics in the office. The biometrics comes with a free software for the attendance management machine. It also has a dll file that I can...
  10. Re: How do I close a second form without ending the program?

    Private Sub Form_Unload(Cancel As Integer)
    Form2.Show
    End Sub
  11. Re: How to prevent making duplicated rows in datagridview table

    You could use the SQL DISTINCT to remove duplicate values.
  12. Replies
    10
    Views
    4,133

    VS 2012 Re: List view Grid in vb.net

    @jmcilhinney
    I've been thinking why OP wanted to hide the 3 columns. The OP collects data from 10 columns in the database and only wanted to display only 7. You can specify which fields you wanted...
  13. Replies
    10
    Views
    4,133

    VS 2012 Re: List view Grid in vb.net

    The only alternative solution for you if you want to use the listview control is to create 2 listview in your form. One is for the first 7 columns and the other is for the last 3 columns. Then set...
  14. Replies
    10
    Views
    4,133

    VS 2012 Re: List view Grid in vb.net

    Just as jmcilhinney said, using DataGridView will help you on this. See link of a previous thread below for more information:

    http://www.vbforums.com/showthread.php?680869-Hiding-Listview-Column
  15. Replies
    0
    Views
    2,931

    Android Java: Intent Problem

    I've been asking a lot of questions in StackOverflow and so far no one's been able to help me.



    public void doSomething(View v) {
    Intent i = new Intent(this,...
  16. Thread: help on query

    by louvelle
    Replies
    8
    Views
    728

    Re: help on query

    MYSQL Query


    SELECT * FROM tblSample WHERE fn = 'test' LIMIT 1
  17. Replies
    4
    Views
    897

    Re: VB.net certchanin, signature meaning

    I'm not sure about the Signature and the Certification Chain is. But based on the documentation, it says that in order to submit a bulk ITR you need 5 parameters; userID, password, certChain,...
  18. Replies
    4
    Views
    897

    Re: VB.net certchanin, signature meaning

    I'm familiar with SOAP but I haven't tried doing this in VB.Net.
    I think its a lot easier to do this in PHP rather than in VB.Net.
  19. Replies
    3
    Views
    700

    Re: HELP inserting record onto DB

    Try to double-check if the field ID is set to auto-increment.
  20. Replies
    14
    Views
    3,249

    VS 2010 Re: MySqlDataReader Pool Size Limit Reached

    @Philly0494


    Private Function getProductionInfo(varId As String, codeId As String, code As String) As List(Of String)
    Dim varQuery As String = 'SELECT STATEMENT USING VAR_ID
    Dim...
  21. Replies
    14
    Views
    3,249

    VS 2010 Re: MySqlDataReader Pool Size Limit Reached

    Try using the SQL ClearPool Function.


    Public Function cnx() As SqlConnection

    cnx = New SqlConnection("Your SQL Connection")
    cnx.Open()
    ...
  22. Replies
    5
    Views
    4,794

    Re: Eclipse: Compiling Android Application

    @dilettante
    K

    @techgnome
    There was a problem with Eclipse. There was this library thingy that I accidentally close on the project that's why the InApp Billing from google didn't work. Just to...
  23. Replies
    5
    Views
    4,794

    Re: Eclipse: Compiling Android Application

    bbbb
  24. Replies
    5
    Views
    4,794

    Re: Eclipse: Compiling Android Application

    Hi guys!

    I made another test. I tried opening the google play's built-in test android app "IAP (In App Billing)". After opening it using Eclipse, I immediately run it in BlueStacks and guess what?...
  25. Replies
    5
    Views
    4,794

    Eclipse: Compiling Android Application

    Good day!

    I'm new to Java and I'm trying to test a billing code. In order to test a code, I downloaded an example APK from the google play store. I used the APK Studio to decompile the APK. After...
  26. Replies
    12
    Views
    1,054

    Re: need database structure advice

    The structure of the database depends on how large the system you are going to create for the hospital. I'm thinking of 5 or 6 sub-system in the hospital and I don't think that 2 tables are enough....
  27. Replies
    34
    Views
    4,839

    Re: DownloadFile - this should work...

    @jmcilhinney
    I'm not familliar with this but
    this:


    httpclient.DownloadFileAsync(New Uri("http://website.com/Modules/FMAInstaller/DownloadProcessSendToBrowser.aspx?AccountID=" & TextBox14.Text...
  28. Re: How do I check the selecteditem of multiple comboboxes at the same time?

    I'm guessing this is some kind of quiz system
  29. Re: VB.Net 32 bit and 64 bit compatibility

    I made a couple of check in google and just like what jmcilhinney said, there is no 64 bit patch in Microsoft Office. I mention that there was a problem with the Microsoft Access 2010 in a 64 bit...
  30. Re: VB.Net 32 bit and 64 bit compatibility

    My first problem was the Microsoft Access 2010. So I downloaded a 64 bit patch of Microsoft Access 2010 and it resolved my connection problems with the database. Now, I have to download a Microsoft...
  31. [RESOLVED] VB.Net 32 bit and 64 bit compatibility

    I just change my computer from 32 bit to 64 bit. I'm using a 32 bit MS Office and just recently found out that the Component Object Model aren't compatible to 64 bit. The first compatibility issue...
  32. Replies
    3
    Views
    662

    Re: Visual Basic 2012

    Here's a great tutorial from jmcilhinney in retrieving and saving data in the database. :)
  33. Re: Error "Number of query destination are not the same" Vb6

    You have a field "No" which is an AutoNumber. Fields that have AutoNumber automatically generates the data into that field.

    In the INSERT SQL Statement, you don't need to include the "No" field...
  34. Re: SQL Server 2008: Database Backup Location Error

    My guesses were correct and I don't have much of an option but to create a shared folder for that. I see, I see. Thanks :)
  35. Replies
    7
    Views
    1,329

    Re: 100 same record in vb6>?!

    To display 100 records of the same name, I would do something like this:

    1.) Create a listbox.
    2.) In the Form_Load, insert the below code:


    For i = 1 to 100
    list1.additem "record"
    Loop
  36. Re: listview displaying % instead of 0% why?

    I"m just suggesting an alternative solution. Bye :wave:
  37. Re: listview displaying % instead of 0% why?

    Note: I haven't tested it yet but hopefully you can understand the process.
  38. Re: listview displaying % instead of 0% why?

    Why don't you try adding an if statement to keep it simple? Like this:



    Dim i as double
    i = Val(rs!CashDiscount) / 100
    If i = 0 Then
    itm.SubItems(9) = "0%"
    Else
    'statement goes here
  39. [RESOLVED] SQL Server 2008: Database Backup Location Error

    Good day!

    I have an SQL SERVER 2008 which is installed in a Windows Server 2008 R2. In my workstation, I am logged in as a domain. I created a simple program that backup's the database and its...
  40. Thread: JM Sales Help

    by louvelle
    Replies
    3
    Views
    1,137

    Re: JM Sales Help

    Your attachment is still on pending approval and I can't seem to understand the entire process of your program since you pasted all the codes that you have in your form. I think it would be much...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width