Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Ecreations
  • Content: Threads
  • Order by date
  1. Ecreations

    Item Price

    Where is the item price comes from in Aloha? I looked in the DBF files and found out there are a lot of price fields. I need to be able to get the item's price by providing the item sku. any idea ideas or hints will be much appreciated. Thank you,
  2. Ecreations

    Employee hierarchy table design

    Hey Guys, I am trying to get an access table to give me a hierarchy of the employees. Currently the table is like this Emp_Number UniqueKey based on the employee corpID First_Name Last_Name SupID ---> self Join to Emp_Number in the same table I can do a self join to get the hierarchy but that...
  3. Ecreations

    Calculate Sum

    Hey Guys, I have a form like this Texstbox for Quantity Dropdownlist for skus and label for prices and an update button I want to have the user input the quantity, pick the sku then click the update button and I want to show the total, state and federal taxes in another label. all data is...
  4. Ecreations

    schedule ideas

    Hey Guys, starting a new project here and would appreciate any input or hints on this issue. Need to schedule employees based on the availablity to perform tasks at clients locations example Client calls to book an appointment, dispacher would search based on the time and date client provides...
  5. Ecreations

    create aspx on the fly?

    I have an application (Content Management System) in asp which im trying to convert to asp.net using vb.net. when using asp I created asp pages on the flying using include files and File System Object to save the .aspx pages to the directory. is there anyway to create the aspx pages on the fly...
  6. Ecreations

    Inlcude a .js file in code behind?

    is there anyway to register a .js file from code behind i n VB.net? I know theres a way to do it using the RegisterClientScriptBlock any hints would be appreciated The solution is simple, the problem is complex. http://www.ecreationscanada.com
  7. Ecreations

    Return an array from Data Reader?

    Hi Guys, Is there any ways a Data Reader returns an array? I managed to to get all values returned from the Data Reader into a an arraylist. here is the code Do while ObjReader.Read() For IntCounter = 1 to ObjReader.Fieldcount - 1 MyArray.add(CSTR(ObjReader.GetValue(IntCounter)) Next Intcounter...
  8. Ecreations

    SQL 2000 Connection

    Hi, i have created an sql 2000 databse using the Enterprise Manager, I can connect to that database with visual studio.net without any problems, but I can never make any connection with dreamweaver MX 2004, everytime i try the connection i get this error Cannot open database requested in login...
  9. Ecreations

    Querystring in Codebehind

    I am building a small web application in VS.Net 2003 the application uses an access database the SQL statement goes like this "Select field1,field2,field3 from table where field1="&IntID IntID is variable declared and its value assigned to it from a Querystring When i test it i dont get any...
  10. Ecreations

    mutiple forms in a web form in vs.net?

    Hi guys is there any way to add more than one form in a web form in Visual Studio.net ? Do we have to type in the code for the form <form> </form> in order to have more than one form? I can only see options to add form elements and no options to add forms Thanks
  11. Ecreations

    Array and a Recordset Question Hi

    Array and a Recordset Question Hi guys i have a recordset returning one field I want it to return an array of that field i know about GetRow but i want to use an array now i got this far but keep getting errors Do While Not rs.EOF ReDim Preserve MyArray(x) MyArray(x) = rs(&quot;Title&quot;)...
  12. Ecreations

    Count each Subcat in all categories

    Hi Guys, I have seen this done before but i have no clue where. I have a Recordset pulled from a table that have 8 categories, How can i show how many items in each category example, I want them to show like this Homes(12) Apartments(10) Condos(4) Commercial(20) and so on Any help would be...

Part and Inventory Search

Back
Top