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 Chriss Miller 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: lminmei
  • Content: Threads
  • Order by date
  1. lminmei

    creating access table & zero length string

    is there a way to create an access table with columns with "zero length string" to yes? here's how i'm creating the table: CREATE TABLE Example (Contact TEXT(10), Phone TEXT(40)) I want to make the "Phone" column to allow zero length strings is there a way to do this?
  2. lminmei

    different values for every page using vba

    i have a label in a report that takes a static value now i want to have a different value for that label on every page... page1, page2, page3, page4, page5, ...etc label.caption would then show: 5, 10, 15, 20, 25 ... etc how do i check each page in vba?
  3. lminmei

    checking for a character in a string

    how can i check for a specific letter in a string?
  4. lminmei

    populate a textbox from combobox value?

    I have a combobox named "cboNumber" that i want a user to select a value from... and when they select a value, that value is inserted into a textbox named "txtNumber"... so when they select multiple values (a, b, c) from the combobox... i want to be able to concatenate each consecutive value...
  5. lminmei

    how do i select a node in a treeview?

    here's my treeview: ParentNode - Childnode i want to select the childnode by code when i first start the application.... there is no "select" method for the treeview... can someone help?
  6. lminmei

    get value of the first column in first row of listview???

    i have a listview with 3 columns and 10 records in it... i'm new to C# so.... how do i go about getting the Value of the first row and first column??? Thank, Derek
  7. lminmei

    semicolon in a string??

    what is the code for a semicolon if i want to use a semicolon in a string literal?
  8. lminmei

    rss aggregator with vb.net

    any know where i can get info on creating an RSS Aggregator with VB.NET ???
  9. lminmei

    select all records where date is between now and 5 days ago

    i have a datestamp field ("datestamp") in my sql table how would i write a query to return all records that are date stamped between now() and 5 days ago?
  10. lminmei

    Evaluate help please!

    final result = "attributes.Field1", "attributes.Field2", etc i create a query called "getNum" to get a list of numbers where then i have to append those numbers to the end of a fieldname called field... so how can i evaluate this expression? where i have a variable inside another variable? for...
  11. lminmei

    package another installer with vb.net msi deployment package

    first i need to check the system for an existing .dll or .ocx file... and if its not present on the system... the msi installer needs to open or call another ex: "setup_controls.exe" to install the necessary dlls first before installing the main application. has anyone ever done this before...
  12. lminmei

    listview ... adding text with multiple lines

    hi, i'm trying to add concatenated field values to my listview however, the values need to be in three lines for instance, {Address} {City, State, Zip} {Phone} i have the test string set to: [field1 value] & vbcrlf & [field2 value] & vbcrlf & [field3 value] and in the listView i get a return...
  13. lminmei

    programatically create folder?

    is there a way to programatically create a folder?
  14. lminmei

    multiple columns in a combo box?

    can i have two columns in a combo box in vb.net? for instance i want to show the information for two fields in a combo box is that possible????
  15. lminmei

    populate listbox with names of files in a directory

    is it possible to loop through all the files in a directory and then populate the name of those files in a listbox?
  16. lminmei

    app.config ... how to show "<" less than sign

    i have a key with a value of a sql statement.... so now i'm trying to figure out a way to use the less than sign here's my code.... <add key="sqlString" value="SELECT * FROM hats WHERE serial < 8000"/> i error out at the "less than" sign before the 8000 any ideas of how to get around this???
  17. lminmei

    add new field ???

    is there a way to to add new fields to an existing "DBF" database which already has records ???
  18. lminmei

    mouse or cursor location off of form?

    is there a way to find the x and y axis of the mouse cursor if its off of the form? i tried...form1.mouseleave and it doesn't work... please help
  19. lminmei

    check printer status

    is there a way to check a printer's status from vb.net?
  20. lminmei

    print to PDF with specific file name??

    is there a way to print a pdf while having control of the name of the pdf document that gets outputed in Acrobat 6 & VB.NET ???

Part and Inventory Search

Back
Top