Search:

Type: Posts; User: Hack

Page 1 of 12 1 2 3 4

Search: Search took 6.67 seconds; generated 22 minute(s) ago.

  1. Replies
    5
    Views
    1,130

    Re: VB with ACcess or Sql Server

    How about storage? How large do you see this database getting? How many records do you envision there being in this database in the next 6 months? In the next 12 months? In the next 18...
  2. Replies
    149
    Views
    25,302

    Re: THE .net and vb6 holy war

    Moved To Chit Chat
  3. Thread: The Golden Chair

    by Hack
    Replies
    3,274
    Views
    523,487

    Re: The Golden Chair

    I would count Alpha as a waveform bringing that category to three and add the category "Congratulations" for which there is one entry: Bravo

    Unfortunately this drops the daffodil total to 16
    ...
  4. Re: Connection.execute querry not saving the data in database.

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  5. Re: Search for specific wording in text file and print words that follow

    Moved From The Codebank (which is for sharing code rather than posting questions :) )
  6. Replies
    5
    Views
    1,045

    Re: 12 interval of Excel output

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  7. Thread: VB6 Setup

    by Hack
    Replies
    4
    Views
    1,294

    Re: VB6 Setup

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  8. Re: please help on check if process "notepad.exe" exist then wait to end

    Duplicate threads merged.

    One topic, one thread please.
  9. Replies
    8
    Views
    1,898

    Re: how to break for...next statement

    Use just one form for the quiz. This one form can contain 40 questions easily.
  10. Replies
    4
    Views
    925

    Re: Updating two tables with one submit button

    Moved From The Codebank (which is for sharing code rather than posting questions :) )
  11. Re: Is there a way to copy items from one listbox to the other?

    Or, if you just want to move/copy some of the items from one listbox to another listbox (but not all of the items)
    Private Sub Command1_Click()
    Dim i As Long
    For i = List2.ListCount - 1 To 0 Step...
  12. Replies
    2
    Views
    963

    Re: Looking for some help compiling code

    Welcome to the forums. :)

    Are you looking for something like http://www.amazon.com/Microsoft-Visual-Basic-Professional-Version/dp/B00002S7HR
  13. Replies
    8
    Views
    1,898

    Re: how to break for...next statement

    Welcome to the forums. :)

    I'm not completely sure what you are trying to accomplish, but if you need to get out of a For/Next loop use
    Exit For
  14. Re: How to open a new excel sheet and save as new excel

    Moved to VB.NET and added
    your code goes in here tags
  15. Re: Designing/Formatting Excel during exporting Data from vb6 application.

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  16. Replies
    14
    Views
    3,838

    Re: VB6, APIs, and OS's

    That sounds like an old 16 bit APIs (integer) got included with newer 32 bit APIs (long) - I've seen old lists like that which combine the two. It really depends on the actual API (.DLL file)...
  17. Replies
    11
    Views
    1,546

    Re: Need Help, Database click event

    What database are you using and what version of .NET are you using?
  18. Replies
    5
    Views
    1,338

    Re: btnAddFacility in VBA

    With that being the case, your question would be better served in the Office Development section and that is why I have moved it here. :)
  19. Thread: Please Help

    by Hack
    Replies
    14
    Views
    2,112

    Re: Please Help

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  20. Re: Need help with AppActivate to be able to use SendKeys

    Welcome to the forums :wave:

    Try using the API approach
    Option Explicit

    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
    (ByVal hwnd As Long, _
    ByVal...
  21. Replies
    5
    Views
    1,197

    Re: store image to access database problem

    In the Thread Tools dropdown located at the top of the page there is a menu item for marking the thread as resolved. :)
  22. Thread: VB. Chart update

    by Hack
    Replies
    3
    Views
    1,510

    Re: VB. Chart update

    Thread Moved To The VB.NET Section
  23. Replies
    8
    Views
    19,996

    Re: Can't install VB 6 on Windows 7

    Non programming question moved to General Developer
  24. Re: Check Command Button status in database at the time of execute...

    I don't understand your question.

    What query are you checking for and what do the command buttons have to do with it?
  25. Replies
    2
    Views
    914

    Re: creating multiple object dynamicly

    Moved from the CodeBank (which is for sharing code rather than posting questions :) )
  26. Re: how to make form scrollable follow by object in that form

    Thread moved from the Codebank (which is for sharing code rather than posting questions :) )
  27. Re: [RESOLVED] WPF Dispatcher BeginInvoke parameter mismatch

    Moved TO WPF
  28. Replies
    1
    Views
    938

    Re: Need help about access Databese

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  29. Replies
    1
    Views
    798

    Re: Threading in Timers

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  30. Re: Problem with connect DataBase to the bulk sms software

    Moved To Database Development

    Welcome to the forums :)

    My guess would be that either your database name, or your table name is something that is considered to be a reserved word. It happens...
  31. Re: VB2008 How to search items in listview using combobox

    Moved To VB.NET
  32. Replies
    13
    Views
    2,363

    Re: VB6 ListView don't view (Combo Box)

    Moved From The CodeBank (which is for sharing code rather than posting questions :) )
  33. Replies
    5
    Views
    2,640

    Re: Displaying Datafield Command1.lname not found.

    Welcome to the forums :wave:

    What line of code is causing the error?
  34. Replies
    9
    Views
    1,341

    Re: Your First Game...

    Moved to Chit Chat
  35. Replies
    96
    Views
    10,409

    Re: code error 09 in vb 6 accounting system

    Moved from the CodeBank (which is for sharing code rather than posting questions :)
  36. Replies
    17
    Views
    2,237

    Re: Read a Text file in to Multiable Text Boxs

    Thank you! :)

    4x2y's solution should work just fine for you.
  37. Replies
    6
    Views
    2,095

    Re: FileSystemObject and SubFolders

    Basically you want to programmatically create a Windows Explorer then, right?

    Thats going to take some pretty serious recursion.

    How about using a Common Dialog control?
  38. Replies
    6
    Views
    2,095

    Re: FileSystemObject and SubFolders

    Are you simply trying to return the full path to a particular file? If so, then try the SearchTreeForFile API. Here is an examplePrivate Declare Function SearchTreeForFile Lib "imagehlp" _
    (ByVal...
  39. Replies
    17
    Views
    2,237

    Re: Read a Text file in to Multiable Text Boxs

    Just as a point of clarification...your question states you wish to read "A" text file, as in one text file, but your example uses three different file names.

    Are you reading one text file or...
  40. Re: Check the condition before upload Excel to Access

    Do you have a reference set to ADO?

    Also, saying you are getting an error is not much help. There are lots of errors that could occur. What, specifically, is the error that you are getting? ...
Results 1 to 40 of 444
Page 1 of 12 1 2 3 4



Click Here to Expand Forum to Full Width