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 Wanet Telecoms Ltd 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: hsviljoen
  • Content: Threads
  • Order by date
  1. hsviljoen

    Send/Receive Settings via vba

    I want to manipulate the Send/Receive Settings via a macro - any idea on where to begin... ?
  2. hsviljoen

    Hoe to return HTTP/1.1 200 OK request

    Hi all, i hope you could help me with this; I have a asp.net page which parses the url and insert the values into a db. However the post to my URL requires a 'OK' response e.g http/1.1 200 OK.... How would i send the response? Thanks
  3. hsviljoen

    Cancel Postback on button click

    I hope this is possible.... does nayone know how i can cancel / dissable the postback of a form on a button_click event???? Thanks for your time!...
  4. hsviljoen

    Oracle blob file corrupt after retrieved from db

    Hi there, hope someone can help with this - After retrieving a file from a oracle blob and write to hdd the file is corrupt . I believe it might be a char set issue: here is my code: Dim con As OracleConnection = New OracleConnection(sConnString) con.Open() ' Source...
  5. hsviljoen

    Host office application in vb form

    I need to embed a visio document (office document) into my vb form , but I have to capture events from that document... at this stage I have embedded the document with the DSOframer control , but I cant access the document events. Only the DSO framer's events. So Ive vreated a macro for the...
  6. hsviljoen

    get Hidden formfields ....

    I need help with this : I run a asp function which creates the following: Do until RS.EOF = TRue response.write "<Input type='hidden' name='AddressONE" &ind & "' value=' & rsAgencies("A_Adr1") & "'>" rs.Agencies.movenext Loop THEN I want to populate other textboxes with values from the...
  7. hsviljoen

    Saving word doc as tiff file

    Hi , Ive developed a fax application - checks a folder in outlook and then sends the attachment as a fax... Everything works fine but when i use the converter(kdimageeditor) the word document looks all scrabled and the text is very small... I need to get the word doc to be saved a a tiff file...
  8. hsviljoen

    Saving a word doc as a valid Tiff file

    Hi , Sorry for posting this in the VB section but hopefully someone can help. Ive developed a fax application - checks a folder in outlook and then sends the attachment as a fax... Everything works fine but when i use the converter(kdimageeditor) the word document looks all scrabled and the...
  9. hsviljoen

    URGENT HELP NEED - Connect Pc's to server

    Hi there, Ive installed Small business server 2003 - DOne all the wizards and everything - now i need to connect the pcs to the server - the cabling has been done and all the clients connected via a hub. How do i set the network up to the server (software) - I tried entering the domain but it...
  10. hsviljoen

    Check for a change in a cell

    Please help with this - I need to check if a value in a cell changed(if the value changes). Ive used this code: If Intersect(Target, Range("H28")) Is Nothing Then Exit Sub Else MsgBox "Value changed!" End If but this fires even though the value stayed the same... Any help will be...
  11. hsviljoen

    Post data to closed workbook sheet?

    I need to post data from one workbook into a sheet in a other workbook. I'm having problems to run any code after the line of code that opens the other workbook. Does anyone have a idea? thank you in advance.
  12. hsviljoen

    Retrieve and post data to a spreadsheet

    Hi there - i need urgnet help with this.... i have two spreadsheet - the first have a macro that brings up a browse dialog box where the user chooses a spreadsheet. Then the macro open the selected spreadsheet... My idea is to import data into a listbox , the user then clicks on a list item...
  13. hsviljoen

    Browse for file VBA

    I need a control / method to browse for files - similar to VB6's file & directory listboxes.... Any ideas?
  14. hsviljoen

    Multiple undo (excel) code???

    Do anyone know why you cant use "undo" after a Worksheet_SelectionChange . It seems that you can only undo before this event fires.... any ideas on how to by pass this would be great
  15. hsviljoen

    Excel Validation (Dropdown) appearing in wrong columns

    Hi there, This is a weird one.... Im working on a excel system someone else created.... The first 3 columns in the sheet contains data validation dropdowns.... When you delete a row , the dropdowns appear in other columns( Ive checked the code and it doesnt seem that the validation is created...
  16. hsviljoen

    Force word not to save template.

    Hi there - Hope someone has an idea.... In the New document event of word I create a toolbar using code..... so this causes word to ask to save the template when you close it down. I cant change the toolbar code or even the event its happening in - What I've create now is a Addin with the...
  17. hsviljoen

    TMP FILES IN PROJECT FOLDER???

    Ive got about 15Mb of *.tmp file in my project folder - Can I delete this??? VB1.tmp , vb2.tmp .... and so on
  18. hsviljoen

    Using String to do calculations

    Hi there, I have formulas stored in a string var. I want to do a calculation with this var. E.g. Value = 10/ formulaSTR Is this possible - I tried the above but I get a "TYPE" error - due to the string..... The string contains the following :((14*.014)/(22.73*0.1243)) Help would be much...
  19. hsviljoen

    Imagebox & label added inside picture box - CLICK EVENT ?

    Ok - I know the heading doesnt make sense at all. Ive added a imagebox and label into a picture box - but now i want to have a 1 click event for everything inside the picturebox - is this possible?
  20. hsviljoen

    Toolbar hide event

    I need to run code when a user hide(closes) a toolbar in word. I cant seem to find a event for this in VBA. I want to add a button to the toolbar ( VIEW Toolbar ) if the user hides the current toolbar. Is this possible?

Part and Inventory Search

Back
Top