Search:

Type: Posts; User: techgnome

Page 1 of 13 1 2 3 4

Search: Search took 0.96 seconds.

  1. Replies
    2
    Views
    182

    Re: Replace All Colors Except One

    First please re-format your code using
    or tags....
    Second you've posted in the codebank, which is for sharing code, not asking for help ... I'll ask a mod to move it.

    -tg
  2. Replies
    45
    Views
    4,885

    Re: Problem with conversion of values

    This is where things get kind of muddled I think. The answer is "it depends" ... IF you want to build a classic WinForms that will only run on Windows, then you can use FW 4.8 and either VB.NET or...
  3. Replies
    6
    Views
    508

    Re: how optimizate the programming?

    To start, by reading about existing algos from books/articles which are language agnostic. From there, depending on what it is you're trying to do, you tinker by implementing one of those algos and...
  4. Re: React Native Login connect with sql server ?

    Try removing the eels from your hovercraft... once you do that, rebuild.

    -tg

    PS and if you need help with the eels, there's a link in my sig block.
  5. Re: Adding a huge number of records to a MariaDB

    That's not the kind of multiple tables I meant ... I mean tables where the data is normalized and there's PKeys and FKey relationships ... it doesn't sound like this aspect is being used. It's just a...
  6. Replies
    648
    Views
    141,811

    Re: Hamilton 5x World Champion ?

    Here's how I see it playing out - with all the action that will be happening in the upcoming silly season, the first half of this season will see drivers playing it safe, making sure to not take...
  7. Re: Adding a huge number of records to a MariaDB

    Have you been told about our lord & savior NoSQL? I'm wondering, if you're going to store the data as blobs, and you're just data dumping and aren't parsing the data into mulltiple tables, if perhaps...
  8. Re: yrs old compiled exe runs on my win 11 laptop, new compile errors only on laptop

    MySQL is irrelvant - the app isn't using it... look at the error message: ODBC SQL Server Driver][SQL Server] ... that's SQL Server, not MySQL...
    So first sort out which DBMS you are really using....
  9. Re: How do I use the byte arrays returned from Read method of the ADODB.Stream object

    Might help to post the error message you got. Otherwise we're just stumbling around in the dark.

    -tg
  10. Re: cursorlocation

    It's not a setting on there... it would be a setting in the code when you open the connection.

    -tg
  11. Re: google drive dll references from AppData\Local\Temp

    Right, it works when you set it to true because it copies the dll to the folder where the exe is. If you set it to false, it doesn't copy it. If it doesn't copy it, how's it supposed to use it? And...
  12. Replies
    5
    Views
    323

    Re: Save all record listview to ADO DB

    ISO #YYYY-MM-DD# Should also work... but yeah, it needs to be unambiguous, and by default it'll revert to US format.


    -tg
  13. Re: [RESOLVED] Darn old null dates in MS Access via VB6

    It's closer to "unknown" value rather than a default.

    Even with strings, there's a difference between " " (a space) "" (no space) and NULL ...

    -tg
  14. Replies
    5
    Views
    399

    Re: Change location of DLL

    Try this: http://dev.flauschig.ch/wordpress/?p=379

    -tg
  15. Replies
    5
    Views
    399

    Re: Change location of DLL

    Don't do that... the debug folder will get regenerated each time you build... What you should have done is create a folder IN THE PROJECT, put your files there, set the folder to copy local. I think...
  16. VS 2022 Re: Populate DataGridView via function from SQLite in VB.Net (VS2022)

    This is your problem... it's not doing what you thiink it may be doing...


    While fnSQLReader.Read()
    valuesList.Add(fnSQLReader).ToString()
    For...
  17. Replies
    14
    Views
    741

    Re: System Re-write

    I believe it's because you can import a namespace... not an assembly.

    -tg

    edit - more accurately: you reference the asssembly, but import the namesapce. Which makes sense because an assembly...
  18. Replies
    14
    Views
    741

    Re: System Re-write

    It means that if you have an assembly (MyAssem1.dll) and it has a namespace (say MyAssembly) and a class in it (ClassA) and another Assembly (Massem2.dll) and it has a namespace (MyAssemgbly) and a...
  19. Replies
    648
    Views
    141,811

    Re: Hamilton 5x World Champion ?

    I'm curious to see how the Hamilton-Ferrari announcement shakes things up. Will Merc still give him the full treatment knowing he'll be leaving in 12 months? What will the other drivers do knowing...
  20. Re: vb2010: why i get the 'NullReferenceException'?

    Hear me out ... if VB isn't working out, you could try godot, which uses C# for its programming (also has built-in gd-script, and also suports other languages through plugin system. The game engine...
  21. Replies
    4
    Views
    405

    Re: Bluetooth Bait and Switch

    Might be an extreme idea, but consider an Electron app ... there's a BT library that you can use... came across it in my tutorials. I have no need for BT so I didn't look into it very far, just...
  22. VS 2005 Re: Folder Control similar to outlook express

    What you're looking for is what's known as an "Accordion Control" .. actually, that specific one might be an "Outlook Bar" ... either way, something to look for...

    -tg
  23. Re: VB6 ADO recordset using SQL - fails when 'WHERE' clause added - SQL fixed still e

    I wonder if it's a connection thing ...
    How I'd probably approach is to create the recordset as a disconnected recordset.. I think you'll need to play with the settings on your .Open line ... then...
  24. VS 2019 Re: Populating a Combobox display/value of states from text file

    In this case, likely not... SortedDictionary sorts on the key ... SortedList on the other hand will sort by default on the first item... The other difference is that you can also hand the SortedList...
  25. Re: VB6 ADO recordset using SQL - fails when 'WHERE' clause added - SQL fixed still e

    No, it happens when there is something in the SQL query that it can't find as an object so it treats it like a parameter (of sorts) and looks to see if there have been any values given to it ... when...
  26. Re: Decompressing a split ACE archive along with progress bar

    This happens because UI updates are given lowest priority in the heierarch because it can be somewhat time consume, so it's sacrificed for performance reasons.
    That said, I think you can use...
  27. VS 2019 Re: Populating a Combobox display/value of states from text file

    That's my point ... which one represents Red? Which one represents black?


    -tg
  28. Replies
    20
    Views
    824

    Re: Compiled exe launched with task manager

    Odds are it's the "End" command... when End is encounteredd, it just stops. There's no cleanup and no exit code is emitted... that's why task manager is still running... it's looking for an exit code...
  29. VS 2019 Re: Populating a Combobox display/value of states from text file

    Use hte System.SortedClass ... it'll sort entries based on the key.

    Thing is though... you're going to end up with a bunch of "None" values in the list ... which one is Red? Which one is Black?...
  30. Re: VB6 ADO recordset using SQL - fails when 'WHERE' clause added

    the unspoken part of zivoni's reply is that you've used a variable name in your SQL. You can't do that. SQL/ADO/your database doesn't know what "lngCurrentLabSpecimenID" is ... VB knows what it is,...
  31. Replies
    76
    Views
    2,431

    Re: Dinosaurs on the Ark: How It Was Possible

    It wasn't fish that had a problem... or maybe it was... But if you're referring to the whole not eating meat during Lent, it had to do with some religious leaders at the time, saw an opportunity to...
  32. Re: VS 2022 (Vb.net) - wrong e.KeyCode and e.KeyData values

    Yes... 87 is the KEY code for the w key ...
    https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/keycode-constants#a-key---z-key

    If you're getting 192 for the "@"...
  33. Replies
    16
    Views
    786

    Re: This forum works flawless on IOS :)

    Mac OSX Sonoma .. Brave browser (chromium based) 1.62.162 ... the above was created using "Reply with Quote" ...so that's working for me... haven't tried the toolbars yet. (they appear... cannot...
  34. Replies
    16
    Views
    1,206

    Re: Python under "Other Languages"

    Honestly, as some one learning Python, this isn't the first place I'd think of coming to for help with it.

    -tg
  35. Replies
    13
    Views
    848

    Re: MSSQL update table with million of rows.

    Yeah, it probably works ... I've never used a top in an update like that ... In the past when I've wanted to batch things, I'd put the IDs into a temp table, then use something like "where id in...
  36. Replies
    16
    Views
    726

    Re: "Out of string space"

    Cool, that's good to know ... now that I see it I do kinda sorta remember that... but it could also be my imagination. although I'd suspect that copymemory might still be faster/more efficient... but...
  37. Replies
    6
    Views
    621

    Re: why is there an error here?

    You have a couple of options at this point...
    1) Keep the nature of the error a secret and let people guess what the problem is.
    2) Post the text of the error message.
    3) In my signature block...
  38. Replies
    16
    Views
    726

    Re: "Out of string space"

    Large string manipulation is tricky at best ... Strings are immutable, so each time you make a change, it has to copy it to a new location and then add/remove parts... So you're "pre-allocation" is...
  39. Replies
    8
    Views
    541

    Re: combobox text help

    Only some coding? Guess that's a step in the right direction, at least it isn't interfering with all the coding.

    Any who...

    How are you filling the combobox? You know you can fairly easy add to...
  40. Replies
    36
    Views
    1,540

    Re: conflicting issue

    That's two things... and two things too many... and hte code (at least by the time I stopped looking) was convoluting the issue... so I tried to lay out some steps to simplify things and make it...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width