Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

Khawar Abbas1

@Khawar Abbas1
About
Posts
91
Topics
44
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem in viewing image in multi user environment
    K Khawar Abbas1

    Thanks a lot. I will look for webservice now.

    Do good and have good.

    C# help csharp database sysadmin workspace

  • Problem in viewing image in multi user environment
    K Khawar Abbas1

    Thanks for your reply. The problem is the file path. How should i read the file from network which doesnot create any rights and permission issues. I want to read the file from the system where it is stored and my exe can be on any system in the LAN.

    Do good and have good.

    C# help csharp database sysadmin workspace

  • Problem in viewing image in multi user environment
    K Khawar Abbas1

    I am developing an application in C#. The application is deployed on 3 machines. The database is at the single machine that is server. Now when i save an image from system 1, it saves to the directory of system 1. When i access the same image from system 2 it gives error. It does not show because it try to pick image from its own disk. I do not want to save the image in database as a blog. I want to store image in directory and want to access from any system where my windows application is deployed. Any suggestion..............

    Do good and have good.

    C# help csharp database sysadmin workspace

  • Error after selecting text in richtextbox
    K Khawar Abbas1

    I am developing an application in C# and using richtextbox. After formatting the text when i select all the text it gives exception given below: See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.NullReferenceException: Object reference not set to an instance of an object. at RichTextEditor.Editor.ucEditor.rtbDoc_SelectionChanged(Object sender, EventArgs e) in E:\MDCENTERWINAPP\Editor\ucEditor.cs:line 841 at System.Windows.Forms.RichTextBox.OnSelectionChanged(EventArgs e) at System.Windows.Forms.RichTextBox.WmSelectionChange(SELCHANGE selChange) at System.Windows.Forms.RichTextBox.WmReflectNotify(Message& m) at System.Windows.Forms.RichTextBox.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) Any Suggestion...............

    Do good and have good.

    C# csharp help

  • Maintain cursor in parent window when pop-up opens....
    K Khawar Abbas1

    I want to open a child pop-up window from the parent window but i want cursor remain in the parent window e.g if there is a textbox for name and cursor is placed in this and after sometime a pop-up opens then the cursor should remain in the text area. Any suggestion............

    Do good and have good.

    Web Development

  • I am posting data to another site but it doesnot work...
    K Khawar Abbas1

    I am posting data to another site using header in php. it works fine from my local machine but when i deploy the application to the international server, it does not work. Any suggestion.....................

    Do good and have good.

    Linux, Apache, MySQL, PHP php sysadmin

  • How to substring the following
    K Khawar Abbas1

    select substring(columnname, 1, charindex('@', columnname) - 1) from tablename

    Do good and have good.

    Database database com tutorial question

  • Concatenate names from all all the rows to one column
    K Khawar Abbas1

    You can use COALESCE function of sql server for this purpose.

    Do good and have good.

    Database help

  • Urdu to english conversion
    K Khawar Abbas1

    I have a database having names in urdu(datatype of column is nvarchar). Now i want to convert them to english. Could anyone help???

    Do good and have good.

    C# database help question

  • Images display problem in IE 8
    K Khawar Abbas1

    I developed a site in asp.net 2.0. It works fine in IE 6 and 7 but does not display images correctly in IE 8 beta. Any idea.........................

    Do good and have good.

    ASP.NET csharp asp-net beta-testing help

  • Dicom viewer in dot net
    K Khawar Abbas1

    I want to show a dicom image file in asp net 2.0. Can anyone provide some help.......

    Do good and have good.

    ASP.NET help

  • Asp.net Validation Controls are not working in Mozilla.
    K Khawar Abbas1

    Its compare validator

    Do good and have good.

    ASP.NET csharp asp-net

  • Asp.net Validation Controls are not working in Mozilla.
    K Khawar Abbas1

    Asp.net Validation Controls are not working in Mozilla. Any suggestion. I am using Asp.Net 2005.

    Do good and have good.

    ASP.NET csharp asp-net

  • ERROR ON UPDATE QUERY
    K Khawar Abbas1

    Thanks, Yes you are right. It is written mistakenly but i think it conveys the concept.

    Do good and have good.

    Database help database com question announcement

  • ERROR ON UPDATE QUERY
    K Khawar Abbas1

    Why not you try this: com.CommandText = "UPDATE tblUsers SET Password='" + this.UserName.Text + "' WHERE UserName='" + this.txtPassword1.Text + "'"

    Do good and have good.

    Database help database com question announcement

  • I need query for the employees who joined a weak ago
    K Khawar Abbas1

    Select * from YourTable where datediff( day, YourColumn, Getdate()) < 8

    Do good and have good.

    Database database tutorial question

  • add 30 days from a given date
    K Khawar Abbas1

    select dateadd(day,30,columnname) from tablename

    Do good and have good.

    Database tutorial question

  • Problems creating DataTable in .DBF File
    K Khawar Abbas1

    Try this Insert Into Test2 values ('09/22/2007'); and check the data in database.

    Do good and have good.

    Database help question

  • building a query for finding a value
    K Khawar Abbas1

    select * from tablename where columnname = 'sometext'; Please tell what is "Values" in your query? It must be the column name in your table on which you want to find the sometext.

    Do good and have good.

    Database help database sql-server sysadmin tutorial

  • building a query for finding a value
    K Khawar Abbas1

    You have to give table name in select statement and if you want to search sometext from multiple tables, you should use multiple querires for multiple tables.

    Do good and have good.

    Database help database sql-server sysadmin tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups