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

    windows 2003 server shared folder disappeared

    Hi, I have this problem when a shared folder suddenly disappeared. When I try to enable sharing back, the Sharing and Security tab is not available. There is nothing i could do until I rebooted the server again, then the shared folder appeared again. Can anyone shed some lights what caused this...
  2. bearfish

    sprintf string re-position

    I have a string consist of 25bytes concatenate together by 3 different string. The first string consist max 8 bytes. If the first string is less than 8 bytes, I want to position it to the right side. I use the command: sprintf(tmpBuf, "%8.*s", sizeof(8), datapart1); But when it printed out with...
  3. bearfish

    Error upload text file to AS400 via Client Access ODBC

    Hi, I'm a newbie and using DTS Import/Export Wizard to upload a text file to AS400. My text file is a Fixed field. So I've selected File Type: ANSI, Row Delimiter: {LF}, then insert vertical line on the text to specify the starting and ending position for each column. I've configured my DNS as...
  4. bearfish

    XML Insert error

    Hi, i got this message when trying to insert from web form into xml file. Error Type: msxml3.dll (0x80070005) Access is denied. /person/VerifyPerson.asp, line 64 // 7) Now save the nodes to the file line 64 -> xmlDoc.save(Server.MapPath("Person.xml")); What does Server.MapPath point to...
  5. bearfish

    redirect to new link

    hi, below is the code, after login successful, i want to redirect the user to a new link. The code redirect back to http://localhost/test/mail.anyone.com/UserEmail. How can I redirect to http://mail.anyone.com/UserEmail ? Thanks alot. StringBuilder url = new StringBuilder ( ); url.Append (...
  6. bearfish

    open port 110

    Hi, is there a way to open port 110 without restarting Windows?
  7. bearfish

    how to retrieve data in checkbox format from Access

    Hi, My database using Microsoft Access set the field A as data type Yes/No. When I try to retrieve the data back to my VB screen to got this error "Run-time error '380': Invalid property value " The code below is how i retrieve the value A. Anyone know why? ANything miss out...
  8. bearfish

    How to extract string using delimiter

    I have this field InvID which is auto increment primary key. In this lstRecord_DblClick function, i try to use the Left() function to extract the InvID from the program interface which is a lstRecord field. But when the my InvID is 1, or 2 which is one digit, i get the error message: Syntax...
  9. bearfish

    update statement

    Hi, i got syntax error in the update statement message when i tried to update all the field in my form. below are my codes: can anyone tell me where went wrong and where is the syntax error?thank alot. moCommand.CommandType = adCmdText moCommand.ActiveConnection = moConnection...
  10. bearfish

    combo box selection

    Hi, I would like my combo box to response when a selection is pick. For my code below: If CPT is selected from the combo, I would like to enquire from the Computer table and get the last record(its auto increment) and save it to a variable and increment it by 1, then display it to the screen...
  11. bearfish

    DoCmd for query table

    I need help on what method to use for the DoCmd when i want to query from another table A, and output its content to the form after increment it. I have this stmt : If Me.EQP_CAT_ID.Value = CPT Then If the selected option from combo is CPT, then it will query from Table A and increment the...
  12. bearfish

    query table to display in form

    hi, i used the Access to design the form.I have a combo box which have 3 item.Whenever item 1 is selected, then a query will be made to the item 1 table to check the sequence number and put the next number of the sequence into the text field in the form to be displayed. when user click next, the...

Part and Inventory Search

Back
Top