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

    Crop an image

    Hey people, I'm pulling my hair out, I can't figure out how to crop an image to a simple retangle size. I've got an image, set it to a graphics object and set a retangle to that, but can't see what to do after :(
  2. oka97

    Creating key in registry causes garbage

    Hi, I'm creating a new key with this code: Public Function CreateNewKey(sNewKeyName As String, lPredefinedKey As Long) Dim hNewKey As Long 'handle to the new key Dim lRetVal As Long 'result of the RegCreateKeyEx function lRetVal = RegCreateKeyEx( _ lPredefinedKey, _...
  3. oka97

    text box background image, possible?

    Is it possible to have the background of my rich text box as an image? So when users type over it, the text writes over the image.
  4. oka97

    change IE home page from code

    Could someone kindly point me in the direction on how to accomplish this? I've been searching and found little, perhaps there are many ways, would one of them be to find keys and edit the the registry? Is there an easier way?
  5. oka97

    VB - Access date querying is messed up!

    Hi, have a look at this: SELECT id FROM client WHERE existing_exists='no' AND (personal_date BETWEEN #02/06/2003# AND #02/06/2003#) This comes up with nothing even tho there is an entry with 02/06/2003 in it! If I push 02 to 06 in the query string, it picks it up, I'm confused! I've set text...
  6. oka97

    Help me with this tiny bit of DataEnvironment code pls :)

    == If DataEnvironment4.Connection1.State <> 0 Then DataEnvironment4.Connection1.Close DataEnvironment4.Connection1.Open DataEnvironment4.Commands(&quot;Command1&quot;).CommandText = TempQuery rptSummary.Show vbModal == It'll only show once, after you close the report rptSummary, only blank...
  7. oka97

    VB &amp; Word - mail merge with ODBC

    It seems only Word 2002 (XP) allows u to choose the datasource as ODBC as an option.. Has anyone here figured out how to use ODBC with say Word 2000 or 97? Otherwise I guess I'm going to have to use a direct link to the mdb file.
  8. oka97

    Mail Merge datasource!

    I've noticed you have to set Word's datasource property for it to accomplish a mail merge, but my VB application is connecting to an MDB using ODBC, as such it has no clue where the MDB file is (it'll be somewhere on the LAN). Isn't it possible to do a mail merge by applying an ADO connection...
  9. oka97

    Data Environment Command: &quot;Too few parameters.&quot;

    When I pass 2 parameters to the data environment I get the following: Too few parameters Expected 4. But it only expects 2 (as shown in the IDE's hint pop up thingy). I only have two parameters in the SQL statement! Can someone help pretty please?
  10. oka97

    dataenvironment SQL parameter problem - cant send strings!

    What are the two datatype settings for sending strings to the dataenvironment's SQL statement? I'm having no luck at all at sending my date string (in format dd/mm/yyyy)
  11. oka97

    DataEnvironment DataReport - Parent Child Command problem

    Current settings: Command1 - SQL statement: SELECT * FROM client WHERE id=? Command2 - Database Object: Table Object Name: project Relation: id to id And my datareport has its Datamember as Command1. But I can't drag any fields from Command 2 into the Datareport :( Any ideas ppl? Thanks.

Part and Inventory Search

Back
Top