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

    variable undefined

    I have script: $("#consigneeBtn").on('click', function() { var id = document.getElementById('consignee').value; }) Markup: <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> <a href="{{URL::to('consignees/', id)}}"> <button type="button" class="btn...
  2. dendic

    php and javascript and html

    I have a dropdown box created in php within html the value of the dropdown box is concatenated example: <?php echo $consignees['consigneename']; ?> <?php echo "-"; ?> <?php echo $consignees['city']; ?><?php...
  3. dendic

    jquery and ajax

    I have this problem and at wits end can't work out the issue alone please help. JavaScript: ( external but tried it in the main html as well) $('#customer-select').on('change',function() { var self =$(this); $.ajax({ url...
  4. dendic

    Data attributes html code

    I have this html code: <a data-id="test" title ="Add this item" class="open-AddBookDialog btn btn-primary" href="#addBookDialog">test</a> which opens a modal and passes data is passed from the parent to th modal. It works fine but I need the data passed to be the input from a textbox. The...
  5. dendic

    php code

    Windows 8.1 Apache 2.4.20 PHP 5.5.15 When I run a php file only the code shows in the browser (chrome). I searched all over the internet but find no solutions. I tried altering the apache config with no success. Please help
  6. dendic

    shell with two parameters

    Dim strCommand As String Dim strVariableFrom, strVariableTo strVariableFrom = "test.tif" strVariableTo = "test.PDF" strCommand = "c:\imagemagick\imagemagic\imconvert.exe" & " " & strVariableFrom & " " & strVariableTo Shell ("Cmd /k" & strCommand) The imconvert program uses to parameters from and...
  7. dendic

    Update SQL table from Linked Server

    I'm trying to use the following procedure to update data to a table in sql from my linked server. The procedure executes with no error messages but no date is inserted into the table. USE [LogisticsSQL] GO /****** Object: StoredProcedure [dbo].[Test] Script Date: 03/08/2011 13:55:31 ******/...
  8. dendic

    SQL statement

    Using Access front end and SQL backend. Can anybody tell me if the statement below will quiery at the server and not pass the whole table for access to query. If it doesn't query at the server what code do I use to force SQL to run the query. Dim Conn As ADODB.Connection Dim rcdConsignee As New...
  9. dendic

    Bulk Insert Problem

    When I do the import file manually from table import dropdown this text document populates the table normally. But when I use Bulk Insert I get no records returned message. I tried this with a primary key auto mumber and without. Same result. My front end is Microsoft ADP and the bake end is SQL...
  10. dendic

    List Box conditional count

    I have a list box with three columns Name,Department,Salary. I use the listcount to get a count of all the records. But is there a method to count just the records within the listbox where department = 1 for example
  11. dendic

    Form Scrolling this is a tough one

    I've been looking all over the internet and can't find any info. Is there a method to scroll right on a form view with out using the scroll bar. Maybe detecting mouse position. Or any third party software. Maybe programming a key to move right/left. My preferened method would be detecting...
  12. dendic

    Form scrolling without using the scroll bar.

    Is there a method in code where I can scroll right and left with out using the scroll bars. Examble: I'm using a drag and drop feature and when I drag a control to the right and the form has more to display I want the form to scroll.
  13. dendic

    Change mouse right click function

    I'm using code to move labels around on a form with the left click and mouse move events. When I change the code to recognize a right click instead of the left all works fine but I get dialog boxes for copying, pasting, deleteing etc. Is there a way to disable the dialog boxes with code so I can...
  14. dendic

    Closing for after table is updated

    I have a form with code running behind it that updates a table not associated to the form record source. Is there a method to check that the update is complete before closing the form.
  15. dendic

    Capture running code name

    Is there a method to capture the name of the code running. So I can save it to variable for later use.
  16. dendic

    Find name of control

    On my form I have a label named Test1. On double click I'm running code. Is there a method to get the name of the control that initiated the call. Or is there a way to get the name of the code running. Because the sub name has the name of the contol embedded example: sub test1_DoubleClick.
  17. dendic

    Check if code is running

    In a form I have a timer set to run a refresh. I also have code running for other functions mainly (On Mouse Move). Is there any way to check if the code is complete because I don't want to do a refresh until all code is finished?
  18. dendic

    Two computers writing a new record at the same time

    I have several people creating new records to the same table at the same time. The new record is created by code the ADDNEW and UPDATE commands. Once in a while I get corruption where if I try to open the table manually I get an error message stating a record has been deleted and can't be...
  19. dendic

    Print Report to File

    I open a report in VB and want to save it to a file. When I view the file the appearance is different the lines I created to seperate records are missing all I get is text. I saved as rich text. Is there a way to save the report to look exactly the same it does in Access?
  20. dendic

    Fax from Access

    Can anybody help me with some code that I can used behind a form to Fax an Invoice based on the displayed invoice.I can't figure out how implement the "where" command within a SendObject command. ex: Print invoice where invoice number = me.invoice number.

Part and Inventory Search

Back
Top