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 SkipVought 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
  • 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

    Darrylle, thanks for the reply... that's exactly what i did after i posted the thread but i used a label instead and just changed the caption property thanks again. Derek
  3. 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?
  4. lminmei

    checking for a character in a string

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

    populate a textbox from combobox value?

    thanks for the reply... i'll try this out! Derek
  6. 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...
  7. 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?
  8. lminmei

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

    hey scott, thanks for the help!
  9. 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
  10. lminmei

    semicolon in a string??

    thanks for the replies guys but i figured out that i don't need to escape the semicolon in the string.... the problem was with my double quotes which i did not use an escape backslash... thanks again...
  11. lminmei

    semicolon in a string??

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

    rss aggregator with vb.net

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

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

    to answer SQLSister's question... "now()" was only an example of the current date/time, and the "datestamp" field is the name of my field...that's all thanks dbomrrsm for the help!!!!
  14. 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?
  15. 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...
  16. lminmei

    package another installer with vb.net msi deployment package

    because i'm working with ESRI GIS products and it requires a runtime installer... the individual ocx and dll will not register for some reason... plus the full runtime installer will install other dlls which i'm not sure of come on, there's gotta be a way to do this in the VS.NET deployment...
  17. 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...
  18. lminmei

    How to update one form from another form

    I'm trying to do the same thing as mkell1 and i'm trying to understand your code Sweep... but i don't quite understand... how are the events (OpenChildForm) and (ChildFormClosed) being declared in form1? can you be a little more specific in your code? thanks -d
  19. 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...

Part and Inventory Search

Back
Top