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: *

  1. melginger

    SQL Image into a Access 2003 Report

    For Access: http://www.lebans.com/loadsavejpeg.htm Works like a charm. I spent a lot of time finding something like it. For Crystal, you souldn't have problem.
  2. 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...
  3. melginger

    Asking Confirmation within ASP

    trollacious, I don't know why you freely say that my thread isn't in the good forum... I'm programming in ASP (i think i'm in the right forum!) but I want to know how to make a confirm box within my code... ASP can't directly... Js offers possibilities... Unless you have somthing positive to...
  4. 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...
  5. melginger

    Easy one: SELECT on multiple Databases

    Finally, I created a view of the other database table in my principale database. Now I can join the two. Thanks anyway
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. melginger

    INSERT INTO with a space in the PATH of the database

    found the answer by myself testing and testing ... You gotta to put the path between[]: INSERT INTO [C:\Program files\Triolet\DATA\rapport].[Absences] (Professeur, [Date], Heure, Opération, Description, Local, NomEtudiant) SELECT Utilisateurs.Prenom + &quot; &quot; + Utilisateurs.Nom...
  13. 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...
  14. melginger

    Data report: repeating the report header for each group

    Never mind. I was getting an error message but it was for another thing... There's no problem anymore
  15. 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...
  16. 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...
  17. melginger

    writing properties of many files

    GENIAL strongm :) !!!!!! Thanks many many many times!!!!
  18. 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...
  19. melginger

    How to find in which table is... ?

    That's the description for the programs, I know, but what I needed was a description for at least each object in SE84... The solution I found is that when I make a search, I turn on the System/Utilities/trace performance/ sql... With that, I can see in wich tables it went to perform my...
  20. 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...

Part and Inventory Search

Back
Top