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

    EXTERNAL TABLES IS NOT IN THE EXPECTED FORMAT

    Dear all, I have some db files ( written in paradox) and i would like to open them via microsoft access, when i am trying to do the link of the table, i am getting the following error: "External tables is not in the expecged format." I am using access 2003 with windows xp proffesional SP3...
  2. swreng

    Draw and save on a file

    Dear all, I am looking for an example code, on drawing simple lines on a form and save all the drawing to any image file. Here is my code that drawing 3 horizontal lines on a form. My problem is ,how can i save this drawing to any image file? Many thanks! System.Drawing.Pen myPen; myPen =...
  3. swreng

    OpenReport Method Very Slow

    Thanks for the reply my friend, i have already found the solution to my problem and i will post it here: When you have a report which contains subreports then the options "On Demand Report" and "Re-Import" must be unchecked, else the dll of runtime is trying to find the specific path of the...
  4. swreng

    OpenReport Method Very Slow

    Hello to everyone, I don't know if this the right forum about my problem: I have an application in vb6 and i am using Crystal Report Viewer for printing purposes in my appl. I made some reports in CR 9 and i execute them from my appl with the OpenReport method. When do that it needs about...
  5. swreng

    Connect a Web Site with a DB

    You really helped me a lot, thank you very much
  6. swreng

    Connect a Web Site with a DB

    Ok thank you for your reply, for this implementation the solution you are suggesting me is enough, but in the future we are thinking to make sth more complex (e-commerce), so that solution to save the data in the database of the host and download to the local db is it safe ? it looks like very...
  7. swreng

    Connect a Web Site with a DB

    Thank you for you replies. Maybe i don't know to explain some things so i will try again: The host of the website is out of our company and we have a database server inside our company which we want to keep this data. So how can i make communication between the site and the database server...
  8. swreng

    Connect a Web Site with a DB

    Hello to everybody, I haven't experience to web applications and i would like your help please in order to understand some things. I want to make the following implementation: There is a simple web site that anyone can visit, now we want to add a feature to that site for a simple...
  9. swreng

    Stored Procedure Execution is slow

    i did update stats by executing the sp_updatestats on my database. Must i do and something else? Best Regards!
  10. swreng

    Stored Procedure Execution is slow

    Sorry i didn't respond all this dates. I tried everything you told me but the problem is still remaining. The problem is not on the query or on a view it's on server. I tried on a third server and it's working perfect (15 Seconds). I think a solution it's to uninstall the sql server and install...
  11. swreng

    Stored Procedure Execution is slow

    Dear all, I have this stored procedure: update newcampaign set apoklisi= (SELECT 8-Avg(diffprev) from v_periodresults where username=newcampaign.username group by username) This procedure is be execute in 28 seconds from a specific sql server. The problem is that i have restored the db in...
  12. swreng

    DataBind on BackColor Property

    Dear all, In a db table i have 3 columns for the backcolor of a specific object in my form, which is changing according to the record one column is for Red the other for Green and the last for Blue.(the column's names are colr,colg,colb) So i am trying to to bind the backcolor property of the...
  13. swreng

    Get Property Value of a Control from String

    Solved I understand my mistake the procedure callbyname it works in this case with VbLet Many Many thanks
  14. swreng

    Use of CallByName

    I reply in wrong post I am sorry
  15. swreng

    Use of CallByName

    Solved I understand my mistake the procedure callbyname it works in this case with VbLet
  16. swreng

    Get Property Value of a Control from String

    Hi strongm Thank you for your post is very useful for me. I would like to ask and something else is it possible with a similar way to set the property by passing the string of the property and the value which i want. I try this: Private Sub WriteProperty(ctlSource As Object, strProperty As...
  17. swreng

    Get Property Value of a Control from String

    Dear all, if i scan all form's controls with for next is it possible to get a specific property value of the control by passing a string with property's name. For example: Dim ctl as Control for each ctl in me ' Call a function which i will supply it ' like this: ' ReturnProperty("Width")...
  18. swreng

    Disable KeyBoard ShortCuts on a textbox

    Hi to all, Basically is a request of my client and i think that he has right. I have a form which the user he can change the application password, so i have 3 textboxes as all the applications: One for the old password One for the new password One to confirm the new password If by mistake...
  19. swreng

    Disable KeyBoard ShortCuts on a textbox

    Hi djfrear and thanks for your reply but i can't find this property in the textbox must i do and something else in order to display it? I forgot to tell you that i am using visual studio 2003. Many thanks
  20. swreng

    Disable KeyBoard ShortCuts on a textbox

    Dear all, Is there anyway to disable the keyboard shortcuts from a textBox (ctl+v,ctl+c,ctl+x Shift+Insert,Shift+Delete,Ctl+Insert) in order the user can not copy,cut or paste data on it only to write something. Also i would like to hide or disable the pop up menu which is displaying on right...

Part and Inventory Search

Back
Top