Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
33% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
~8K People Reached
Favorite Forums
Favorite Tags
Member Avatar for OMER AHMED

Hi i am making an application in vb.net and i need help. The user will send me his issues or information through attachment. but i want a restriction on filesize that he can not attach file more then 20MB i did some coding but its not working. it will show …

Member Avatar for Minimalist
0
388
Member Avatar for OMER AHMED

HI all i am working on a project where i am adding login and password. Also i add button if someone forget his\her password so they can able to retrive it. for this i put 2 textboxes one is email and other is username which will retrive data from listview. …

Member Avatar for djjeavons
0
116
Member Avatar for OMER AHMED

Dear All i want to design a software in which i play a role of server and all users in my office will be a clients. whenever IT department want to send any message to all i will write in server app and msg will appear on everyone's screen and …

Member Avatar for AleMonteiro
0
155
Member Avatar for OMER AHMED

Dear all is thr any code or any way to connect my vb.net project's textbox with my website textbox. something like if me.textbox1.text=www.mywebsite.com.textbox1.text then bla bla bla end if

Member Avatar for djjeavons
0
147
Member Avatar for altjen

Hello forum I have a question, is there any way how to make a software on vb which after uploading a pic into the software or clicking a button. it uploads the pic somewhere and get the link of the photo. and also would be great if could be able …

Member Avatar for OMER AHMED
0
109
Member Avatar for OMER AHMED

i need helppppppp Dim Search As String Dim Where As Long Search = listbox1 Where = InStr(rt2.Text, Search) If Where <> 0 Then rt2.Focus() rt2.SelectionStart = Where - 1 rt2.SelectionLength = Len(Search) rt1.Text = Search Else MsgBox("String not found.") End If i am making a project in which textbox will …

Member Avatar for djjeavons
0
141
Member Avatar for Solution Hall

Hi ! I am working on a project in VB.NET 2010. I have to send email using outlook on runtime. The email body should be consisted of four portions ..... i. Header Text which will be fetched from a string variable. ii. Main Message which will be in a table …

Member Avatar for OMER AHMED
0
179
Member Avatar for OMER AHMED

i want to design a teamviewer kind of application in vb.net from which i can able to remote thr pc and solve thr issues. but i tried to search online but find nothing. can anyone help me here

Member Avatar for JamesCherrill
0
907
Member Avatar for OMER AHMED

i have a project to do and i dont know how to do it. please help me how i can change the windows 7 login screen and shutdown screen using VB.NET please help me i found this http://www.howtogeek.com/112110/ but i want to make it in vb.net i also found below …

Member Avatar for OMER AHMED
0
229
Member Avatar for OMER AHMED

hi all how to make a trial version of application with progress bar showing 10 days left in vb.net

Member Avatar for §AE§
0
301
Member Avatar for OMER AHMED

Dim Mail As New MailMessage Mail.Subject = "" Mail.To.Add("") Mail.From = New MailAddress("") Mail.Body = textbox1.text " How i can add 5 textboxes in body " Dim SMTP1 As New SmtpClient("smtp-mail.outlook.com") SMTP1.EnableSsl = True SMTP1.Credentials = New System.Net.NetworkCredential("mail@mail.com", "password") SMTP1.Port = "587" SMTP1.Send(Mail) How i can add 5 textboxes in …

Member Avatar for OMER AHMED
0
180
Member Avatar for OMER AHMED

how to print my listview details .. i found open source with class but this is only printing my 1st column also it is printing 1st column details in all column. please tell me how i can edit it . and put my all subitems of list the class is …

Member Avatar for OMER AHMED
0
1K
Member Avatar for OMER AHMED

Dear all i need help with listview . i have 5 columns and i have 4 menustrips. i want something like below If ListView1.SelectedItems(0).SubItems(0).Text = "Advance" Then t2.Enabled = False t3.Enabled = False t4.Enabled = False ElseIf ListView1.SelectedItems(0).SubItems(0).Text = "Access" Then t1.Enabled = False t3.Enabled = False t4.Enabled = False …

Member Avatar for Minimalist
0
266
Member Avatar for OMER AHMED

whenever i click form10 then this error come. Warning 1 Value cannot be null. Parameter name: objectType 0 0 Instances of this error (1) 1. Hide Call Stack at System.ComponentModel.TypeDescriptor.TypeDescriptionNode.GetRuntimeType(Type objectType) at System.ComponentModel.TypeDescriptionProvider.GetRuntimeType(Type reflectionType) at Microsoft.VisualStudio.Design.MultiTargetingContextProvider.GetRuntimeType(Type objectType) at Microsoft.VisualStudio.Design.Serialization.CodeDom.HandlesClauseManager.GetFieldType(String fieldName, Type documentBaseType) at Microsoft.VisualStudio.Design.Serialization.CodeDom.HandlesClauseManager.GetReferencedComponentType(String componentName, CodeTypeDeclaration codeTypeDecl, ITypeResolutionService loader, IDictionary& …

Member Avatar for Santanu.Das
0
286
Member Avatar for OMER AHMED

hi all again i want to save my 3 columns of listview with data in vb.net built in settings saver how i can do that and how i can load it back when form load. i write something like this My.Settings.advance_settings.Add(TextBox2.Text) My.Settings.advance_settings1.Add(TextBox1.Text) My.Settings.advance_settings2.Add(Date.Today) my.settings.save() it will save the data but …

Member Avatar for Santanu.Das
0
1K
Member Avatar for OMER AHMED

i am making a security program which only administrator can run. now i place one checkbox in registration form that if the user is administrator then he will check that box and program will not ask for " run as administrator" now i need code for checkbox something like if …

Member Avatar for OMER AHMED
0
111
Member Avatar for OMER AHMED

why i am receiving this error and how i can solve it See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.IndexOutOfRangeException: Index was outside the bounds of the array. at WindowsApplication1.fol_hide.fol_hide_Load(Object sender, EventArgs e) in D:\Projects\3 …

Member Avatar for OMER AHMED
0
731
Member Avatar for OMER AHMED

i want to make my own splash screen. which appear on start of my program and after it finish my login screen come. i write one program based of 3 timers which is working fine but it not loading my form2 the code is Public Class Form1 Private Sub Timer1_Tick(ByVal …

Member Avatar for Santanu.Das
0
355
Member Avatar for OMER AHMED

i write this code in my program to encrypt my files but it showing me warning Warning 1 Variable 'csCryptoStream' is used before it has been assigned a value. A null reference exception could result at runtime please guide me. when i run the software it work fine but i …

Member Avatar for OMER AHMED
0
170
Member Avatar for OMER AHMED

hi all ... i am designing a software where i am using login and password. the user and password is store in notepad which is connected with listview . now i dont know i mean i need something when user enter user and password it should search and if details …

Member Avatar for OMER AHMED
0
791