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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by melginger

  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...

Part and Inventory Search

Back
Top