Hello, I am trying to build a Satellite assembly for one of my sites and i can not seem to get past this snag... For some reason i can not get the Strings.de-DE.Resources to load from the satellite. I have steped through the code to make sure that the culture was set properly and all is well... All i have in this soulution is a default page a class project AKA ( Satellite assembly ), and the two resource files... Can someone please point me in the right direction for what to look for so that i can get this working? thanks alot erik ** I have included a picture of the Development Enviroment http://www.constructionsupercenter.com/Help.gif
Texas_CodeMaster
Posts
-
Satellite assembly -
Enum questionHello, I am studing and trying to understand just when and where to use the Enum in the format below. can someone please let me know how they use this and where and when to implement this? thanks,,, erik Dim s As String For Each s In [Enum].GetNames(GetType(Colors)) Console.WriteLine(s) Next s
-
How to find my windows service ( SOS )I have completed all of the step to get a simple windows service up and running and i can not find it anywhere in the computer managment console. Here is a pic that shows the process of installing the serive.. and the prompt says all is good.. i just can not locate it to turn it on.. http://afcc1.com/Examples/Images/WindowInstaller\_Help.jpg thanks.. erik.
-
how to locate dynamically created controls?How to locate a dynamically created control? help! hello, i need help finding MY dynamically created html file field controls... i have looped and looped until my brain can no longer loop. Since they are dynamically created i will need assistance with this because i have not yet dealt with this... i have read alot of articals on the net however no one really gets into the file fields... can someone please help with this? ===================================================== Where the controls are made... == Me.lblMakeFileInput.Text += "" Me.lblMakeFileInput.Text += " " & " " Me.lblMakeFileInput.Text += "" Me.lblMakeFileInput.Text += "" & sdI.Name.ToString & "" & " " ===================================================== how i am trying to loop === Dim s As String Dim c As Control For Each c In Me.Controls If TypeOf c Is HtmlControl Then End If Next End Sub End Class Create the controls... ===================================================== Private Sub Create_Directories() Dim oFile As System.IO.File Dim sR As System.IO.StreamReader Dim WarService As String = Nothing sR = oFile.OpenText(Server.MapPath("~/Bid_War/War_Services/War_Services.txt")) 'Specify the directories you want to manipulate. Dim path As String = Nothing Try 'Create the directories first so when the user desides to upload their War Items the directorys to choose 'from will have already been processed and ready to access Do WarService = Nothing WarService = sR.ReadLine() path = Server.MapPath("~/Bid_War/DirectoryMain_War") & "\" & Session("Email").ToString & "\" & Session("LName").ToString & "\" & "Sent_Files" & "\" & WarService If Directory.Exists(path) = False Then ' Create the directory. Directory.CreateDirectory(path) End If Loop Until WarService Is Nothing sR.Close() Catch e As Exception Session("TravelNotes") = "There was an error while trying to create your new Bid War folders." End Try '" " & "
" Try 'Find path to where our Directories are at and retrieve all the directories under the sent items Dim di -
Cache questionIs there a way to test for a cache object? in one part of my code i have If (IsNothing(cache.Item("UserTypes"))) Or (IsNothing(cache.Item("States")) Or (IsNothing(cache.Item("Countries")))) Then ' GenericProcedure = "Admin_SelectProfessionalInformation_ForCache" Else ' GenericProcedure = "Admin_SelectProfessionalInformation" End If ================================================== But i keep getting an error because there is not a cache object by the name (key) of "UserTypes" I would like to test to see if this key is in the cache and if NOT then user the correct StoredProcedure... and if IT IS in the cache us the correct StoredProcedure... thanks alot ahead of time! erik