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

    How to download ole objects from access?

    Hi, I have an Access Database with one of the field's data type as OLE Object. The data can be image, MS powerpoint, MS word etc etc. How can I use ASP to download the file? I have tried : response.contenttype = "application/msword" response.binarywrite rs("fieldname") But when I open the...
  2. shelbytll

    How to download OLE Object from MS access?

    Hi, I have an Access Database with one of the field's data type as OLE Object. The data can be image, MS powerpoint, MS word etc etc. How can I use ASP to download the file? I have tried : response.contenttype = "application/msword" response.binarywrite rs("fieldname") But when I open the...
  3. shelbytll

    How to return CurrentUser's Email Address?

    Hi, I'm trying to develop a Com Add-in for Outlook. SO now when I launch my Outlook, I'm able to see the new button I created on the toolbar. My question is, how do I return the current user email address? I manage to return the current user Name with [b]oApp.Session.CurrentUser.Name[\b] I...
  4. shelbytll

    I need some opinion and comment.

    Hi, I would like some opinion. For a web based document management system, do you think the file system should follow exactly the way the files are stored? Currently, when a document is uploaded, it will create a folder for that document. So one folder for a document. And the folder name is the...
  5. shelbytll

    How to create a DLL to convert PDF to text?

    Hi, I would like to create a DLL so that my ASP application can call this DLL to convert PDF to text. Can someone help me? Or if anyone know of any available DLL for download would be great. I am a clever newbie...[peace]
  6. shelbytll

    Application that register DLL.

    I would like to develop an application that can register the dll for the user. can anyone help me? I am a clever newbie...[peace]
  7. shelbytll

    how to make window not sizable in it's original size?

    hi, how about I would like to make a FORM window size not sizable and onload, it is it's original size? I have tried to make it's BorderStyle=1 - Fixed Single and onload of the FORM, I code THIS.WindowState = 1 I did achieve the result I want however onload, it is always minimise on to my...
  8. shelbytll

    How do I run a report outside the FORM window?

    I have a FORM in which it's ShowWindow = 2. When I click a button to run a REPORT, the REPORT is run inside the FORM window. Is it possible to run outside the FORM window? I am a clever newbie...[peace]
  9. shelbytll

    How do I make a form maximise on load?

    I have a form which it's ShowWindow property is 2 - As top level. How do I make it maximise on load? I am a clever newbie...[peace]
  10. shelbytll

    How to remove the status bar?

    When I run the .exe program that I've build, i realise that there's a status bar. How can I remove the status bar? I am a clever newbie...[peace]
  11. shelbytll

    "Variable not found" when try to scroll grid

    I have use a View for my grid control. I have set the SendUpdate. On Init() , I set: this.recordsource="" On the click() of a combo box, I code: b=thisform.brand.value m=thisform.model.value select view1 set filter to brand=b locate thisform.grid1.recordsource="view1&quot...
  12. shelbytll

    How to use the grid control?

    I would like to display all the database field values in a grid control upon selection of a combo box. And user is allow to modify the values. When click on a button to submit the changes, the changes will be updated to the database. So how do I: 1. Get the Grid Control to display out the field...
  13. shelbytll

    How to update a General field?

    How do I modify a General field in a table? I have an image in the general field already. If user want to update the image? How do I update? Is it: Append General field1 from &filename ? I am a clever newbie...[peace]
  14. shelbytll

    Creating an ActiveX?

    Hi, I would like to create a text file and store in client's computer. Heard that I need to develop an ActiveX control in order to do that. Can anyone teach me how to do that? Thanks. I am a clever newbie...[peace]
  15. shelbytll

    How to make a button to browse the user system for files?

    It is for user to upload picture I am a clever newbie...[peace]
  16. shelbytll

    Possible: Select field1 where field2 not in (cursorName) ?

    I have made a select statment and store in cursor tempcur. I want to make another select statment where field1 Not In tempcur. Is it possible? for example: select field2 from tablename where field1 not in (tempcur) I am a clever newbie...[peace]
  17. shelbytll

    How to insert General and Text field at the same time?

    I have a General and text field in a table. How do I insert both at a time? I only know Append General tablename.fieldname from &var But how do I append the general field and the text field at the same time? I am a clever newbie...[peace]
  18. shelbytll

    How to upload picture?

    Hi, I'm developing an application that is to be run on individual PC. Both the application and database are in their own laptop. I would like to allow user to Upload picture to the database. How do I do that? Do I use the Command Button? I am a clever newbie...[peace]
  19. shelbytll

    Update statment looks fine and it doesn't update?

    When I perform an update sql statment like this: Update tablename set field1=f1, field2=f2 where field1=oldf1 and field2=oldf2 It doesn't update. I try to write out the sql statment and it looks fine. What else do I need? I am a clever newbie...[peace]
  20. shelbytll

    How to retrieve variable in another place?

    if I have try to store something in variable temp in the click event of a combo box and want to retrieve the value of temp in the click event of a button, how do I achieve that? I am a clever newbie...[peace]

Part and Inventory Search

Back
Top