Software Development Network Logo
  • Game Technologies
  • Smart Devicet
  • Audio and Video
  • .NET Development
  • Visual Basic
  • IE Development
  • Visual FoxPro
  • Microsoft ISV
  • VS Team System
  • Windows Forms
  • SharePoint Products
  • Visual Studio
  • Windows Vista
  • Visual C++
  • SQL Server

Software Development Network >> Annihil8's Q&A profile

Annihil8

Member List

chaza
gibic
PhilipDaniels
unknown311
cjg6300
DevboyX
Lynx Baretta
Luca Beretta
Rajeswari
philipsh
imed-deborah
Mike9000
bio4ema
vtortola
TelecoCaixa
Twice_Resurrected
kesim
Artem Bytsin
Jeff Wyrick
KazumaX
Only Title

Annihil8's Q&A profile

  • Internet Explorer Development using window.open want to get rid of url bar in new window within IE7

    Using the window.open method : The line below running in IE6 produces a new window with a only the top title bar and status bar.  However in IE7 there is always a address bar just below the title bar.  I can't get rid of it.  Surely there's a way! .  Does this have to do with the anti-phishing filter   If so is there a way to know that the client has that turned on so that I can't do a switch for window sizing based on what's going to be shown window.open( "StreamStageDisplay.aspx" , "_blank" , "directories=no, height=800 , left=800, location=no, menubar=no, resizable=yes, scrollbars=no, status=yes, titlebar=no, toolbar=no, top=100 , width=100 ) I found this in the MSDN blogs that perhaps answers the ...Show All

  • Visual Basic Problem With MDI Child Form

      I am having some problems with MDI child form details are as under: How can i load a MDI child form from another MDI Child Form. I have a MDI form with one Child form, now if i want to add another form in the project and that form will be shown by pressing the button in the child form -- what i want is this new form is shown as a mdi child form not as a SDI form. How can we do that. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim F As New Form2 F.MdiParent = Me.MdiParent F.Show() End Sub ...Show All

  • Visual Basic 2 Forms... 1 calls to 2..2 shows...2 button clicked to add.. problem !!

    Hello, I have programmed java before but i am new to VB.net.. so this is what has been going on.. Form 1 has a button and combobox. On button click.. Dim obj as new Form2() obj.ShowDialog() Form 2 pops up ! Form 2 has a button called add. on button(add) click.. Dim obj2 as new Form1() obj2.ComboBox1.Items.Add("Hello") And nothing works I wonder why Instead of creating a new Form1() inside form2, try passing Form1 to the constructor of Form2: Dim obj as new Form2(Me) Inside the constructor, store the form in a member variable. Then on the button click, use the reference that you stored to add an item to the combobox. Sub New( x as Form1 ) Me.form1 = x On button(add) click Me.form1.C ...Show All

  • Windows Live Developer Forums MSN Add-In developer info

    After writing a couple small msn add ins for fun I though I'd share some of the things I've learned from this. Security Unless an addin is signed with a strong name key and loaded into the global assembly cache it will run with very restricted access. E.g the permission set "Internet". Error codes: 8013150A = An error relating to security occurred. ( COR_E_SECURITY ) More info about how strong naming works can be found here . Sending Messages (Limitations) You can only send messages in the IncomingTextMessage event. And only to the person who sent you the message. This means you can't have for example a timer sending out a message to someone every X hours. Or forwarding all messages from Bill to Bull Error codes: 810003DF = Attempt sen ...Show All

  • Microsoft ISV Community Center Forums Help with comma separated values in report

    Hi! A bit of a stuck-up. It’s no problem in creating a coma separated fields in .txt kind of file. But I have another problem which is probably simple to manage (not for me though - my brains work 24hrs/day and don’t come up with nothing). I want to show several different values from one field (in query) on the report - now check this - They have to be separated by a comma in one line. If anybody is familiar with the solution just show me the direction and I’ll try to solve it by myself. Thanks in advance I'll do my best. If I don't succeede - then I'd apreciate your further help. Thanks for all the help so far.. ...Show All

  • SQL Server how to create a sql database in the server?

    Hi, I want to create a new database in the server using SQL express,not in the local machine. so what can I do Thank you hi, this exception is always raised when a connection can not be established with the "target server", be it local or remote.. causes could be a mispelling of the instance name or incomplete name in case of named instance (ServerName\InstanceName), as long as additional network problems, or even the network protocols not being enabled for the remote instance... obviously the computer you are connecting to has to have a SQL Server/SQLExpress instance installed... regards ...Show All

  • Software Development for Windows Vista Copy-Protection, License-Enforcement, DRM and VISTA

    I am a developer in a small company that develops DRM, copy-protection and license enforcement tools for Windows developers. Our tools currently allow the client to create licenses and integrate our run-time components into their software to enforce a variety of license models. Many of the mechanisms that provide this functionality, such as hiding redundant copies of the license in hidden and inconspicuous locations on the system and the registry are simply not going to work on Vista. Many operations the run-time performs to detect hackers will require permissions not likely to be present by default and naturally a hacker will refuse to allow. We are willing to redesign and adapt (we must - or we will die). My question is - what ...Show All

  • Architecture What are "Newly Added Programs"?

    All I can seem to find is how to enable/disable the highlighting of "Newly added programs". How exactly does Windows determine that a program is "newly added". I like the feature, but I need to know why some things are highlighted and some are not. I manage a Terminal Server environment and have redirected to a custom Start Menu and now lots of stuff shows as newly added when it in fact is not. How can I set/reset a program as newly added I would like to 'clear' that flag on everything so it starts fresh and only shows new programs as I install them. I checked dates on the shortcuts, etc., but it is still not consistent (IE shows as "new", Excel shows as "old") Samm, ...Show All

  • Smart Device Development System.SR.dll appears corrupt when installed on device

    When debugging mobile applications, exception error messages are localized and you need System.SR.dll to be able to see them. Deploying via F5 from Visual Studio does indeed install System.SR.dll for me but I still cannot see exception messages during debugging. Examining the DLL by dragging it to the desktop and inspecting it in Reflector it appears to be corrupt in some way. The only workaround I've found is to manually extract the DLL on the desktop and then deploy it specifically with the solution. Does anyone know why the DLL would appear corrupt They are not SQL string they are standard exception message string, e.g, System.IOException. As I said, I can see the strings in debug mode when I manually extract System.SR.dll and pla ...Show All

  • Microsoft ISV Community Center Forums How to store data without database

    Dear all, I am developing a sales management application for small business use. Besides delivering program with MSDE or Access, is there any way to store data without database It is because I find it troublesome to deliver database togather. Please give some advice. Thanks. Javad Khadivi is right. If your classes aren't that complicated look up for XMLSerializer. ...Show All

  • Windows Forms Getting a value from a control at another form

    Hi My problem: lets suppose that we have a form called Form1 and has a textbox control called textBox1 and another form called Form2 that has a label control called Label1 and I want to set the content of Label1 with the same content of the textBox1 in Form1 what is the suitable code for such a purpose. Thanks Hi, create a property in Form1 that allows you to get the textbox value i.e. class Form1 : Form { private TextBox textBox1; public string CurrentText { get{ return this.textBox1.Text; } } } class Form2 : Form { private Label label1; public Form2(Form1 form1) { this.label1.Text = form1.CurrentText; } } T ...Show All

  • Visual Studio Team System Access Denied :User domain\name needs the UseSystem global permission(s)

    Hi, When i am connecting to VSTS i am getting this error Error Access Denied :User domain\username needs the UseSystem global permission(s). can you tell me how to solve it... very urgent... ...Show All

  • Visual Studio Visual Studio SP1 Won't Install

    Hello, I tried to install VS 2005 Service Pack 1 and received the following message from the installer: "The upgrade patch cannot be installed by the Windows Installer Service because the program to be updated may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch." I'm running VS 2005 Tools for the Microsoft Office System, vs 8.0.50727.363. I noticed that the download page for sp1 states that it is for VS2005 Standard, Professional, and Team Editions. Is the problem I'm experiencing due to the fact that I'm running VSTO or is it something else Thanks for the Help! RIManning ...Show All

  • Visual Basic Having problem in assigning value to data structure array

    Hi all, in VB6 the following statement wont gives me NullReferenceException, but in VB.net it does, can anyone tell me how to assign value into a variable within a data structure Helps! Dim lTemp As Integer = 5 gCI.CICC(gCICCTotal).CCId = lTemp Arrays inside structures need to be initialized before they can be used. Try something like this: Module Module1 Public Const CCICSize As Integer = 100 Public Structure CIStruct Dim CCIC() As Integer Public Sub Initialize() ReDim CCIC(CCICSize - 1) End Sub End Structure Public gCI As CIStruct End Module ...somewhere... gCI.Initialize() ...Show All

  • SQL Server remote webwork place

    We have a SBS2003 server. And configured remote workplace to allow remote users access to their workstion. On the windows XP Pro sp2 station I have added the user to the "Remote desktop" list ( control panel-system-remote-allow users to remotely connect this computer - Add .) Nomal users can pass router and select wanted station then get logon screen. But this error message is showed up: "The local policy of this system does not permit you to logon interractively." The administrator can logon to any station remotely. Do I have to give additional permission to normal user Thank you for any help or clue. Peter THis seems more a Windows problem than a SQL Server ...Show All

©2008 Software Development Network