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

    Problem With Download PDF

    three things: 1) I want to download multiples PDF at once from my Extranet site 2) I want to send to the Client printer, multiple PDF 3) But first of all,I can't make that code work for me. It supposed to force the dialog box for Saving but it displays the content of my file. Dim file Dim...
  2. melginger

    Asking Confirmation within ASP

    I know that you can't make msgbox in asp for confirmation because ASP is server side... So you have to code your confirm box in Javascript like: <script type="text/javascript"> confirm("Your text here"); </script> But, I have only found application that use that confirm code on the Onclick...
  3. melginger

    Easy one: SELECT on multiple Databases

    I can't make it works. I'm in the Query analyzer and I want to do a SELECT statement on two tables FROM two different Databases on the same SQL server. I found something like SELECT TA.field1, TB.field1, TA.field2 FROM DB1.dbo.T1 as TA INNER JOIN DB2.dbo.T2 as TB ON TA.field1=TB.field1 But I...
  4. melginger

    Calling a Stored Procedure

    Hi, I have a stored procedure that should return me a field with string data My storedProc has 2 parameters I don't know if I can do that but I want to call the sp during a SELECT depending of a CASE SP: Create proc spChListe @ElementListeID int = 205, @ListeID int = 7 AS DECLARE...
  5. melginger

    Fetch and cursor

    Hi, i'm very new to programming with SQL. I'm good with query but now I have to transfer a function from my vb application to SQL something ;) In clear, I have a Select of two fields on multiple rows. What I want is to create in SQL what in VB I use to put one after each other every two fields...
  6. melginger

    Convert RES file into RC File

    Hi, I know that you can convert RC files into RES file using RC.exe but what I want is the opposite. I want to convert my RES into RC files. For now, I open my RES file into MsDev and the do "Save as Resource Script file (RC)". But I want to have them converted automaticaly within a VB...
  7. melginger

    Save and Retrieve Preview picture for an EXE

    Hi, I would like to be able to save and retreive a picture from my exe without having to open it. You know like msWord that show you a preview picture or the document you selected in windows explorer I want to be able to access it like you can retreive FileDescription, Version or Company name...
  8. melginger

    listview order by checked item

    I have a listview where on a click of a button, the application checks certain items depending of critera the user chose. I would like to offer him the possibility to have all the checked items on top of the listview when he clicks on a button.(Like when your look for your references on a VB...
  9. melginger

    INSERT INTO with a space in the PATH of the database

    I have a problem with this INSERT INTO. Everything goes well until we have a space in the path. For instance, the 'program files' folder. That's where the database is. We know that moving the databases to a folder without a space in its path will correct the problem but we want a more long time...
  10. melginger

    Data report: repeating the report header for each group

    For each group I would like to have the report header repeated for each group. ex: no name amount Group A 0 abc 12 1 cde 24 Total of group A 36...
  11. melginger

    problem with DSOFile.exe

    I think I made a mistake somewhere and I want to know if I can repair it... I use the DSOfile to write properties in VISIO 4 files. The prob I think is that VISIO 4 wasn't a Microsoft product at that time. So my problem is: I run my program and everything looks perfect (all the properties...
  12. melginger

    writing properties of many files

    I have to enter several properties in about a 1000 files. What I mean by properties is that, I open each file and I do: Fichier/propriétés that sould be in English: File/properties and i put information in : Titre (title) Auteur (author) categorie (category) mot clé (key word) My category is...
  13. melginger

    How to find in which table is... ?

    I know that in the table TADIR, we have all the SAP objects. What I want to know is where do i find the description (short text) of the object. When we search a program, for instance, we can search by giving a short description of it. So logically, it should be a table where each program have...
  14. melginger

    Repository of SAP objects and other information for future research

    I was assigned to determinate if it was possible and rentable to make a kind of a big database that include all the SAP objects and Siebel objects and other kind of developpemnt and documentation for futur research. They want to reduce the duplication of programs and facilate de research for...

Part and Inventory Search

Back
Top