Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: DMG2000
  • Content: Threads
  • Order by date
  1. DMG2000

    Beautiful Arrays : NEED HELP!

    Okay, this is the situation: ### Gets the text fil ### $list = 'list22.txt'; open(INF,&quot;$list&quot;); @test = <INF>; ### for each line, writes the line#### foreach $line (@test) { chomp($line); print &quot;$line\n&quot;; } print &quot;\nnext five lines being...
  2. DMG2000

    Help seperating and parsing a text file input

    Hi: I am new to perl and cgi, atho am experienced with vb and asp, so bear with me: I need to take a text file generated from a db of users@domains and I need to accomplish two things: 1> Seperate the users@domains so that output is like domain1:user1,user2,user3 domain2:user1,user2,user3 and...
  3. DMG2000

    Need Parsing Text Help

    Hi: I am new to perl and cgi, atho am experienced with vb and asp, so bear with me: I need to take a text file generated from a db of users@domains and I need to accomplish two things: 1> Seperate the users@domains so that output is like domain1:user1,user2,user3 domain2:user1,user2,user3 and...
  4. DMG2000

    DataReports and Printing

    I have an orders application that I would like to print out the unprocessed orders via a menu item. Do I need to make a DataReport based on this, or can I have a Print Command that prints all the records displayed in the app form? Thanks!
  5. DMG2000

    Adding an ODBC to Registry

    Is it possible to have my app,when installing, utomaticly add a database to the ODBC under Win98 & NT Via a registry key? or do I need to create a dll? Thanks!
  6. DMG2000

    Date Input Mask...need mm/yy

    I need to get my date input mask so that acceepts &quot;mm/yy&quot; format for a credit card expiration....I have tried using &quot;99/99/00;0;_&quot; for the mask, but when entered 01/02 it appears in the db as 01/02/00. Thanks!
  7. DMG2000

    Opening MDIChild Form as Maximized???

    Is there a way to open a MDI child form so that it is maximized in the parent window? Also, on the same note, is it possible to set scroll bars in the parent window if the MDI child is bigger than the parent window, but not on load? Thanks!
  8. DMG2000

    DataFormat property is not supported for this DataSource

    I have a textbox that calls info from a db query, the value is supposed to be currency and it appears that way in the db container, however, when running the VB app, the values are being shown as integer...is there a solution to correct this, or perhaps I need to set a format in the db (it wont...
  9. DMG2000

    Dataformat not supported for DataSource

    I have a textbox that calls info from a db query, the value is supposed to be currency and it appears that way in the db container, however, when running the VB app, the values are being shown as integer...is there a solution to correct this, or perhaps I need to set a format in the db (it wont...
  10. DMG2000

    Display Currency from DB source = no $

    I have a textbox that calls info from a db query, the value is supposed to be currency and it appears that way in the db container, however, when running the VB app, the values are being shown as integer...is there a solution to correct this, or perhaps I need to set a format in the db (it wont...
  11. DMG2000

    Sub Forms?

    What is the possiblity of using Sub Forms in a Form in VB, like in Access forms?
  12. DMG2000

    Adding ODBC via regkey???

    Is it possible to add an ODBC connection into the registry without going through the control panel applet?
  13. DMG2000

    Using an MS Access Form in Visual Basic???

    Is it possible to call a form created within an Access db in a Visual Basic application, or possible to export an Access form to *.frm object?
  14. DMG2000

    Using an MS-Access Form in VB?

    Is it possible to use a form created in your MS Access db in your Visual Basic application, or export to a .frm object?
  15. DMG2000

    Accessing queries from a database

    Hello: Using Visual Basic 6.0, I am trying to connect to an Access database to make a form based on a query contain in the db, and am having a problem. It shows the tables contained in, but no listings for the queries. Do I have to assemble the query by hand within VB, or is it possible to...
  16. DMG2000

    Converting ASP to a Visual Basic program - Possible???

    Hi: I have an ASP application that I need to make into a Visual Basic program in order to demonstrate it from a cd as opposed from a server. Does anyone know if this is possible, and if so, where do I begin?
  17. DMG2000

    Data type mismatch in criteria expression

    Everytime I try to call, or add to a primary key with a database, I get this error &quot; Data type mismatch in criteria expression.&quot;, I know it has to be possible to get or update the primary key autonumber, but why isn't this working? Code as follows: sql= &quot;insert into orderitems...
  18. DMG2000

    Data type mismatch in criteria expression.

    Everytime I try to call, or add to a primary key with a database, I get this error &quot; Data type mismatch in criteria expression.&quot;, I know it has to be possible to get or update the primary key autonumber, but why isn't this working?<br>Code as follows:<br>sql= &quot;insert into...
  19. DMG2000

    ARRAY HELP NEEDED

    Is it possible to hold database field info within a array?<br><br>My &quot;non-working&quot; code: <br>aParameters = Array ([DBItem(&quot;ProductName&quot;)] [DBItem(&quot;Description&quot;)][DBItem(&quot;SalePrice&quot;)])<br><br><br>
  20. DMG2000

    ARRAY HELP NEEDED

    Is it possible to hold database field info within a array?<br><br>My &quot;non-working&quot; code: <br>aParameters = Array ([DBItem(&quot;ProductName&quot;)] [DBItem(&quot;Description&quot;)][DBItem(&quot;SalePrice&quot;)])<br><br><br>NOTE:<br>This is within an ASP page<br>

Part and Inventory Search

Back
Top