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: *

  • Users: aliinal
  • Order by date
  1. aliinal

    Custom Popup Word

    Hi, I've created a toolbar in a Word template which includes a series of macros and will be placed in startup folder of MS Word. There is a menu on the toolbar. But when menu is opened by users, window named "Custom Popup XXXXXX" appears in the start bar where XXXXXX is a numeric value. On some...
  2. aliinal

    Capturing keys in vb.met

    Hi, I want to capture a special key combination even if my application has no focus. This is exactly for a screen capture utility. Icon sits in system tray and onclick it captures screen and saves it according to the settings given. This works fine bu if user wants to capture screen for example...
  3. aliinal

    ADODB Record Lock

    ArtieChoke you're great! Thanks for your explanation. And you're correct record is in lock while it's open. Thanks again. @li
  4. aliinal

    ADODB Record Lock

    Hi all, ArtieChoke, the code that i've told you about is below. First look at code than read below for description. Dim rs As ADODB.Recordset Dim conn As ADODB.Connection Private Sub Command1_Click() Set conn = New ADODB.Connection conn.ConnectionString =...
  5. aliinal

    ADODB Record Lock

    First of all thanks for your replies. 1. Zemp, that url is broken :( 2. ArtieChoke: Yes, others can still get and modify data during lock time (so it's not a real lock) I'm waiting for your further replies Thanks @li
  6. aliinal

    ADODB Record Lock

    Hi, I get some records to a recordset and do some changes. I want my connection or recordset or whatelse lock records that i've retrieved until i update them. During editing no other user will be able to change values. Pessimistic option is not working (i don't know why). Using SQL Server and...
  7. aliinal

    Validatin XMLDocument against DTD

    Brillant solution! it's great.. thanks. @li
  8. aliinal

    Cannot send a email in a vb.net project

    Hi Nalina, There must be a problem with your oledb integration. Could you provide a piece of source line about how yo gather information from db and merge it to mail? Then it will be much easier for anyone who wants to answer. bye @li
  9. aliinal

    Float-in Window

    Hi I think there is no simple way to make a window always on top programmatically. Perhaps you should show your popup image in a floating div on you page. And provide a link to close it. When user clicks this link, you simply set div's display:none. hope this helps @li
  10. aliinal

    Validatin XMLDocument against DTD

    Hi, I want to validate an XMLDocument object's content against a dtd. XML source is not written to a file so i can not use XMLValidatingReader. And i do not prefer to write xml document to a file first, read it back and delete temp file. Is there any solution? thanks @li
  11. aliinal

    Looping through controls on a form

    Hi, These methods would work but they are not optimized. Cycling through controls is a factor that will slow down execution. Why don't you group these textboxes in a panel and then disable this panel? bye
  12. aliinal

    XML to SVG transformation problem in IE

    Hi, I have an xml document and an xsl doc for transforming source xml into svg xml. XSL document is correct. When i transform using saxon or .NET's built in transform methods, it produces correct svg file and explorer displays it without any problem. But when source xml file opened directly...
  13. aliinal

    Anyone answer this SVG query?

    hi, problem is with your transform element in parent group. Your text is there but it's outside of your viewport. Keep in mind that nearly all attributes on all elements are inherited by child elements. For example if you add a transform attribute like transform="rotate(90)...
  14. aliinal

    Deploying MS Word enabled application

    Hi, A few parts of my program is using MS Word automation. I know that it's not legal to distribute MS Word libraries. Anyway i don't want to distribute it. I want is my program to work but when user tries to use Word automation i'll say you don't have word installed so you can't use this...
  15. aliinal

    Database problem...

    I understand that you don't use parameters. if we put aside the parameters, this may occur in a few conditions. one is a wrong fieldname or if you're using a case sensitive DB and if your command is not case sensitive. but i can not help you further unless i see the select command. if you post...
  16. aliinal

    Multi Column Combo-Box

    you should use a listview control in details viewmode instead of combo box. doubtless it'll allocate more space than a combo box but combo box is not a good way for your needs i think. if further help is needed i may help you. @li
  17. aliinal

    Database problem...

    do you use parameters in OleDbSelectCommand1's select command?
  18. aliinal

    Retrieving an exe file's icon.

    that's incredible! thank you... @li
  19. aliinal

    Graphics to Image

    there is a logical mistake here. graphics is an object that belongs to an image object. we may call graphics object as drawing and painting layer of an image. if you only want to draw something and save/process it you should first create a new bitmap, then get it's graphics object and draw...
  20. aliinal

    Retrieving an exe file's icon.

    Hi everyone, is it possible to get an exe file's icon programmatically? hope anyone knows this bye

Part and Inventory Search

Back
Top