Posts by cloud • 94 points
3 posts
-
4
votes3
answers3192
viewsA: What is the difference between Full Text Search and LIKE?
Full Text Search is a technique that uses word indexing within a text field, thus allowing you to quickly search through many records. Already the LIKE searches through the string of characters…
-
3
votes1
answer52
viewsA: Background-color without following max-width
You can add the background color directly into the body. Follow the example: <style> body { background-color: yellow; } </style>
-
0
votes3
answers341
viewsA: Setting Focus() in Usercontrol Textbox
Within the class MacroForm, you can add the event Form.Activated and call the method Focus() of control: private void MacroForm_Activated(object sender, System.EventArgs e) { txtMin.Focus(); }…